NewsAttribute.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
- /*
- * Created on 2005-12-2
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- package com.mycompany.news.dto;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class NewsAttribute {
- private Long newsAttributeId;
- private Long entityId;
- private String newsAttrName;
- private String newsAttrType;
- private String newsAttrValue;
- public Long getEntityId() {
- return entityId;
- }
- public void setEntityId(Long entityId) {
- this.entityId = entityId;
- }
- public Long getNewsAttributeId() {
- return newsAttributeId;
- }
- public void setNewsAttributeId(Long newsAttributeId) {
- this.newsAttributeId = newsAttributeId;
- }
- public String getNewsAttrName() {
- return newsAttrName;
- }
- public void setNewsAttrName(String newsAttrName) {
- this.newsAttrName = newsAttrName;
- }
- public String getNewsAttrType() {
- return newsAttrType;
- }
- public void setNewsAttrType(String newsAttrType) {
- this.newsAttrType = newsAttrType;
- }
- public String getNewsAttrValue() {
- return newsAttrValue;
- }
- public void setNewsAttrValue(String newsAttrValue) {
- this.newsAttrValue = newsAttrValue;
- }
-
- }