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

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

?? baseusermodel.java

?? ASP SHOP 的代碼
?? JAVA
字號:
package com.publish.shop.security.javabeans.base;

import java.io.Serializable;


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

public abstract class BaseUserModel  implements Serializable {

	public static String REF = "UserModel";
	public static String PROP_USER_TYPE_ID = "userTypeId";
	public static String PROP_UPDATE_TIME = "updateTime";
	public static String PROP_LOGIN_NAME = "loginName";
	public static String PROP_USER_PWD = "userPwd";
	public static String PROP_CREATE_TIME = "createTime";
	public static String PROP_USER_LEVEL = "userLevel";
	public static String PROP_USER_ID = "userId";
	public static String PROP_USER_ADDRESS = "userAddress";
	public static String PROP_USER_ZIP = "userZip";
	public static String PROP_USER_EMAIL = "userEmail";
	public static String PROP_USER_STATUS = "userStatus";
	public static String PROP_USER_PHONE = "userPhone";
	public static String PROP_USER_NAME = "userName";
	public static String PROP_USER_SEX = "userSex";


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

	/**
	 * Constructor for primary key
	 */
	public BaseUserModel (java.lang.Integer userId) {
		this.setUserId(userId);
		initialize();
	}

	/**
	 * Constructor for required fields
	 */
	public BaseUserModel (
		java.lang.Integer userId,
		java.lang.String loginName,
		java.lang.String userName,
		java.lang.String userPwd,
		java.lang.String userTypeId,
		java.lang.String userStatus) {

		this.setUserId(userId);
		this.setLoginName(loginName);
		this.setUserName(userName);
		this.setUserPwd(userPwd);
		this.setUserTypeId(userTypeId);
		this.setUserStatus(userStatus);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

	// primary key
	private java.lang.Integer userId;

	// fields
	private java.lang.String loginName;
	private java.lang.String userName;
	private java.lang.String userPwd;
	private java.lang.String userTypeId;
	private java.lang.String userSex;
	private java.lang.String userPhone;
	private java.lang.String userEmail;
	private java.lang.String userAddress;
	private java.lang.String userZip;
	private java.lang.String createTime;
	private java.lang.String updateTime;
	private java.lang.String userStatus;
	private java.lang.Integer userLevel;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="increment"
     *  column="userId"
     */
	public java.lang.Integer getUserId () {
		return userId;
	}

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




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

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



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

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



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

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



	/**
	 * Return the value associated with the column: userType
	 */
	public java.lang.String getUserTypeId () {
		return userTypeId;
	}

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



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

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



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

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



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

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



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

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



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

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



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

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



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

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



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

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



	/**
	 * Return the value associated with the column: userLevel
	 */
	public java.lang.Integer getUserLevel () {
		return userLevel;
	}

	/**
	 * Set the value related to the column: userLevel
	 * @param userLevel the userLevel value
	 */
	public void setUserLevel (java.lang.Integer userLevel) {
		this.userLevel = userLevel;
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.publish.shop.security.javabeans.UserModel)) return false;
		else {
			com.publish.shop.security.javabeans.UserModel userModel = (com.publish.shop.security.javabeans.UserModel) obj;
			if (null == this.getUserId() || 0 == userModel.getUserId()) return false;
			else return (this.getUserId().equals(userModel.getUserId()));
		}
	}

	public int hashCode () {
		if (Integer.MIN_VALUE == this.hashCode) {
			if (null == this.getUserId()) return super.hashCode();
			else {
				String hashStr = this.getClass().getName() + ":" + this.getUserId().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亚洲精品久久久蜜桃网站| 91精品久久久久久久久99蜜臂| 精品国产凹凸成av人导航| 亚洲综合色视频| 国产suv精品一区二区883| 91麻豆精品国产91久久久| 国产精品网站在线| 精品影院一区二区久久久| 欧美午夜寂寞影院| 亚洲精品中文字幕乱码三区| 成人精品电影在线观看| 精品国产91亚洲一区二区三区婷婷| 亚洲国产精品久久艾草纯爱| 91片在线免费观看| 亚洲日本成人在线观看| 成人黄色免费短视频| 国产喂奶挤奶一区二区三区| 麻豆精品视频在线| 日韩视频一区二区三区| 图片区日韩欧美亚洲| 在线观看国产一区二区| 亚洲嫩草精品久久| 9色porny自拍视频一区二区| 国产精品色婷婷| 99久久精品国产一区二区三区| 国产亚洲短视频| 高清成人免费视频| 国产精品色哟哟网站| 99久久久免费精品国产一区二区| 国产精品三级在线观看| 国产精品亚洲一区二区三区在线| 久久久久久99久久久精品网站| 国产精品一二三在| 欧美激情综合在线| 国产91清纯白嫩初高中在线观看 | 久久99精品国产.久久久久久 | 亚洲一二三四区| 欧美综合一区二区| 亚洲综合久久久| 色综合咪咪久久| 亚洲午夜私人影院| 日韩精品专区在线影院观看| 精品一区二区三区不卡| 久久久久国产精品人| av激情亚洲男人天堂| 亚洲乱码日产精品bd| 欧美精品日日鲁夜夜添| 蜜桃视频在线观看一区| 国产清纯在线一区二区www| www.久久精品| 亚洲一卡二卡三卡四卡五卡| 777欧美精品| 成人性生交大片免费看在线播放| 最新中文字幕一区二区三区| 欧美色网站导航| 久久国产三级精品| 中文字幕精品三区| 欧美亚洲精品一区| 韩国欧美国产1区| 亚洲日本在线天堂| 日韩一级片在线播放| 成人性视频免费网站| 不卡视频免费播放| 青娱乐精品视频在线| 国产亚洲精品资源在线26u| 91高清在线观看| 久久精品国产亚洲aⅴ| 亚洲欧美激情视频在线观看一区二区三区 | 欧美性猛交一区二区三区精品| 免费成人av在线播放| 亚洲欧洲性图库| 日韩美女主播在线视频一区二区三区| 成人av电影免费观看| 日本欧洲一区二区| 亚洲欧美韩国综合色| 日韩免费看的电影| 色94色欧美sute亚洲13| 国产精品一区二区三区乱码| 亚洲大型综合色站| 亚洲三级免费观看| 久久久久久久久久看片| 在线播放欧美女士性生活| 99久久精品国产一区二区三区| 九色综合狠狠综合久久| 亚洲成a人片在线观看中文| 国产人成亚洲第一网站在线播放 | 欧美性videosxxxxx| 国内成人自拍视频| 日本中文字幕不卡| 亚洲一线二线三线视频| 国产精品久久久久永久免费观看| 欧美精品一区二区三区久久久| 欧美午夜不卡在线观看免费| 波多野结衣中文字幕一区| 狠狠狠色丁香婷婷综合久久五月| 亚洲va韩国va欧美va| 中文字幕欧美一| 中文字幕亚洲区| 欧美国产一区在线| 国产日韩欧美麻豆| 国产欧美日韩在线看| 日韩精品专区在线影院重磅| 欧美一区二区黄色| 欧美精品 日韩| 777亚洲妇女| 欧美一卡二卡在线| 日韩欧美国产小视频| 91精品国产一区二区| 69av一区二区三区| 日韩精品一区二区三区中文精品| 欧美另类变人与禽xxxxx| 欧美探花视频资源| 欧美日韩国产经典色站一区二区三区| 欧美视频在线不卡| 欧美欧美欧美欧美| 正在播放亚洲一区| 日韩免费视频一区| 久久―日本道色综合久久| www久久精品| 欧美国产精品劲爆| 亚洲精品乱码久久久久久久久| 亚洲激情校园春色| 亚洲第一激情av| 免费在线看一区| 国产精品一级片在线观看| 国产成人av影院| 91网站视频在线观看| 欧美日韩夫妻久久| 日韩午夜在线播放| 久久久亚洲高清| 中文字幕一区二区三区不卡在线| 国产精品乱码一区二区三区软件| 亚洲欧美一区二区三区国产精品| 亚洲午夜久久久久久久久久久| 青青草成人在线观看| 国产成人av一区二区三区在线观看| 99精品欧美一区二区三区小说| 在线免费观看成人短视频| 欧美在线你懂得| 亚洲精品一线二线三线无人区| 国产精品理论在线观看| 亚洲国产精品综合小说图片区| 男女男精品视频| aaa亚洲精品| 日韩欧美高清dvd碟片| 国产精品欧美久久久久一区二区| 夜夜精品视频一区二区| 久久91精品久久久久久秒播| 99久久伊人精品| 日韩午夜电影av| 亚洲日本青草视频在线怡红院| 美女视频黄 久久| av亚洲精华国产精华| 91精品国产综合久久蜜臀| 成人免费视频在线观看| 久久99精品久久久| 欧洲av在线精品| 国产精品网站导航| 久久99精品久久久久婷婷| 色婷婷亚洲精品| 久久婷婷国产综合精品青草| 亚洲无人区一区| 不卡欧美aaaaa| 精品国产凹凸成av人导航| 亚洲最快最全在线视频| 国产成人免费在线| 欧美一卡二卡三卡四卡| 一区二区三区中文字幕电影| 国产经典欧美精品| 日韩一区二区免费视频| 一区二区三区国产精品| 成人av动漫网站| 国产欧美视频一区二区三区| 麻豆中文一区二区| 欧美日韩在线电影| 国产精品国产三级国产专播品爱网| 日日夜夜精品视频免费| 欧美主播一区二区三区美女| 国产精品久久久久久妇女6080| 国产一区二区三区免费播放| 日韩一区二区三区四区| 午夜视频在线观看一区二区| 91日韩在线专区| 亚洲男人的天堂网| 91偷拍与自偷拍精品| 国产欧美日韩中文久久| 丰满少妇久久久久久久| 亚洲精品一区二区三区蜜桃下载| 偷偷要91色婷婷| 69av一区二区三区| 日日嗨av一区二区三区四区| 在线精品视频一区二区| 亚洲一区国产视频| 欧美唯美清纯偷拍| 日韩高清一级片| 日韩三级视频在线看| 久久国产精品色| 久久一夜天堂av一区二区三区|