📄 abstracttuser.java
字号:
/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Mon Oct 23 16:37:29 CST 2006 by MyEclipse Hibernate Tool.
*/
package com.ascenttech.hib.vo.t_user;
import java.io.Serializable;
/**
* A class that represents a row in the t_user table.
* You can customize the behavior of this class by editing the class, {@link TUser()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*/
public abstract class AbstractTUser
implements Serializable
{
/** The cached hash code value for this instance. Settting to 0 triggers re-calculation. */
private int hashValue = 0;
/** The composite primary key value. */
private TUserId id;//调用loginname
/** The value of the simple userid property. */
private java.lang.Long userid;
/** The value of the simple password property. */
private java.lang.String password;
/** The value of the simple username property. */
private java.lang.String username;
/** The value of the simple sex property. */
private java.lang.String sex;
/** The value of the simple age property. */
private java.lang.Integer age;
/** The value of the simple education property. */
private java.lang.String education;
/** The value of the simple job property. */
private java.lang.String job;
/** The value of the simple phone property. */
private java.lang.String phone;
/** The value of the simple cell property. */
private java.lang.String cell;
/** The value of the simple company property. */
private java.lang.String company;
/** The value of the simple address property. */
private java.lang.String address;
/** The value of the simple status property. */
private java.lang.Integer status;
/** The value of the simple groupname property. */
private java.lang.String groupname;
/** The value of the simple rank property. */
private java.lang.Integer rank;
/** The value of the simple subport property. */
private java.lang.String subport;
/** The value of the simple postcode property. */
private java.lang.String postcode;
/**
* Simple constructor of AbstractTUser instances.
*/
public AbstractTUser()
{
}
/**
* Constructor of AbstractTUser instances given a simple primary key.
* @param loginname
*/
/**
* Return the value of the userid column.
* @return java.lang.Long
*/
public java.lang.Long getUserid()
{
return this.userid;
}
/**
* Set the value of the userid column.
* @param userid
*/
public void setUserid(java.lang.Long userid)
{
this.userid = userid;
}
/**
* Return the value of the password column.
* @return java.lang.String
*/
public java.lang.String getPassword()
{
return this.password;
}
/**
* Set the value of the password column.
* @param password
*/
public void setPassword(java.lang.String password)
{
this.password = password;
}
/**
* Return the value of the username column.
* @return java.lang.String
*/
public java.lang.String getUsername()
{
return this.username;
}
/**
* Set the value of the username column.
* @param username
*/
public void setUsername(java.lang.String username)
{
this.username = username;
}
/**
* Return the value of the sex column.
* @return java.lang.String
*/
public java.lang.String getSex()
{
return this.sex;
}
/**
* Set the value of the sex column.
* @param sex
*/
public void setSex(java.lang.String sex)
{
this.sex = sex;
}
/**
* Return the value of the age column.
* @return java.lang.Integer
*/
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;
}
/**
* Return the value of the education column.
* @return java.lang.String
*/
public java.lang.String getEducation()
{
return this.education;
}
/**
* Set the value of the education column.
* @param education
*/
public void setEducation(java.lang.String education)
{
this.education = education;
}
/**
* Return the value of the job column.
* @return java.lang.String
*/
public java.lang.String getJob()
{
return this.job;
}
/**
* Set the value of the job column.
* @param job
*/
public void setJob(java.lang.String job)
{
this.job = job;
}
/**
* Return the value of the phone column.
* @return java.lang.String
*/
public java.lang.String getPhone()
{
return this.phone;
}
/**
* Set the value of the phone column.
* @param phone
*/
public void setPhone(java.lang.String phone)
{
this.phone = phone;
}
/**
* Return the value of the cell column.
* @return java.lang.String
*/
public java.lang.String getCell()
{
return this.cell;
}
/**
* Set the value of the cell column.
* @param cell
*/
public void setCell(java.lang.String cell)
{
this.cell = cell;
}
/**
* Return the value of the company column.
* @return java.lang.String
*/
public java.lang.String getCompany()
{
return this.company;
}
/**
* Set the value of the company column.
* @param company
*/
public void setCompany(java.lang.String company)
{
this.company = company;
}
/**
* Return the value of the address column.
* @return java.lang.String
*/
public java.lang.String getAddress()
{
return this.address;
}
/**
* Set the value of the address column.
* @param address
*/
public void setAddress(java.lang.String address)
{
this.address = address;
}
/**
* Return the value of the status column.
* @return java.lang.Integer
*/
public java.lang.Integer getStatus()
{
return this.status;
}
/**
* Set the value of the status column.
* @param status
*/
public void setStatus(java.lang.Integer status)
{
this.status = status;
}
/**
* Return the value of the groupname column.
* @return java.lang.String
*/
public java.lang.String getGroupname()
{
return this.groupname;
}
/**
* Set the value of the groupname column.
* @param groupname
*/
public void setGroupname(java.lang.String groupname)
{
this.groupname = groupname;
}
/**
* Return the value of the rank column.
* @return java.lang.Integer
*/
public java.lang.Integer getRank()
{
return this.rank;
}
/**
* Set the value of the rank column.
* @param rank
*/
public void setRank(java.lang.Integer rank)
{
this.rank = rank;
}
/**
* Return the value of the subport column.
* @return java.lang.String
*/
public java.lang.String getSubport()
{
return this.subport;
}
/**
* Set the value of the subport column.
* @param subport
*/
public void setSubport(java.lang.String subport)
{
this.subport = subport;
}
/**
* Return the value of the postcode column.
* @return java.lang.String
*/
public java.lang.String getPostcode()
{
return this.postcode;
}
/**
* Set the value of the postcode column.
* @param postcode
*/
public void setPostcode(java.lang.String postcode)
{
this.postcode = postcode;
}
//川TUserId对象给TUser类
public AbstractTUser(TUserId id) {
this.id=id;
}
public TUserId getId() {
return id;
}
public void setId(TUserId id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -