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

📄 bbsreplyinfovo.java

📁 hibernate项目实践
💻 JAVA
字号:
package com.px1987.webbbs.model;
import java.sql.Clob;
public class BBSReplyInfoVO 
{
	private int bbsID;
	private String author;
	private Clob content;
	private String replytime;
	private Clob abstractText;
	private String replyTitle;
	private int bbsReplyIconID;
	
	public BBSReplyInfoVO() {
		// TODO 自动生成构造函数存根
	}
	public Clob getAbstractText() {
		return abstractText;
	}
	public void setAbstractText(Clob abstractText) {
		this.abstractText = abstractText;
	}
	public String getAuthor() {
		return author;
	}
	public void setAuthor(String author) {
		this.author = author;
	}
	public int getBbsID() {
		return bbsID;
	}
	public void setBbsID(int bbsID) {
		this.bbsID = bbsID;
	}
	public int getBbsReplyIconID() {
		return bbsReplyIconID;
	}
	public void setBbsReplyIconID(int bbsReplyIconID) {
		this.bbsReplyIconID = bbsReplyIconID;
	}
	public Clob getContent() {
		return content;
	}
	public void setContent(Clob content) {
		this.content = content;
	}
	public String getReplytime() {
		return replytime;
	}
	public void setReplytime(String replytime) {
		this.replytime = replytime;
	}
	public String getReplyTitle() {
		return replyTitle;
	}
	public void setReplyTitle(String replyTitle) {
		this.replyTitle = replyTitle;
	}


}

⌨️ 快捷键说明

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