?? teach.java
字號:
package cn.hope.front.pojo;
import java.io.Serializable;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class Teach implements Serializable {
/** identifier field */
private Integer thId;
/** nullable persistent field */
private String flag;
/** nullable persistent field */
private cn.hope.front.pojo.SClass SClass;
/** nullable persistent field */
private cn.hope.front.pojo.CSubject CSubject;
/** nullable persistent field */
private cn.hope.front.pojo.TInfo TInfo;
/** full constructor */
public Teach(String flag, cn.hope.front.pojo.SClass SClass, cn.hope.front.pojo.CSubject CSubject, cn.hope.front.pojo.TInfo TInfo) {
this.flag = flag;
this.SClass = SClass;
this.CSubject = CSubject;
this.TInfo = TInfo;
}
/** default constructor */
public Teach() {
}
public Integer getThId() {
return this.thId;
}
public void setThId(Integer thId) {
this.thId = thId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public cn.hope.front.pojo.SClass getSClass() {
return this.SClass;
}
public void setSClass(cn.hope.front.pojo.SClass SClass) {
this.SClass = SClass;
}
public cn.hope.front.pojo.CSubject getCSubject() {
return this.CSubject;
}
public void setCSubject(cn.hope.front.pojo.CSubject CSubject) {
this.CSubject = CSubject;
}
public cn.hope.front.pojo.TInfo getTInfo() {
return this.TInfo;
}
public void setTInfo(cn.hope.front.pojo.TInfo TInfo) {
this.TInfo = TInfo;
}
public String toString() {
return new ToStringBuilder(this)
.append("thId", getThId())
.toString();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -