⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newsattribute.java

📁 介绍关于JSP网站开发方面的内容,特别详尽
💻 JAVA
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -