NewsAttribute.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-12-2
  3.  *
  4.  * TODO To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Style - Code Templates
  6.  */
  7. package com.mycompany.news.dto;
  8. /**
  9.  * @author Administrator
  10.  *
  11.  * TODO To change the template for this generated type comment go to
  12.  * Window - Preferences - Java - Code Style - Code Templates
  13.  */
  14. public class NewsAttribute {
  15. private Long newsAttributeId;
  16. private Long entityId;
  17. private String newsAttrName;
  18. private String newsAttrType;
  19. private String newsAttrValue;
  20. public Long getEntityId() {
  21. return entityId;
  22. }
  23. public void setEntityId(Long entityId) {
  24. this.entityId = entityId;
  25. }
  26. public Long getNewsAttributeId() {
  27. return newsAttributeId;
  28. }
  29. public void setNewsAttributeId(Long newsAttributeId) {
  30. this.newsAttributeId = newsAttributeId;
  31. }
  32. public String getNewsAttrName() {
  33. return newsAttrName;
  34. }
  35. public void setNewsAttrName(String newsAttrName) {
  36. this.newsAttrName = newsAttrName;
  37. }
  38. public String getNewsAttrType() {
  39. return newsAttrType;
  40. }
  41. public void setNewsAttrType(String newsAttrType) {
  42. this.newsAttrType = newsAttrType;
  43. }
  44. public String getNewsAttrValue() {
  45. return newsAttrValue;
  46. }
  47. public void setNewsAttrValue(String newsAttrValue) {
  48. this.newsAttrValue = newsAttrValue;
  49. }
  50. }