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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? basemsg.java

?? JEECMS是JavaEE版網(wǎng)站管理系統(tǒng)(Java Enterprise Edition Content Manage System)的簡(jiǎn)稱。 基于java技術(shù)開(kāi)發(fā)
?? JAVA
字號(hào):
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();
	}


}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成av人片一区二区| 一本到一区二区三区| 激情综合一区二区三区| 日韩精品亚洲专区| 蜜桃久久精品一区二区| 免费成人深夜小野草| 美女一区二区三区| 激情五月婷婷综合网| 国产成人啪午夜精品网站男同| 国产一区二区三区日韩| 高清在线成人网| www.日韩大片| 欧洲中文字幕精品| 51精品秘密在线观看| 日韩欧美国产综合一区 | 在线视频国内自拍亚洲视频| 在线看不卡av| 制服丝袜在线91| 日韩视频不卡中文| 久久久欧美精品sm网站| 国产精品乱码一区二区三区软件| 中文字幕一区二区5566日韩| 一区二区在线观看视频在线观看| 亚洲午夜免费电影| 欧美aaaaa成人免费观看视频| 精品一区二区三区在线播放视频| 国产成人综合网| 一本色道久久综合亚洲91| 欧美肥大bbwbbw高潮| 久久久久久**毛片大全| 成人免费在线视频| 午夜精品久久久久久久久久| 久久成人18免费观看| 成人精品视频一区二区三区尤物| 91免费版pro下载短视频| 在线观看91av| 国产精品久久久久一区二区三区 | 国产亚洲欧美色| 亚洲桃色在线一区| 天堂午夜影视日韩欧美一区二区| 国产一区啦啦啦在线观看| 不卡av在线免费观看| 欧美日韩高清影院| 欧美国产日韩a欧美在线观看| 亚洲精品日日夜夜| 免费成人av资源网| 91网站在线播放| 欧美一级高清大全免费观看| 中文字幕不卡在线观看| 午夜视频在线观看一区| 国产成人精品影院| 69堂精品视频| 国产精品电影一区二区三区| 亚洲3atv精品一区二区三区| 国产激情91久久精品导航| 欧美精选一区二区| 中文字幕一区av| 久久草av在线| 欧美主播一区二区三区| 中文字幕免费不卡| 日本va欧美va精品发布| 色综合中文综合网| 色婷婷综合久色| 精品国产免费久久| 亚洲一区免费在线观看| 国产91在线|亚洲| 3d动漫精品啪啪一区二区竹菊| 国产精品久久久久三级| 久久 天天综合| 欧美日韩一区二区三区在线| 国产精品久久影院| 精品无人码麻豆乱码1区2区| 日本道精品一区二区三区| 国产婷婷色一区二区三区在线| 日韩国产一区二| 在线视频综合导航| 国产精品久久三| 国产成人在线看| 日韩免费看的电影| 日本人妖一区二区| 欧美系列日韩一区| 亚洲激情男女视频| 9久草视频在线视频精品| 国产欧美日韩另类视频免费观看| 久久av老司机精品网站导航| 欧美日韩精品福利| 一区二区三国产精华液| 91色视频在线| 中文字幕精品一区| 丰满少妇久久久久久久| 久久综合久久综合亚洲| 久久疯狂做爰流白浆xx| 日韩网站在线看片你懂的| 日韩精品视频网| 51久久夜色精品国产麻豆| 爽好久久久欧美精品| 欧美日韩在线电影| 亚洲成人一二三| 欧美日韩一区二区三区不卡| 1000部国产精品成人观看| 成人高清视频在线观看| 欧美韩国日本不卡| 丁香五精品蜜臀久久久久99网站| 久久精品亚洲一区二区三区浴池| 激情av综合网| 国产农村妇女毛片精品久久麻豆| 国产精品系列在线观看| 中文字幕第一区二区| 91丝袜美腿高跟国产极品老师 | 大胆亚洲人体视频| 国产精品久久午夜| 色狠狠av一区二区三区| 亚洲国产一区视频| 91精品国产综合久久婷婷香蕉| 久久精品国产精品亚洲红杏| 欧美mv日韩mv亚洲| 国产一区二区福利| 中文一区在线播放| 色综合天天综合| 亚洲第一av色| 日韩欧美在线综合网| 国产一区二区三区四区五区美女 | 国产成人亚洲综合a∨猫咪| 亚洲国产高清在线观看视频| av动漫一区二区| 亚洲一区二区三区国产| 51精品国自产在线| 国产精品资源网站| 亚洲免费观看高清完整版在线观看熊| 色综合久久久久综合体| 日韩精品一二三四| 国产午夜一区二区三区| 日本丰满少妇一区二区三区| 男人的天堂亚洲一区| 中文字幕精品三区| 欧美色精品在线视频| 麻豆视频观看网址久久| 国产女人18水真多18精品一级做| 在线免费不卡电影| 久久综合综合久久综合| 国产精品伦理一区二区| 欧美色涩在线第一页| 国产乱码精品1区2区3区| 亚洲欧美二区三区| 日韩三级高清在线| 99精品国产91久久久久久| 午夜欧美一区二区三区在线播放| 精品少妇一区二区三区视频免付费 | 亚洲精品一区二区在线观看| 不卡大黄网站免费看| 免费视频最近日韩| 国产精品另类一区| 日韩一区二区在线播放| 91啪亚洲精品| 精品一区二区久久| 亚洲黄色av一区| 久久午夜羞羞影院免费观看| 欧美丝袜第三区| 成人精品免费看| 免费高清不卡av| 一区二区成人在线| 欧美国产精品中文字幕| 欧美色综合网站| 成人免费视频视频在线观看免费 | 欧美日韩亚洲综合| 99久久综合国产精品| 久久精品二区亚洲w码| 一区二区三区蜜桃网| 久久精品一区二区| 日韩一区二区三免费高清| 色激情天天射综合网| 成人性生交大片免费| 韩国av一区二区| 丝袜国产日韩另类美女| 亚洲人精品午夜| 国产精品污www在线观看| 欧美精品一区二区三区很污很色的| 欧美性一级生活| www.成人网.com| 国产精品18久久久久久vr| 免费成人美女在线观看| 香蕉乱码成人久久天堂爱免费| 中文字幕在线播放不卡一区| 久久久久久久久久看片| 日韩视频国产视频| 欧美高清www午色夜在线视频| 在线观看不卡一区| 色欲综合视频天天天| 成人99免费视频| 成人午夜又粗又硬又大| 国产一区二区三区久久久| 蜜臀精品久久久久久蜜臀| 天堂一区二区在线免费观看| 亚洲成人一二三| 亚洲第一成年网| 亚洲成人av中文| 亚洲18影院在线观看| 亚洲国产一区二区视频| 亚洲一线二线三线久久久| 亚洲欧美另类图片小说|