📄 abstractuserinfo.java
字号:
/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Thu Oct 13 15:03:51 CST 2005 by MyEclipse Hibernate Tool.
*/
package com.sc.model;
import java.io.Serializable;
/**
* A class that represents a row in the USERINFO table.
* You can customize the behavior of this class by editing the class, {@link Userinfo()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
* @sincejdk 1.5
*/
public abstract class AbstractUserinfo
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 java.lang.Integer userid;
/** The value of the simple username property. */
private java.lang.String username;
/** The value of the simple usertype property. */
//private java.lang.Integer usertype = new Integer(0);
/** The value of the simple password property. */
private java.lang.String password;
/** The value of the simple address property. */
//private java.lang.String address;
/** The value of the simple phone property. */
//private java.lang.String phone;
/** The value of the simple safeemail property. */
private java.lang.String safeemail;
/** The value of the simple affirmquestion property. */
private java.lang.String affirmquestion;
/** The value of the simple affirmanswer property. */
private java.lang.String affirmanswer;
/** The value of the simple realname property.对应的是联系人 */
//private java.lang.String realname;
/** The value of the simple sex property. */
private java.lang.Integer sex = new Integer(2);
/** The value of the simple age property. */
private java.lang.Integer age = new Integer(0);
/** The value of the simple nationid property. */
//private java.lang.String nationid;
/** The value of the simple visualizeid property. */
//private java.lang.String visualize;
/** The value of the simple registertime property. */
private java.util.Date registertime;
/** The value of the simple account property. */
//private java.lang.String account;
/** The value of the simple landingtimes property. */
//private java.lang.Integer landingtimes = new Integer(0);
/** The value of the simple totallandingperiod property. */
private java.lang.Integer totallandingperiod = new Integer(0);
/** The value of the simple usercommittimes property. */
//private java.lang.Integer usercommittimes = new Integer(0);
/** The value of the simple usershangbangtimes property. */
//private java.lang.Integer usershangbangtimes;
/** The value of the simple qikantimes property. */
//private java.lang.Integer qikantimes = new Integer(0);
/** The value of the simple userstate property. */
private java.lang.Integer userstate = new Integer(0);
/** The value of the simple scores property. */
//private java.lang.Integer scores = new Integer(0);
/** The value of the simple roleid property. */
private java.lang.Integer roleid = new Integer(0);
/** The value of the simple remark property. */
private java.lang.String remark;
/** The value of the simple userlevel property. */
//private java.lang.Integer userlevel = new Integer(0);
/** The value of the simple future property. */
//private java.lang.Integer future =new Integer(0);
/** The value of the simple force property. */
//private java.lang.Integer force = new Integer(0);
//private String province;
//private String city;
//private String homepage;
/** 2005-11-25 */
//private String mobilephone;
//2006-1-23 onlinePayway
//private Long onlinePayWay;
//private Long outlinePayWay;
/*
public Long getOnlinePayWay() {
return onlinePayWay;
}
public void setOnlinePayWay(Long onlinePayWay) {
this.onlinePayWay = onlinePayWay;
}
public Long getOutlinePayWay() {
return outlinePayWay;
}
public void setOutlinePayWay(Long outlinePayWay) {
this.outlinePayWay = outlinePayWay;
}
//////////////////////////////////////////////////////////
public String getMobilephone() {
return mobilephone;
}
public void setMobilephone(String mobilephone) {
this.mobilephone = mobilephone;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getHomepage() {
return homepage;
}
public void setHomepage(String homepage) {
this.homepage = homepage;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
*/
public AbstractUserinfo()
{
}
/**
* Constructor of AbstractUserinfo instances given a simple primary key.
* @param userid
*/
public AbstractUserinfo(java.lang.Integer userid)
{
this.setUserid(userid);
}
/**
* Return the simple primary key value that identifies this object.
* @return java.lang.Long
*/
public java.lang.Integer getUserid()
{
return userid;
}
/**
* Set the simple primary key value that identifies this object.
* @param userid
*/
public void setUserid(java.lang.Integer userid)
{
this.hashValue = 0;
this.userid = userid;
}
/**
* 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;
}
/*
public java.lang.Integer getUsertype()
{
return this.usertype;
}
public void setUsertype(java.lang.Integer usertype)
{
this.usertype = usertype;
}
*/
/**
* 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;
}
/*
public java.lang.String getAddress()
{
return this.address;
}
public void setAddress(java.lang.String address)
{
this.address = address;
}
public java.lang.String getPhone()
{
return this.phone;
}
public void setPhone(java.lang.String phone)
{
this.phone = phone;
}
*/
/**
* Return the value of the SAFEEMAIL column.
* @return java.lang.String
*/
public java.lang.String getSafeemail()
{
return this.safeemail;
}
/**
* Set the value of the SAFEEMAIL column.
* @param safeemail
*/
public void setSafeemail(java.lang.String safeemail)
{
this.safeemail = safeemail;
}
/**
* Return the value of the AFFIRMQUESTION column.
* @return java.lang.String
*/
public java.lang.String getAffirmquestion()
{
return this.affirmquestion;
}
/**
* Set the value of the AFFIRMQUESTION column.
* @param affirmquestion
*/
public void setAffirmquestion(java.lang.String affirmquestion)
{
this.affirmquestion = affirmquestion;
}
/**
* Return the value of the AFFIRMANSWER column.
* @return java.lang.String
*/
public java.lang.String getAffirmanswer()
{
return this.affirmanswer;
}
/**
* Set the value of the AFFIRMANSWER column.
* @param affirmanswer
*/
public void setAffirmanswer(java.lang.String affirmanswer)
{
this.affirmanswer = affirmanswer;
}
/*
public java.lang.String getRealname()
{
return this.realname;
}
public void setRealname(java.lang.String realname)
{
this.realname = realname;
}
*/
/**
* Return the value of the SEX column.
* @return java.lang.Byte
*/
public java.lang.Integer getSex()
{
return this.sex;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -