📄 taresult.java
字号:
package cn.hope.mana.pojo;
import java.io.Serializable;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class TAresult implements Serializable {
/** identifier field */
private Integer tgId;
/** nullable persistent field */
private String flag;
/** nullable persistent field */
private String tgCondition;
/** nullable persistent field */
private Integer tgZf;
/** nullable persistent field */
private cn.hope.mana.pojo.TInfo TInfo;
/** nullable persistent field */
private cn.hope.mana.pojo.TAssess TAssess;
/** nullable persistent field */
private cn.hope.mana.pojo.Student student;
/** full constructor */
public TAresult(String flag, String tgCondition, Integer tgZf, cn.hope.mana.pojo.TInfo TInfo, cn.hope.mana.pojo.TAssess TAssess, cn.hope.mana.pojo.Student student) {
this.flag = flag;
this.tgCondition = tgCondition;
this.tgZf = tgZf;
this.TInfo = TInfo;
this.TAssess = TAssess;
this.student = student;
}
/** default constructor */
public TAresult() {
}
public Integer getTgId() {
return this.tgId;
}
public void setTgId(Integer tgId) {
this.tgId = tgId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getTgCondition() {
return this.tgCondition;
}
public void setTgCondition(String tgCondition) {
this.tgCondition = tgCondition;
}
public Integer getTgZf() {
return this.tgZf;
}
public void setTgZf(Integer tgZf) {
this.tgZf = tgZf;
}
public cn.hope.mana.pojo.TInfo getTInfo() {
return this.TInfo;
}
public void setTInfo(cn.hope.mana.pojo.TInfo TInfo) {
this.TInfo = TInfo;
}
public cn.hope.mana.pojo.TAssess getTAssess() {
return this.TAssess;
}
public void setTAssess(cn.hope.mana.pojo.TAssess TAssess) {
this.TAssess = TAssess;
}
public cn.hope.mana.pojo.Student getStudent() {
return this.student;
}
public void setStudent(cn.hope.mana.pojo.Student student) {
this.student = student;
}
public String toString() {
return new ToStringBuilder(this)
.append("tgId", getTgId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -