📄 abstractforum.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -