📄 tjournal.java
字号:
package cn.hope.front.pojo;
import java.io.Serializable;
import java.util.Date;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class TJournal implements Serializable {
/** identifier field */
private Integer tjouId;
/** nullable persistent field */
private String flag;
/** persistent field */
private int tjouChab;
/** nullable persistent field */
private Date tjouCome;
/** nullable persistent field */
private String tjouCrea;
/** persistent field */
private Date tjouDate;
/** persistent field */
private int tjouGhab;
/** nullable persistent field */
private Date tjouGo;
/** nullable persistent field */
private byte[] tjouGrea;
/** nullable persistent field */
private cn.hope.front.pojo.CDutycon CDutyconC;
/** nullable persistent field */
private cn.hope.front.pojo.TInfo TInfoMaker;
/** nullable persistent field */
private cn.hope.front.pojo.CDutycon CDutyconG;
/** nullable persistent field */
private cn.hope.front.pojo.TInfo TInfoTeacher;
/** full constructor */
public TJournal(String flag, int tjouChab, Date tjouCome, String tjouCrea, Date tjouDate, int tjouGhab, Date tjouGo, byte[] tjouGrea, cn.hope.front.pojo.CDutycon CDutyconC, cn.hope.front.pojo.TInfo TInfoMaker, cn.hope.front.pojo.CDutycon CDutyconG, cn.hope.front.pojo.TInfo TInfoTeacher) {
this.flag = flag;
this.tjouChab = tjouChab;
this.tjouCome = tjouCome;
this.tjouCrea = tjouCrea;
this.tjouDate = tjouDate;
this.tjouGhab = tjouGhab;
this.tjouGo = tjouGo;
this.tjouGrea = tjouGrea;
this.CDutyconC = CDutyconC;
this.TInfoMaker = TInfoMaker;
this.CDutyconG = CDutyconG;
this.TInfoTeacher = TInfoTeacher;
}
/** default constructor */
public TJournal() {
}
/** minimal constructor */
public TJournal(int tjouChab, Date tjouDate, int tjouGhab) {
this.tjouChab = tjouChab;
this.tjouDate = tjouDate;
this.tjouGhab = tjouGhab;
}
public Integer getTjouId() {
return this.tjouId;
}
public void setTjouId(Integer tjouId) {
this.tjouId = tjouId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public int getTjouChab() {
return this.tjouChab;
}
public void setTjouChab(int tjouChab) {
this.tjouChab = tjouChab;
}
public Date getTjouCome() {
return this.tjouCome;
}
public void setTjouCome(Date tjouCome) {
this.tjouCome = tjouCome;
}
public String getTjouCrea() {
return this.tjouCrea;
}
public void setTjouCrea(String tjouCrea) {
this.tjouCrea = tjouCrea;
}
public Date getTjouDate() {
return this.tjouDate;
}
public void setTjouDate(Date tjouDate) {
this.tjouDate = tjouDate;
}
public int getTjouGhab() {
return this.tjouGhab;
}
public void setTjouGhab(int tjouGhab) {
this.tjouGhab = tjouGhab;
}
public Date getTjouGo() {
return this.tjouGo;
}
public void setTjouGo(Date tjouGo) {
this.tjouGo = tjouGo;
}
public byte[] getTjouGrea() {
return this.tjouGrea;
}
public void setTjouGrea(byte[] tjouGrea) {
this.tjouGrea = tjouGrea;
}
public cn.hope.front.pojo.CDutycon getCDutyconC() {
return this.CDutyconC;
}
public void setCDutyconC(cn.hope.front.pojo.CDutycon CDutyconC) {
this.CDutyconC = CDutyconC;
}
public cn.hope.front.pojo.TInfo getTInfoMaker() {
return this.TInfoMaker;
}
public void setTInfoMaker(cn.hope.front.pojo.TInfo TInfoMaker) {
this.TInfoMaker = TInfoMaker;
}
public cn.hope.front.pojo.CDutycon getCDutyconG() {
return this.CDutyconG;
}
public void setCDutyconG(cn.hope.front.pojo.CDutycon CDutyconG) {
this.CDutyconG = CDutyconG;
}
public cn.hope.front.pojo.TInfo getTInfoTeacher() {
return this.TInfoTeacher;
}
public void setTInfoTeacher(cn.hope.front.pojo.TInfo TInfoTeacher) {
this.TInfoTeacher = TInfoTeacher;
}
public String toString() {
return new ToStringBuilder(this)
.append("tjouId", getTjouId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -