📄 forummodule.java
字号:
package com.elan.forum.model;
import java.util.Date;
/**
* Forummodule entity.
*
* @author MyEclipse Persistence Tools
*/
public class Forummodule implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private Date createTime;
private Integer pieceNum;
private Integer masterId;
private String masterName;
// Constructors
/** default constructor */
public Forummodule() {
}
/** full constructor */
public Forummodule(String name, Date createTime, Integer pieceNum,
Integer masterId, String masterName) {
this.name = name;
this.createTime = createTime;
this.pieceNum = pieceNum;
this.masterId = masterId;
this.masterName = masterName;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getPieceNum() {
return this.pieceNum;
}
public void setPieceNum(Integer pieceNum) {
this.pieceNum = pieceNum;
}
public Integer getMasterId() {
return this.masterId;
}
public void setMasterId(Integer masterId) {
this.masterId = masterId;
}
public String getMasterName() {
return this.masterName;
}
public void setMasterName(String masterName) {
this.masterName = masterName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -