📄 abstractuserinfo.java
字号:
/**
* Set the value of the SEX column.
* @param sex
*/
public void setSex(java.lang.Integer sex)
{
this.sex = sex;
}
/**
* Return the value of the AGE column.
* @return java.lang.Short
*/
public java.lang.Integer getAge()
{
return this.age;
}
/**
* Set the value of the AGE column.
* @param age
*/
public void setAge(java.lang.Integer age)
{
this.age = age;
}
/*
public java.lang.String getNationid()
{
return this.nationid;
}
public void setNationid(java.lang.String nationid)
{
this.nationid = nationid;
}
public java.lang.String getVisualize()
{
return this.visualize;
}
public void setVisualize(java.lang.String visualize)
{
this.visualize = visualize;
}
*/
/**
* Return the value of the REGISTERTIME column.
* @return java.util.Date
*/
public java.util.Date getRegistertime()
{
return this.registertime;
}
/**
* Set the value of the REGISTERTIME column.
* @param registertime
*/
public void setRegistertime(java.util.Date registertime)
{
this.registertime = registertime;
}
/**
* Return the value of the ACCOUNT column.
* @return java.lang.String
*/
// public java.lang.String getAccount()
// {
// return this.account;
// }
/**
* Set the value of the ACCOUNT column.
* @param account
*/
// public void setAccount(java.lang.String account)
// {
// this.account = account;
// }
/**
* Return the value of the LANDINGTIMES column.
* @return java.lang.Long
*/
// public java.lang.Integer getLandingtimes()
// {
// return this.landingtimes;
// }
/**
* Set the value of the LANDINGTIMES column.
* @param landingtimes
*/
// public void setLandingtimes(java.lang.Integer landingtimes)
// {
// this.landingtimes = landingtimes;
// }
/**
* Return the value of the TOTALLANDINGPERIOD column.
* @return java.lang.Long
*/
public java.lang.Integer getTotallandingperiod()
{
return this.totallandingperiod;
}
/**
* Set the value of the TOTALLANDINGPERIOD column.
* @param totallandingperiod
*/
public void setTotallandingperiod(java.lang.Integer totallandingperiod)
{
this.totallandingperiod = totallandingperiod;
}
/**
* Return the value of the USERCOMMITTIMES column.
* @return java.lang.Long
*/
// public java.lang.Integer getUsercommittimes()
// {
// return this.usercommittimes;
// }
/**
* Set the value of the USERCOMMITTIMES column.
* @param usercommittimes
*/
// public void setUsercommittimes(java.lang.Integer usercommittimes)
// {
// this.usercommittimes = usercommittimes;
// }
/**
* Return the value of the USERSHANGBANGTIMES column.
* @return java.lang.Long
*/
// public java.lang.Integer getUsershangbangtimes()
// {
// return this.usershangbangtimes;
// }
/**
* Set the value of the USERSHANGBANGTIMES column.
* @param usershangbangtimes
*/
// public void setUsershangbangtimes(java.lang.Integer usershangbangtimes)
// {
// this.usershangbangtimes = usershangbangtimes;
// }
/**
* Return the value of the QIKANTIMES column.
* @return java.lang.Long
*/
// public java.lang.Integer getQikantimes()
// {
// return this.qikantimes;
// }
/**
* Set the value of the QIKANTIMES column.
* @param qikantimes
*/
// public void setQikantimes(java.lang.Integer qikantimes)
// {
// this.qikantimes = qikantimes;
// }
/**
* Return the value of the USERSTATE column.
* @return java.lang.Byte
*/
public java.lang.Integer getUserstate()
{
return this.userstate;
}
/**
* Set the value of the USERSTATE column.
* @param userstate
*/
public void setUserstate(java.lang.Integer userstate)
{
this.userstate = userstate;
}
/**
* Return the value of the SCORES column.
* @return java.lang.Long
*/
// public java.lang.Integer getScores()
// {
// return this.scores;
// }
/**
* Set the value of the SCORES column.
* @param scores
*/
// public void setScores(java.lang.Integer scores)
// {
// this.scores = scores;
// }
/**
* Return the value of the ROLEID column.
* @return java.lang.Short
*/
public java.lang.Integer getRoleid()
{
return this.roleid;
}
/**
* Set the value of the ROLEID column.
* @param roleid
*/
public void setRoleid(java.lang.Integer roleid)
{
this.roleid = roleid;
}
/**
* Return the value of the REMARK column.
* @return java.lang.String
*/
public java.lang.String getRemark()
{
return this.remark;
}
/**
* Set the value of the REMARK column.
* @param remark
*/
public void setRemark(java.lang.String remark)
{
this.remark = remark;
}
/**
* Return the value of the USERLEVEL column.
* @return java.lang.Long
*/
//public java.lang.Integer getUserlevel()
//{
// return this.userlevel;
// }
/**
* Set the value of the USERLEVEL column.
* @param userlevel
*/
// public void setUserlevel(java.lang.Integer userlevel)
//{
// this.userlevel = userlevel;
// }
/**
* Return the value of the FUTURE column.
* @return java.lang.Long
*/
// public java.lang.Integer getFuture()
// {
// return this.future;
// }
/**
* Set the value of the FUTURE column.
* @param future
*/
// public void setFuture(java.lang.Integer future)
// {
// this.future = future;
// }
/**
* Return the value of the FORCE column.
* @return java.lang.Long
*/
// public java.lang.Integer getForce()
// {
// return this.force;
// }
/**
* Set the value of the FORCE column.
* @param force
*/
// public void setForce(java.lang.Integer force)
// {
// this.force = force;
// }
/**
* Implementation of the equals comparison on the basis of equality of the primary key values.
* @param rhs
* @return boolean
*/
public boolean equals(Object rhs)
{
if (rhs == null)
return false;
if (! (rhs instanceof Userinfo))
return false;
Userinfo that = (Userinfo) rhs;
if (this.getUserid() != null && that.getUserid() != null)
{
if (! this.getUserid().equals(that.getUserid()))
{
return false;
}
}
return true;
}
/**
* Implementation of the hashCode method conforming to the Bloch pattern with
* the exception of array properties (these are very unlikely primary key types).
* @return int
*/
public int hashCode()
{
if (this.hashValue == 0)
{
int result = 17;
int useridValue = this.getUserid() == null ? 0 : this.getUserid().hashCode();
result = result * 37 + useridValue;
this.hashValue = result;
}
return this.hashValue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -