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

📄 news.java.svn-base

📁 这是基于spring +hibernate的项目
💻 SVN-BASE
字号:
package com.pure.domain;

import java.io.Serializable;

/**
 * 新闻
 * 
 * @author pure
 * 
 */
public class News implements Serializable {
	private static final long serialVersionUID = -7271336730819883350L;

	private Long id;

	private String newstitle;

	private String newsauthor;

	private String newsfrom;

	private String newsdate;

	private String newscontent;

	private String filename;

	private String realPath;

	private NewsSort newssort = new NewsSort();

	public String getFilename() {
		return filename;
	}

	public void setFilename(String filename) {
		this.filename = filename;
	}

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getNewsauthor() {
		return newsauthor;
	}

	public void setNewsauthor(String newsauthor) {
		this.newsauthor = newsauthor;
	}

	public String getNewscontent() {
		return newscontent;
	}

	public void setNewscontent(String newscontent) {
		this.newscontent = newscontent;
	}

	public String getNewsdate() {
		return newsdate;
	}

	public void setNewsdate(String newsdate) {
		this.newsdate = newsdate;
	}

	public String getNewsfrom() {
		return newsfrom;
	}

	public void setNewsfrom(String newsfrom) {
		this.newsfrom = newsfrom;
	}

	public NewsSort getNewssort() {
		return newssort;
	}

	public void setNewssort(NewsSort newssort) {
		this.newssort = newssort;
	}

	public String getNewstitle() {
		return newstitle;
	}

	public void setNewstitle(String newstitle) {
		this.newstitle = newstitle;
	}

	public String getRealPath() {
		return realPath;
	}

	public void setRealPath(String realPath) {
		this.realPath = realPath;
	}

}

⌨️ 快捷键说明

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