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

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

?? basemsg.java

?? 為用戶提供透明的管理平臺
?? JAVA
字號:
package com.jeecms.auxiliary.entity.base;

import java.io.Serializable;


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

public abstract class BaseMsg  implements Serializable {

	public static String REF = "Msg";
	public static String PROP_CHECK = "check";
	public static String PROP_RECOMMEND = "recommend";
	public static String PROP_WEBSITE = "website";
	public static String PROP_CREATE_TIME = "createTime";
	public static String PROP_REPLY_TIME = "replyTime";
	public static String PROP_DISABLED = "disabled";
	public static String PROP_IP = "ip";
	public static String PROP_QQ = "qq";
	public static String PROP_CTG = "ctg";
	public static String PROP_CONFIG = "config";
	public static String PROP_PHONE = "phone";
	public static String PROP_CONTENT_MEMBER = "contentMember";
	public static String PROP_EMAIL = "email";
	public static String PROP_TITLE = "title";
	public static String PROP_MEMBER = "member";
	public static String PROP_ADMIN = "admin";
	public static String PROP_ID = "id";
	public static String PROP_CONTENT_ADMIN = "contentAdmin";


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

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

	/**
	 * Constructor for required fields
	 */
	public BaseMsg (
		java.lang.Long id,
		com.jeecms.auxiliary.entity.MsgCtg ctg,
		com.jeecms.core.entity.Website website,
		com.jeecms.auxiliary.entity.AuxiConfig config,
		java.lang.Boolean check,
		java.lang.Boolean recommend,
		java.lang.Boolean disabled) {

		this.setId(id);
		this.setCtg(ctg);
		this.setWebsite(website);
		this.setConfig(config);
		this.setCheck(check);
		this.setRecommend(recommend);
		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 title;
	private java.lang.String contentMember;
	private java.lang.String contentAdmin;
	private java.lang.String email;
	private java.lang.String phone;
	private java.lang.String qq;
	private java.lang.String ip;
	private java.util.Date createTime;
	private java.util.Date replyTime;
	private java.lang.Boolean check;
	private java.lang.Boolean recommend;
	private java.lang.Boolean disabled;

	// many to one
	private com.jeecms.auxiliary.entity.MsgCtg ctg;
	private com.jeecms.core.entity.Website website;
	private com.jeecms.auxiliary.entity.AuxiConfig config;
	private com.jeecms.core.entity.Admin admin;
	private com.jeecms.core.entity.Member member;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="native"
     *  column="MSG_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: TITLE
	 */
	public java.lang.String getTitle () {
		return title;
	}

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



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

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



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

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



	/**
	 * 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: PHONE
	 */
	public java.lang.String getPhone () {
		return phone;
	}

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



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

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



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

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



	/**
	 * 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: REPLY_TIME
	 */
	public java.util.Date getReplyTime () {
		return replyTime;
	}

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



	/**
	 * Return the value associated with the column: IS_CHECK
	 */
	public java.lang.Boolean getCheck () {
		return check;
	}

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



	/**
	 * Return the value associated with the column: IS_RECOMMEND
	 */
	public java.lang.Boolean getRecommend () {
		return recommend;
	}

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



	/**
	 * 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;
	}



	/**
	 * Return the value associated with the column: MSGCTG_ID
	 */
	public com.jeecms.auxiliary.entity.MsgCtg getCtg () {
		return ctg;
	}

	/**
	 * Set the value related to the column: MSGCTG_ID
	 * @param ctg the MSGCTG_ID value
	 */
	public void setCtg (com.jeecms.auxiliary.entity.MsgCtg ctg) {
		this.ctg = ctg;
	}



	/**
	 * Return the value associated with the column: WEBSITE_ID
	 */
	public com.jeecms.core.entity.Website getWebsite () {
		return website;
	}

	/**
	 * Set the value related to the column: WEBSITE_ID
	 * @param website the WEBSITE_ID value
	 */
	public void setWebsite (com.jeecms.core.entity.Website website) {
		this.website = website;
	}



	/**
	 * Return the value associated with the column: CONFIG_ID
	 */
	public com.jeecms.auxiliary.entity.AuxiConfig getConfig () {
		return config;
	}

	/**
	 * Set the value related to the column: CONFIG_ID
	 * @param config the CONFIG_ID value
	 */
	public void setConfig (com.jeecms.auxiliary.entity.AuxiConfig config) {
		this.config = config;
	}



	/**
	 * Return the value associated with the column: ADMIN_ID
	 */
	public com.jeecms.core.entity.Admin getAdmin () {
		return admin;
	}

	/**
	 * Set the value related to the column: ADMIN_ID
	 * @param admin the ADMIN_ID value
	 */
	public void setAdmin (com.jeecms.core.entity.Admin admin) {
		this.admin = admin;
	}



	/**
	 * Return the value associated with the column: MEMBER_ID
	 */
	public com.jeecms.core.entity.Member getMember () {
		return member;
	}

	/**
	 * Set the value related to the column: MEMBER_ID
	 * @param member the MEMBER_ID value
	 */
	public void setMember (com.jeecms.core.entity.Member member) {
		this.member = member;
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.jeecms.auxiliary.entity.Msg)) return false;
		else {
			com.jeecms.auxiliary.entity.Msg msg = (com.jeecms.auxiliary.entity.Msg) obj;
			if (null == this.getId() || null == msg.getId()) return false;
			else return (this.getId().equals(msg.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一区二区三区免费野_久草精品视频
2014亚洲片线观看视频免费| 国产女同性恋一区二区| 久久老女人爱爱| 亚洲一区二区在线观看视频| 久久91精品久久久久久秒播| 91一区二区在线| 欧美xxx久久| 亚洲成人中文在线| 97精品久久久午夜一区二区三区 | 精品国产伦理网| 国产精品久久久久久久久久久免费看| 亚洲444eee在线观看| 不卡免费追剧大全电视剧网站| 日韩美一区二区三区| 亚洲午夜三级在线| 色婷婷久久久亚洲一区二区三区 | 亚洲国产乱码最新视频| 成人免费视频国产在线观看| 精品久久人人做人人爽| 偷拍自拍另类欧美| 欧美日韩中文字幕一区二区| 亚洲色图欧美在线| 成人精品亚洲人成在线| 久久亚洲私人国产精品va媚药| 日韩精品三区四区| 欧美视频一区在线观看| 亚洲永久精品国产| 欧美日韩五月天| 亚洲网友自拍偷拍| 欧美日韩在线播放一区| 亚洲一二三四在线观看| 欧美亚洲一区三区| 婷婷国产在线综合| 日韩一二三区不卡| 麻豆国产91在线播放| 日韩欧美一级二级三级| 精品无人区卡一卡二卡三乱码免费卡| 在线一区二区视频| 天天影视网天天综合色在线播放| 欧美揉bbbbb揉bbbbb| 亚洲va欧美va天堂v国产综合| 欧美日韩午夜在线视频| 久色婷婷小香蕉久久| 欧美精品一区二区三区在线| 国产专区欧美精品| 国产精品国产成人国产三级| 日本道精品一区二区三区| 国产精品初高中害羞小美女文 | 久久综合九色综合欧美就去吻| 日韩国产欧美三级| 精品国产成人系列| 成人sese在线| 亚洲一区免费视频| 欧美一卡二卡三卡| 高潮精品一区videoshd| 亚洲女同一区二区| 欧美一区二区三区思思人| 六月丁香婷婷色狠狠久久| 欧美国产一区二区| 欧美性做爰猛烈叫床潮| 日本欧美一区二区| 国产日韩精品久久久| 一本色道**综合亚洲精品蜜桃冫| 亚洲激情在线激情| 欧美成人福利视频| caoporen国产精品视频| 亚洲精品日韩综合观看成人91| 制服丝袜亚洲网站| 国产jizzjizz一区二区| 一区二区三区欧美视频| 精品剧情v国产在线观看在线| www.色综合.com| 美女尤物国产一区| 日韩美女视频一区| 欧美成人免费网站| 欧洲激情一区二区| 精油按摩中文字幕久久| 亚洲你懂的在线视频| 精品国产免费一区二区三区四区| 一本大道久久精品懂色aⅴ| 麻豆91精品91久久久的内涵| 亚洲欧美中日韩| 日韩精品一区国产麻豆| 91福利在线免费观看| 国产一区二区三区高清播放| 五月婷婷综合网| 成人欧美一区二区三区黑人麻豆 | 91免费看片在线观看| 久久99精品久久久久久国产越南| 一区二区三区在线观看欧美| 日韩女优av电影在线观看| 国产麻豆欧美日韩一区| 日韩专区一卡二卡| 一区二区三区在线视频观看| 国产亚洲精品中文字幕| 欧美精品在欧美一区二区少妇| 波多野洁衣一区| 国产精品亚洲а∨天堂免在线| 肉色丝袜一区二区| 亚洲国产精品影院| 亚洲男女毛片无遮挡| 欧美激情综合网| 国产网站一区二区三区| 久久综合av免费| 精品国产乱子伦一区| 欧美一级xxx| 91精品麻豆日日躁夜夜躁| 欧美日韩一级片在线观看| 欧美丝袜自拍制服另类| 在线观看一区二区视频| 日本精品一区二区三区四区的功能| www.在线欧美| 色综合中文综合网| 一区二区三区av电影| 亚洲欧洲韩国日本视频| 亚洲日本在线天堂| 日韩毛片精品高清免费| 亚洲精品中文字幕在线观看| 中文字幕在线视频一区| 国产精品你懂的| 国产精品欧美久久久久无广告 | 日韩精品欧美精品| 亚洲chinese男男1069| 香蕉久久夜色精品国产使用方法| 日日欢夜夜爽一区| 精品一二三四在线| 成人做爰69片免费看网站| 国产成人自拍网| 99久久99久久久精品齐齐| 91社区在线播放| 欧美最猛黑人xxxxx猛交| 欧美日韩精品系列| 欧美成人官网二区| 欧美国产精品v| 亚洲黄色免费网站| 日本aⅴ亚洲精品中文乱码| 精品在线免费视频| 成人av小说网| 欧美日韩一二区| 久久精品男人天堂av| 亚洲色图制服丝袜| 日韩黄色在线观看| 国产成a人亚洲精品| 96av麻豆蜜桃一区二区| 欧洲视频一区二区| 日韩欧美一级二级三级| 国产亚洲欧美中文| 亚洲综合区在线| 久久成人麻豆午夜电影| 91在线观看地址| 制服丝袜在线91| 成人欧美一区二区三区白人| 秋霞成人午夜伦在线观看| 国产成人免费视频一区| 欧美天天综合网| 国产午夜精品福利| 性做久久久久久| 成人激情av网| 日韩精品一区二区在线| 亚洲黄色免费电影| 国产激情一区二区三区四区| 欧美日韩在线播放三区四区| 国产欧美综合色| 午夜精彩视频在线观看不卡| 成人av集中营| 日韩精品最新网址| 亚洲一区二区三区四区不卡| 国产成人综合视频| 日韩久久精品一区| 亚洲bdsm女犯bdsm网站| 99精品国产视频| 久久久99精品免费观看不卡| 婷婷国产v国产偷v亚洲高清| av资源站一区| 久久这里只有精品首页| 日本成人在线一区| 欧美三级电影网| 亚洲黄一区二区三区| 不卡一区在线观看| 久久人人97超碰com| 免费在线观看视频一区| 欧美性三三影院| 亚洲毛片av在线| 99re热视频精品| 国产精品免费看片| 国产成a人亚洲精| 久久免费国产精品| 精品一二三四在线| 色婷婷精品大在线视频 | 精品88久久久久88久久久| 五月天激情小说综合| 欧美日韩性生活| 偷偷要91色婷婷| 91精品国产综合久久福利软件| 一区二区三区高清| 色又黄又爽网站www久久| 亚洲视频一区在线| 91网站黄www| 亚洲一区欧美一区| 欧美丝袜第三区|