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

📄 newsinfo.java

📁 这是一个上传下载的原代码
💻 JAVA
字号:
package com.model.entity;

import java.util.HashSet;
import java.util.Set;
import java.sql.Clob;
import java.sql.Date;
/*
 *  创建人:杨森
 *  创建时间:2007-9-7
 *  描述:表ERMA_NEWS_INFO的实体
 *  最后修改时间:
 *  最后修改人:
 */
public class NewsInfo {
	private String newsId;
	private String kind;
	private String sort;
	private String title;
	private Clob content;
	private String createDate;
	private String newsKey;
	private String author;
	private String newsRole;
	private String newsDate;
	private String newsTop;
	//一对多 附件元素
	private Set accessoriess = new HashSet();
	
	public String getAuthor() {
		return author;
	}
	public void setAuthor(String author) {
		this.author = author;
	}
	public Clob getContent() {
		return content;
	}
	public void setContent(Clob content) {
		this.content = content;
	}
	public String getCreateDate() {
		return createDate;
	}
	public void setCreateDate(String createDate) {
		this.createDate = createDate;
	}
	public String getKind() {
		return kind;
	}
	public void setKind(String kind) {
		this.kind = kind;
	}
	public String getNewsId() {
		return newsId;
	}
	public void setNewsId(String newsId) {
		this.newsId = newsId;
	}
	public String getNewsKey() {
		return newsKey;
	}
	public void setNewsKey(String newsKey) {
		this.newsKey = newsKey;
	}
	public String getNewsRole() {
		return newsRole;
	}
	public void setNewsRole(String newsRole) {
		this.newsRole = newsRole;
	}
	public String getSort() {
		return sort;
	}
	public void setSort(String sort) {
		this.sort = sort;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public Set getAccessoriess() {
		return accessoriess;
	}
	public void setAccessoriess(Set accessoriess) {
		this.accessoriess = accessoriess;
	}
	public String getNewsDate() {
		return newsDate;
	}
	public void setNewsDate(String newsDate) {
		this.newsDate = newsDate;
	}
	public String getNewsTop() {
		return newsTop;
	}
	public void setNewsTop(String newsTop) {
		this.newsTop = newsTop;
	}
}

⌨️ 快捷键说明

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