📄 basetinfo.java
字号:
package cn.hope.mana.pojo.base;
import java.io.Serializable;
/**
* This is an object that contains data related to the t_info table.
* Do not modify this class because it will be overwritten if the configuration file
* related to this class is modified.
*
* @hibernate.class
* table="t_info"
*/
public abstract class BaseTInfo implements Serializable {
public static String REF = "TInfo";
public static String PROP_FLAG = "flag";
public static String PROP_T_BIRTH = "TBirth";
public static String PROP_T_EMAIL = "TEmail";
public static String PROP_T_ENJOY = "TEnjoy";
public static String PROP_T_GUAN = "TGuan";
public static String PROP_T_HOMETEL = "THometel";
public static String PROP_T_IDCARD = "TIdcard";
public static String PROP_T_MAO = "TMao";
public static String PROP_T_MARRY = "TMarry";
public static String PROP_T_MOBILE = "TMobile";
public static String PROP_T_NAME = "TName";
public static String PROP_T_OVER = "TOver";
public static String PROP_T_PASSWORD = "TPassword";
public static String PROP_T_PICTURE = "TPicture";
public static String PROP_T_SCHOOL = "TSchool";
public static String PROP_T_SEX = "TSex";
public static String PROP_T_WORK = "TWork";
public static String PROP_T_XUELI = "TXueli";
public static String PROP_T_ZYE = "TZye";
// constructors
public BaseTInfo () {
initialize();
}
/**
* Constructor for primary key
*/
public BaseTInfo (java.lang.String tId) {
this.setTId(tId);
initialize();
}
/**
* Constructor for required fields
*/
public BaseTInfo (
java.lang.String tId,
java.util.Date tBirth,
java.lang.String tEmail,
java.lang.String tIdcard,
java.lang.String tName,
java.lang.String tPassword,
java.lang.String tSex) {
this.setTId(tId);
this.setTBirth(tBirth);
this.setTEmail(tEmail);
this.setTIdcard(tIdcard);
this.setTName(tName);
this.setTPassword(tPassword);
this.setTSex(tSex);
initialize();
}
protected void initialize () {}
private int hashCode = Integer.MIN_VALUE;
// primary key
private java.lang.String tId;
// fields
private java.lang.String flag;
private java.util.Date tBirth;
private java.lang.String tEmail;
private java.lang.String tEnjoy;
private java.lang.String tGuan;
private java.lang.String tHometel;
private java.lang.String tIdcard;
private java.lang.String tMao;
private java.lang.String tMarry;
private java.lang.String tMobile;
private java.lang.String tName;
private java.util.Date tOver;
private java.lang.String tPassword;
private java.lang.String tPicture;
private java.lang.String tSchool;
private java.lang.String tSex;
private java.lang.String tWork;
private java.lang.String tXueli;
private java.lang.String tZye;
// many to one
private cn.hope.mana.pojo.CDept cDept;
private cn.hope.mana.pojo.MGroup mGroup;
// collections
private java.util.Set cFourms;
private java.util.Set cRefourms;
private java.util.Set mLogs;
private java.util.Set mNounces;
private java.util.Set sJournals;
private java.util.Set sReblogs;
private java.util.Set tAresults;
private java.util.Set tAssesses;
private java.util.Set tBlogs;
private java.util.Set tFiles;
private java.util.Set tHomeworks;
private java.util.Set tJournalMakers;
private java.util.Set tJournalTeachers;
private java.util.Set tQuestions;
private java.util.Set tReblogs;
private java.util.Set tServiceAnswers;
private java.util.Set tServiceAsks;
private java.util.Set tTestInfos;
private java.util.Set teaches;
/**
* Return the unique identifier of this class
* @hibernate.id
* generator-class="identity"
* column="t_id"
*/
public java.lang.String getTId () {
return tId;
}
/**
* Set the unique identifier of this class
* @param tId the new ID
*/
public void setTId (java.lang.String tId) {
this.tId = tId;
this.hashCode = Integer.MIN_VALUE;
}
/**
* Return the value associated with the column: flag
*/
public java.lang.String getFlag () {
return flag;
}
/**
* Set the value related to the column: flag
* @param flag the flag value
*/
public void setFlag (java.lang.String flag) {
this.flag = flag;
}
/**
* Return the value associated with the column: t_birth
*/
public java.util.Date getTBirth () {
return tBirth;
}
/**
* Set the value related to the column: t_birth
* @param tBirth the t_birth value
*/
public void setTBirth (java.util.Date tBirth) {
this.tBirth = tBirth;
}
/**
* Return the value associated with the column: t_email
*/
public java.lang.String getTEmail () {
return tEmail;
}
/**
* Set the value related to the column: t_email
* @param tEmail the t_email value
*/
public void setTEmail (java.lang.String tEmail) {
this.tEmail = tEmail;
}
/**
* Return the value associated with the column: t_enjoy
*/
public java.lang.String getTEnjoy () {
return tEnjoy;
}
/**
* Set the value related to the column: t_enjoy
* @param tEnjoy the t_enjoy value
*/
public void setTEnjoy (java.lang.String tEnjoy) {
this.tEnjoy = tEnjoy;
}
/**
* Return the value associated with the column: t_guan
*/
public java.lang.String getTGuan () {
return tGuan;
}
/**
* Set the value related to the column: t_guan
* @param tGuan the t_guan value
*/
public void setTGuan (java.lang.String tGuan) {
this.tGuan = tGuan;
}
/**
* Return the value associated with the column: t_hometel
*/
public java.lang.String getTHometel () {
return tHometel;
}
/**
* Set the value related to the column: t_hometel
* @param tHometel the t_hometel value
*/
public void setTHometel (java.lang.String tHometel) {
this.tHometel = tHometel;
}
/**
* Return the value associated with the column: t_idcard
*/
public java.lang.String getTIdcard () {
return tIdcard;
}
/**
* Set the value related to the column: t_idcard
* @param tIdcard the t_idcard value
*/
public void setTIdcard (java.lang.String tIdcard) {
this.tIdcard = tIdcard;
}
/**
* Return the value associated with the column: t_mao
*/
public java.lang.String getTMao () {
return tMao;
}
/**
* Set the value related to the column: t_mao
* @param tMao the t_mao value
*/
public void setTMao (java.lang.String tMao) {
this.tMao = tMao;
}
/**
* Return the value associated with the column: t_marry
*/
public java.lang.String getTMarry () {
return tMarry;
}
/**
* Set the value related to the column: t_marry
* @param tMarry the t_marry value
*/
public void setTMarry (java.lang.String tMarry) {
this.tMarry = tMarry;
}
/**
* Return the value associated with the column: t_mobile
*/
public java.lang.String getTMobile () {
return tMobile;
}
/**
* Set the value related to the column: t_mobile
* @param tMobile the t_mobile value
*/
public void setTMobile (java.lang.String tMobile) {
this.tMobile = tMobile;
}
/**
* Return the value associated with the column: t_name
*/
public java.lang.String getTName () {
return tName;
}
/**
* Set the value related to the column: t_name
* @param tName the t_name value
*/
public void setTName (java.lang.String tName) {
this.tName = tName;
}
/**
* Return the value associated with the column: t_over
*/
public java.util.Date getTOver () {
return tOver;
}
/**
* Set the value related to the column: t_over
* @param tOver the t_over value
*/
public void setTOver (java.util.Date tOver) {
this.tOver = tOver;
}
/**
* Return the value associated with the column: t_password
*/
public java.lang.String getTPassword () {
return tPassword;
}
/**
* Set the value related to the column: t_password
* @param tPassword the t_password value
*/
public void setTPassword (java.lang.String tPassword) {
this.tPassword = tPassword;
}
/**
* Return the value associated with the column: t_picture
*/
public java.lang.String getTPicture () {
return tPicture;
}
/**
* Set the value related to the column: t_picture
* @param tPicture the t_picture value
*/
public void setTPicture (java.lang.String tPicture) {
this.tPicture = tPicture;
}
/**
* Return the value associated with the column: t_school
*/
public java.lang.String getTSchool () {
return tSchool;
}
/**
* Set the value related to the column: t_school
* @param tSchool the t_school value
*/
public void setTSchool (java.lang.String tSchool) {
this.tSchool = tSchool;
}
/**
* Return the value associated with the column: t_sex
*/
public java.lang.String getTSex () {
return tSex;
}
/**
* Set the value related to the column: t_sex
* @param tSex the t_sex value
*/
public void setTSex (java.lang.String tSex) {
this.tSex = tSex;
}
/**
* Return the value associated with the column: t_work
*/
public java.lang.String getTWork () {
return tWork;
}
/**
* Set the value related to the column: t_work
* @param tWork the t_work value
*/
public void setTWork (java.lang.String tWork) {
this.tWork = tWork;
}
/**
* Return the value associated with the column: t_xueli
*/
public java.lang.String getTXueli () {
return tXueli;
}
/**
* Set the value related to the column: t_xueli
* @param tXueli the t_xueli value
*/
public void setTXueli (java.lang.String tXueli) {
this.tXueli = tXueli;
}
/**
* Return the value associated with the column: t_zye
*/
public java.lang.String getTZye () {
return tZye;
}
/**
* Set the value related to the column: t_zye
* @param tZye the t_zye value
*/
public void setTZye (java.lang.String tZye) {
this.tZye = tZye;
}
/**
* Return the value associated with the column: d_id
*/
public cn.hope.mana.pojo.CDept getCDept () {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -