亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? baseuser.java

?? JAVA做的CMS源碼
?? JAVA
字號:
package com.jeecms.core.entity.base;

import java.io.Serializable;


/**
 * This is an object that contains data related to the CORE_USER table.
 * Do not modify this class because it will be overwritten if the configuration file
 * related to this class is modified.
 *
 * @hibernate.class
 *  table="CORE_USER"
 */

public abstract class BaseUser  implements Serializable {

	public static String REF = "User";
	public static String PROP_LOGIN_COUNT = "loginCount";
	public static String PROP_LAST_LOGIN_IP = "lastLoginIp";
	public static String PROP_LOGIN_NAME = "loginName";
	public static String PROP_BIRTHDAY = "birthday";
	public static String PROP_REAL_NAME = "realName";
	public static String PROP_GENDER = "gender";
	public static String PROP_CREATE_TIME = "createTime";
	public static String PROP_DISABLED = "disabled";
	public static String PROP_ZIP = "zip";
	public static String PROP_LAST_LOGIN_TIME = "lastLoginTime";
	public static String PROP_TEL = "tel";
	public static String PROP_PASSWORD = "password";
	public static String PROP_CURRENT_LOGIN_TIME = "currentLoginTime";
	public static String PROP_EMAIL = "email";
	public static String PROP_FAX = "fax";
	public static String PROP_MOBILE = "mobile";
	public static String PROP_ADDRESS = "address";
	public static String PROP_CURRENT_LOGIN_IP = "currentLoginIp";
	public static String PROP_ID = "id";


	// constructors
	public BaseUser () {
		initialize();
	}

	/**
	 * Constructor for primary key
	 */
	public BaseUser (java.lang.Long id) {
		this.setId(id);
		initialize();
	}

	/**
	 * Constructor for required fields
	 */
	public BaseUser (
		java.lang.Long id,
		java.lang.String loginName,
		java.lang.String email,
		java.lang.Boolean disabled) {

		this.setId(id);
		this.setLoginName(loginName);
		this.setEmail(email);
		this.setDisabled(disabled);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

	// primary key
	private java.lang.Long id;

	// fields
	private java.lang.String loginName;
	private java.lang.String realName;
	private java.lang.String password;
	private java.lang.String email;
	private java.lang.String fax;
	private java.lang.String tel;
	private java.lang.String mobile;
	private java.lang.String zip;
	private java.lang.String address;
	private java.lang.Boolean gender;
	private java.util.Date birthday;
	private java.util.Date createTime;
	private java.util.Date lastLoginTime;
	private java.lang.String lastLoginIp;
	private java.util.Date currentLoginTime;
	private java.lang.String currentLoginIp;
	private java.lang.Long loginCount;
	private java.lang.Boolean disabled;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="native"
     *  column="USER_ID"
     */
	public java.lang.Long getId () {
		return id;
	}

	/**
	 * Set the unique identifier of this class
	 * @param id the new ID
	 */
	public void setId (java.lang.Long id) {
		this.id = id;
		this.hashCode = Integer.MIN_VALUE;
	}




	/**
	 * Return the value associated with the column: LOGIN_NAME
	 */
	public java.lang.String getLoginName () {
		return loginName;
	}

	/**
	 * Set the value related to the column: LOGIN_NAME
	 * @param loginName the LOGIN_NAME value
	 */
	public void setLoginName (java.lang.String loginName) {
		this.loginName = loginName;
	}



	/**
	 * Return the value associated with the column: REAL_NAME
	 */
	public java.lang.String getRealName () {
		return realName;
	}

	/**
	 * Set the value related to the column: REAL_NAME
	 * @param realName the REAL_NAME value
	 */
	public void setRealName (java.lang.String realName) {
		this.realName = realName;
	}



	/**
	 * Return the value associated with the column: PASSWORD
	 */
	public java.lang.String getPassword () {
		return password;
	}

	/**
	 * Set the value related to the column: PASSWORD
	 * @param password the PASSWORD value
	 */
	public void setPassword (java.lang.String password) {
		this.password = password;
	}



	/**
	 * Return the value associated with the column: EMAIL
	 */
	public java.lang.String getEmail () {
		return email;
	}

	/**
	 * Set the value related to the column: EMAIL
	 * @param email the EMAIL value
	 */
	public void setEmail (java.lang.String email) {
		this.email = email;
	}



	/**
	 * Return the value associated with the column: FAX
	 */
	public java.lang.String getFax () {
		return fax;
	}

	/**
	 * Set the value related to the column: FAX
	 * @param fax the FAX value
	 */
	public void setFax (java.lang.String fax) {
		this.fax = fax;
	}



	/**
	 * Return the value associated with the column: TEL
	 */
	public java.lang.String getTel () {
		return tel;
	}

	/**
	 * Set the value related to the column: TEL
	 * @param tel the TEL value
	 */
	public void setTel (java.lang.String tel) {
		this.tel = tel;
	}



	/**
	 * Return the value associated with the column: MOBILE
	 */
	public java.lang.String getMobile () {
		return mobile;
	}

	/**
	 * Set the value related to the column: MOBILE
	 * @param mobile the MOBILE value
	 */
	public void setMobile (java.lang.String mobile) {
		this.mobile = mobile;
	}



	/**
	 * Return the value associated with the column: ZIP
	 */
	public java.lang.String getZip () {
		return zip;
	}

	/**
	 * Set the value related to the column: ZIP
	 * @param zip the ZIP value
	 */
	public void setZip (java.lang.String zip) {
		this.zip = zip;
	}



	/**
	 * Return the value associated with the column: ADDRESS
	 */
	public java.lang.String getAddress () {
		return address;
	}

	/**
	 * Set the value related to the column: ADDRESS
	 * @param address the ADDRESS value
	 */
	public void setAddress (java.lang.String address) {
		this.address = address;
	}



	/**
	 * Return the value associated with the column: GENDER
	 */
	public java.lang.Boolean getGender () {
		return gender;
	}

	/**
	 * Set the value related to the column: GENDER
	 * @param gender the GENDER value
	 */
	public void setGender (java.lang.Boolean gender) {
		this.gender = gender;
	}



	/**
	 * Return the value associated with the column: BIRTHDAY
	 */
	public java.util.Date getBirthday () {
		return birthday;
	}

	/**
	 * Set the value related to the column: BIRTHDAY
	 * @param birthday the BIRTHDAY value
	 */
	public void setBirthday (java.util.Date birthday) {
		this.birthday = birthday;
	}



	/**
	 * Return the value associated with the column: CREATE_TIME
	 */
	public java.util.Date getCreateTime () {
		return createTime;
	}

	/**
	 * Set the value related to the column: CREATE_TIME
	 * @param createTime the CREATE_TIME value
	 */
	public void setCreateTime (java.util.Date createTime) {
		this.createTime = createTime;
	}



	/**
	 * Return the value associated with the column: LAST_LOGIN_TIME
	 */
	public java.util.Date getLastLoginTime () {
		return lastLoginTime;
	}

	/**
	 * Set the value related to the column: LAST_LOGIN_TIME
	 * @param lastLoginTime the LAST_LOGIN_TIME value
	 */
	public void setLastLoginTime (java.util.Date lastLoginTime) {
		this.lastLoginTime = lastLoginTime;
	}



	/**
	 * Return the value associated with the column: LAST_LOGIN_IP
	 */
	public java.lang.String getLastLoginIp () {
		return lastLoginIp;
	}

	/**
	 * Set the value related to the column: LAST_LOGIN_IP
	 * @param lastLoginIp the LAST_LOGIN_IP value
	 */
	public void setLastLoginIp (java.lang.String lastLoginIp) {
		this.lastLoginIp = lastLoginIp;
	}



	/**
	 * Return the value associated with the column: CURRENT_LOGIN_TIME
	 */
	public java.util.Date getCurrentLoginTime () {
		return currentLoginTime;
	}

	/**
	 * Set the value related to the column: CURRENT_LOGIN_TIME
	 * @param currentLoginTime the CURRENT_LOGIN_TIME value
	 */
	public void setCurrentLoginTime (java.util.Date currentLoginTime) {
		this.currentLoginTime = currentLoginTime;
	}



	/**
	 * Return the value associated with the column: CURRENT_LOGIN_IP
	 */
	public java.lang.String getCurrentLoginIp () {
		return currentLoginIp;
	}

	/**
	 * Set the value related to the column: CURRENT_LOGIN_IP
	 * @param currentLoginIp the CURRENT_LOGIN_IP value
	 */
	public void setCurrentLoginIp (java.lang.String currentLoginIp) {
		this.currentLoginIp = currentLoginIp;
	}



	/**
	 * Return the value associated with the column: LOGIN_COUNT
	 */
	public java.lang.Long getLoginCount () {
		return loginCount;
	}

	/**
	 * Set the value related to the column: LOGIN_COUNT
	 * @param loginCount the LOGIN_COUNT value
	 */
	public void setLoginCount (java.lang.Long loginCount) {
		this.loginCount = loginCount;
	}



	/**
	 * Return the value associated with the column: IS_DISABLED
	 */
	public java.lang.Boolean getDisabled () {
		return disabled;
	}

	/**
	 * Set the value related to the column: IS_DISABLED
	 * @param disabled the IS_DISABLED value
	 */
	public void setDisabled (java.lang.Boolean disabled) {
		this.disabled = disabled;
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.jeecms.core.entity.User)) return false;
		else {
			com.jeecms.core.entity.User user = (com.jeecms.core.entity.User) obj;
			if (null == this.getId() || null == user.getId()) return false;
			else return (this.getId().equals(user.getId()));
		}
	}

	public int hashCode () {
		if (Integer.MIN_VALUE == this.hashCode) {
			if (null == this.getId()) return super.hashCode();
			else {
				String hashStr = this.getClass().getName() + ":" + this.getId().hashCode();
				this.hashCode = hashStr.hashCode();
			}
		}
		return this.hashCode;
	}


	public String toString () {
		return super.toString();
	}


}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜宅男影院| 日韩一级片网站| 美脚の诱脚舐め脚责91| 国产日韩在线不卡| 欧美精品丝袜久久久中文字幕| 激情综合色综合久久| 亚洲欧美经典视频| xvideos.蜜桃一区二区| 色欧美片视频在线观看| 国产在线一区观看| 亚洲午夜一区二区三区| 亚洲国产高清aⅴ视频| 欧美福利电影网| 色偷偷久久人人79超碰人人澡| 国产精品综合二区| 亚洲超碰精品一区二区| 亚洲天堂精品在线观看| 久久久久久夜精品精品免费| 欧美午夜一区二区三区免费大片| 国产激情视频一区二区在线观看| 午夜欧美在线一二页| 国产精品网站在线| 精品99999| 91麻豆精品91久久久久久清纯| 97成人超碰视| 成人少妇影院yyyy| 精品写真视频在线观看| 午夜电影一区二区| 亚洲综合在线观看视频| 国产精品福利影院| 国产午夜精品理论片a级大结局| 91精品国产综合久久久久久| 欧美色网站导航| 99re亚洲国产精品| 丁香婷婷综合色啪| 国产成人精品免费网站| 国产精品综合一区二区| 狠狠色丁香婷综合久久| 久久精品国产99国产| 日本欧美一区二区| 美日韩一区二区| 日本成人在线电影网| 日韩精品免费视频人成| 日韩精品每日更新| 美洲天堂一区二卡三卡四卡视频| 天堂成人国产精品一区| 丝袜亚洲精品中文字幕一区| 日韩精品一二三| 日av在线不卡| 狠狠久久亚洲欧美| 国产很黄免费观看久久| 成人av影视在线观看| 成人av在线观| 在线亚洲一区观看| 欧美三级乱人伦电影| 91精品国产综合久久久久| 日韩欧美国产麻豆| 久久夜色精品一区| 国产精品入口麻豆原神| 国产精品久久久久久久久久久免费看 | 美女视频一区二区三区| 免费在线观看视频一区| 精品一区二区三区在线播放| 国产一区二区三区日韩| 成人av影视在线观看| 欧美性做爰猛烈叫床潮| 日韩午夜激情av| 国产清纯在线一区二区www| 国产精品日日摸夜夜摸av| 亚洲精品日韩综合观看成人91| 亚洲男人天堂av网| 日韩影院免费视频| 国产精品影视网| 色先锋久久av资源部| 日韩欧美在线不卡| 欧美激情中文字幕| 亚洲综合免费观看高清在线观看| 丝袜亚洲精品中文字幕一区| 韩国av一区二区三区| 成人动漫视频在线| 51精品国自产在线| 国产日韩欧美电影| 亚洲一区二区在线免费观看视频| 麻豆国产欧美日韩综合精品二区| 国产99久久精品| 欧美日韩精品电影| 中文字幕第一页久久| 午夜视频一区二区| 不卡的av电影在线观看| 欧美夫妻性生活| 亚洲国产高清在线观看视频| 亚洲第一综合色| 福利电影一区二区| 欧美电影影音先锋| 亚洲欧洲av在线| 蜜臀av性久久久久蜜臀aⅴ| 不卡av在线免费观看| 欧美v国产在线一区二区三区| 亚洲精品日日夜夜| 国产v日产∨综合v精品视频| 欧美日韩国产综合一区二区| 国产精品欧美一区喷水| 麻豆精品视频在线| 欧美亚洲综合色| 国产欧美日韩另类视频免费观看| 午夜欧美2019年伦理| 99re亚洲国产精品| 欧美激情综合在线| 久热成人在线视频| 欧美色图片你懂的| 综合色天天鬼久久鬼色| 国产盗摄女厕一区二区三区| 欧美一二三四在线| 亚洲福利视频三区| 色综合久久中文字幕综合网| 欧美激情综合在线| 国产一区二区三区观看| 日韩欧美亚洲一区二区| 亚洲一区二区三区中文字幕在线| 成人免费av在线| 久久亚洲私人国产精品va媚药| 日韩av一区二区三区四区| 色www精品视频在线观看| 欧美日韩国产精品成人| 亚洲天堂a在线| 成人免费视频caoporn| 26uuu久久天堂性欧美| 视频在线观看91| 欧美日韩精品系列| 亚洲一区二区三区四区在线免费观看 | 青青草国产成人av片免费| 91福利在线导航| 亚洲日本在线天堂| 94-欧美-setu| 国产精品美女久久久久久2018| 国产精品一二三四五| 国产午夜精品一区二区| 国产成人精品影院| 国产日韩精品一区二区浪潮av| 久久99精品久久久久久久久久久久| 51午夜精品国产| 美女视频一区在线观看| 欧美xxxxxxxx| 国产电影精品久久禁18| 亚洲国产精品成人综合| 成人性生交大片免费看中文网站| 久久人人97超碰com| 丁香亚洲综合激情啪啪综合| 中文字幕av免费专区久久| 成人小视频免费在线观看| 中文字幕欧美激情一区| www.亚洲精品| 亚洲免费在线视频一区 二区| 色一情一伦一子一伦一区| 亚洲综合在线免费观看| 制服丝袜日韩国产| 久久99国产乱子伦精品免费| 国产视频一区在线播放| 成人av网址在线| 亚洲综合丁香婷婷六月香| 正在播放一区二区| 国产一区中文字幕| 国产精品免费aⅴ片在线观看| 97se亚洲国产综合在线| 五月天激情综合网| 久久亚洲免费视频| 99精品视频一区二区三区| 午夜精品久久久久久久99樱桃| 欧美一级片免费看| 国产精品一区二区视频| 日韩一区有码在线| 4438成人网| 国产麻豆一精品一av一免费| 日韩毛片精品高清免费| 91精品国产91热久久久做人人| 国产精品一区三区| 亚洲综合视频网| 精品日韩一区二区| 色一情一乱一乱一91av| 精品夜夜嗨av一区二区三区| 亚洲色图19p| 欧美videos大乳护士334| 91啪在线观看| 久久国产日韩欧美精品| 亚洲男人天堂一区| 亚洲精品一区二区三区影院| 日本高清免费不卡视频| 国产综合色精品一区二区三区| 亚洲美女偷拍久久| 久久亚洲综合色一区二区三区 | 在线这里只有精品| 韩国女主播一区| 亚洲18女电影在线观看| 欧美精彩视频一区二区三区| 欧美日韩成人综合天天影院 | 欧美一卡2卡3卡4卡| 成人av免费网站| 极品瑜伽女神91| 午夜日韩在线电影| 136国产福利精品导航|