?? abstractforumtopic.java
字號:
package com.elan.forum.model;
import java.sql.Timestamp;
/**
* AbstractForumtopic entity provides the base persistence definition of the
* Forumarticle entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractForumtopic implements java.io.Serializable {
// Fields
private Integer id;
private Integer moduleId;
private String moduleName;
private Integer pieceId;
private String pieceName;
private String title;
private Integer authorId;
private String author;
private String text;
private String articleType;
private String icon;
private Integer click;
private Integer reply;
private Timestamp createTime;
private Timestamp modifyTime;
private Byte locked;
private Byte fine;
private Byte complain;
private Byte pass;
// Constructors
/** default constructor */
public AbstractForumtopic() {
}
/** full constructor */
public AbstractForumtopic(Integer moduleId, String moduleName,
Integer pieceId, String pieceName, String title, Integer authorId,
String author, String text, String articleType, String icon,
Integer click, Integer reply, Timestamp createTime,
Timestamp modifyTime, Byte locked, Byte fine, Byte complain,
Byte pass) {
this.moduleId = moduleId;
this.title = title;
this.authorId = authorId;
this.pieceId = pieceId;
this.author = author;
this.text = text;
this.articleType = articleType;
this.icon = icon;
this.click = click;
this.reply = reply;
this.createTime = createTime;
this.modifyTime = modifyTime;
this.locked = locked;
this.fine = fine;
this.complain = complain;
this.pass = pass;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public Integer getAuthorId() {
return this.authorId;
}
public void setAuthorId(Integer authorId) {
this.authorId = authorId;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public String getArticleType() {
return this.articleType;
}
public void setArticleType(String articleType) {
this.articleType = articleType;
}
public String getIcon() {
return this.icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public Integer getClick() {
return this.click;
}
public void setClick(Integer click) {
this.click = click;
}
public Integer getReply() {
return this.reply;
}
public void setReply(Integer reply) {
this.reply = reply;
}
public Timestamp getCreateTime() {
return this.createTime;
}
public void setCreateTime(Timestamp createTime) {
this.createTime = createTime;
}
public Timestamp getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Timestamp modifyTime) {
this.modifyTime = modifyTime;
}
public Byte getLocked() {
return this.locked;
}
public void setLocked(Byte locked) {
this.locked = locked;
}
public Byte getFine() {
return this.fine;
}
public void setFine(Byte fine) {
this.fine = fine;
}
public Byte getComplain() {
return this.complain;
}
public void setComplain(Byte complain) {
this.complain = complain;
}
public Byte getPass() {
return this.pass;
}
public void setPass(Byte pass) {
this.pass = pass;
}
public Integer getModuleId() {
return moduleId;
}
public void setModuleId(Integer moduleId) {
this.moduleId = moduleId;
}
public String getModuleName() {
return moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
}
public Integer getPieceId() {
return pieceId;
}
public void setPieceId(Integer pieceId) {
this.pieceId = pieceId;
}
public String getPieceName() {
return pieceName;
}
public void setPieceName(String pieceName) {
this.pieceName = pieceName;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -