abstractforum.java
来自「在线读书交流平台」· Java 代码 · 共 82 行
JAVA
82 行
package com.olr.beans;
/**
* AbstractForum entity provides the base persistence definition of the Forum
* entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractForum implements java.io.Serializable {
// Fields
private Integer forumId;
private String forumName;
private String masterName;
private String description;
private Integer topicCount;
// Constructors
/** default constructor */
public AbstractForum() {
}
/** minimal constructor */
public AbstractForum(String forumName) {
this.forumName = forumName;
}
/** full constructor */
public AbstractForum(String forumName, String masterName,
String description, Integer topicCount) {
this.forumName = forumName;
this.masterName = masterName;
this.description = description;
this.topicCount = topicCount;
}
// Property accessors
public Integer getForumId() {
return this.forumId;
}
public void setForumId(Integer forumId) {
this.forumId = forumId;
}
public String getForumName() {
return this.forumName;
}
public void setForumName(String forumName) {
this.forumName = forumName;
}
public String getMasterName() {
return this.masterName;
}
public void setMasterName(String masterName) {
this.masterName = masterName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getTopicCount() {
return this.topicCount;
}
public void setTopicCount(Integer topicCount) {
this.topicCount = topicCount;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?