📄 bbsreplyinfopo.java
字号:
package com.px1987.webbbs.dao;
import java.sql.Clob;
public class BBSReplyInfoPO {
private Integer id;
private int bbsID;
private String author;
private Clob content;
private String replytime;
private Clob abstractText;
private String replyTitle;
private int bbsReplyIconID;
public BBSReplyInfoPO() {
// 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 Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
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;
}
public boolean equals(Object other)
{
if (this == other) {
return true;
}
if (! (other instanceof BBSReplyInfoPO)) {
return false;
}
return true;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -