newsattribute.java

来自「本程序实现了一个新闻发布系统」· Java 代码 · 共 53 行

JAVA
53
字号
/*
 * 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;
	}
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?