📄 sjournal.java
字号:
package cn.hope.mana.pojo;
import java.io.Serializable;
import java.util.Date;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class SJournal implements Serializable {
/** identifier field */
private Integer sjouId;
/** nullable persistent field */
private String flag;
/** persistent field */
private int sjouChab;
/** nullable persistent field */
private Date sjouCome;
/** nullable persistent field */
private String sjouCrea;
/** persistent field */
private Date sjouDate;
/** persistent field */
private int sjouGhab;
/** nullable persistent field */
private Date sjouGo;
/** nullable persistent field */
private String sjouGrea;
/** nullable persistent field */
private cn.hope.mana.pojo.CDutycon CDutyconC;
/** nullable persistent field */
private cn.hope.mana.pojo.Student student;
/** nullable persistent field */
private cn.hope.mana.pojo.CDutycon CDutyconG;
/** nullable persistent field */
private cn.hope.mana.pojo.TInfo TInfo;
/** full constructor */
public SJournal(String flag, int sjouChab, Date sjouCome, String sjouCrea, Date sjouDate, int sjouGhab, Date sjouGo, String sjouGrea, cn.hope.mana.pojo.CDutycon CDutyconC, cn.hope.mana.pojo.Student student, cn.hope.mana.pojo.CDutycon CDutyconG, cn.hope.mana.pojo.TInfo TInfo) {
this.flag = flag;
this.sjouChab = sjouChab;
this.sjouCome = sjouCome;
this.sjouCrea = sjouCrea;
this.sjouDate = sjouDate;
this.sjouGhab = sjouGhab;
this.sjouGo = sjouGo;
this.sjouGrea = sjouGrea;
this.CDutyconC = CDutyconC;
this.student = student;
this.CDutyconG = CDutyconG;
this.TInfo = TInfo;
}
/** default constructor */
public SJournal() {
}
/** minimal constructor */
public SJournal(int sjouChab, Date sjouDate, int sjouGhab) {
this.sjouChab = sjouChab;
this.sjouDate = sjouDate;
this.sjouGhab = sjouGhab;
}
public Integer getSjouId() {
return this.sjouId;
}
public void setSjouId(Integer sjouId) {
this.sjouId = sjouId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public int getSjouChab() {
return this.sjouChab;
}
public void setSjouChab(int sjouChab) {
this.sjouChab = sjouChab;
}
public Date getSjouCome() {
return this.sjouCome;
}
public void setSjouCome(Date sjouCome) {
this.sjouCome = sjouCome;
}
public String getSjouCrea() {
return this.sjouCrea;
}
public void setSjouCrea(String sjouCrea) {
this.sjouCrea = sjouCrea;
}
public Date getSjouDate() {
return this.sjouDate;
}
public void setSjouDate(Date sjouDate) {
this.sjouDate = sjouDate;
}
public int getSjouGhab() {
return this.sjouGhab;
}
public void setSjouGhab(int sjouGhab) {
this.sjouGhab = sjouGhab;
}
public Date getSjouGo() {
return this.sjouGo;
}
public void setSjouGo(Date sjouGo) {
this.sjouGo = sjouGo;
}
public String getSjouGrea() {
return this.sjouGrea;
}
public void setSjouGrea(String sjouGrea) {
this.sjouGrea = sjouGrea;
}
public cn.hope.mana.pojo.CDutycon getCDutyconC() {
return this.CDutyconC;
}
public void setCDutyconC(cn.hope.mana.pojo.CDutycon CDutyconC) {
this.CDutyconC = CDutyconC;
}
public cn.hope.mana.pojo.Student getStudent() {
return this.student;
}
public void setStudent(cn.hope.mana.pojo.Student student) {
this.student = student;
}
public cn.hope.mana.pojo.CDutycon getCDutyconG() {
return this.CDutyconG;
}
public void setCDutyconG(cn.hope.mana.pojo.CDutycon CDutyconG) {
this.CDutyconG = CDutyconG;
}
public cn.hope.mana.pojo.TInfo getTInfo() {
return this.TInfo;
}
public void setTInfo(cn.hope.mana.pojo.TInfo TInfo) {
this.TInfo = TInfo;
}
public String toString() {
return new ToStringBuilder(this)
.append("sjouId", getSjouId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -