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

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

?? basemsg.java

?? JAVA做的CMS源碼
?? 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一区二区三区免费野_久草精品视频
亚洲影院久久精品| 成人爽a毛片一区二区免费| 久久精品国产久精国产| 成人h动漫精品| 日韩欧美第一区| 亚洲综合久久久久| 成人动漫一区二区三区| 精品久久久网站| 婷婷综合另类小说色区| 成人黄色av网站在线| 欧美一级理论性理论a| 亚洲综合一二三区| jizz一区二区| 日本一区二区三区高清不卡| 蜜臀国产一区二区三区在线播放| 欧美中文字幕亚洲一区二区va在线| 中文字幕免费一区| 国产伦理精品不卡| 精品国产一区二区三区不卡 | 亚洲免费毛片网站| 国产99久久久国产精品| 欧美成人三级在线| 在线视频一区二区三| 国产精品久久久久影视| 国产一区二区电影| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 99久久精品一区二区| 国产欧美在线观看一区| 国产成人在线视频免费播放| 精品国产人成亚洲区| 青青草精品视频| 欧美一区二区三区色| 日韩激情中文字幕| 在线播放欧美女士性生活| 午夜精品久久一牛影视| 欧美日韩日日夜夜| 天天做天天摸天天爽国产一区| 欧美性大战久久久久久久| 亚洲一级不卡视频| 欧美日韩高清影院| 免费精品视频最新在线| 欧美zozo另类异族| 国产.欧美.日韩| 中文字幕制服丝袜成人av| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 91精品国产一区二区三区| 蜜臀av一级做a爰片久久| 精品国精品国产| 高清不卡在线观看| 亚洲欧美日韩电影| 欧美美女视频在线观看| 美女国产一区二区| 国产精品情趣视频| 在线观看不卡视频| 日韩二区三区四区| 久久精品夜色噜噜亚洲a∨ | 麻豆国产精品一区二区三区| 久久婷婷综合激情| 91在线你懂得| 日韩黄色在线观看| 欧美国产综合色视频| 日本韩国精品在线| 开心九九激情九九欧美日韩精美视频电影| 26uuu国产在线精品一区二区| 成人福利电影精品一区二区在线观看| 亚洲女同ⅹxx女同tv| 日韩欧美在线观看一区二区三区| 国产高清在线精品| 亚洲国产成人av网| 久久丝袜美腿综合| 色老汉av一区二区三区| 精品在线一区二区| 国产成人av电影在线播放| 一区二区三区不卡在线观看| 日韩欧美在线综合网| 色国产综合视频| 国产在线播放一区| 亚洲va中文字幕| 国产精品不卡一区| 欧美白人最猛性xxxxx69交| 色哟哟国产精品免费观看| 极品少妇一区二区三区精品视频| 自拍偷拍国产精品| 欧美精品一区二区久久婷婷| 欧美中文一区二区三区| 国产超碰在线一区| 美女性感视频久久| 亚洲18色成人| 亚洲三级在线播放| 国产日产欧产精品推荐色| 欧美一区二区在线看| 欧美在线三级电影| 99精品国产91久久久久久| 国产乱码精品一区二区三| 性欧美疯狂xxxxbbbb| 亚洲免费观看视频| 国产精品免费av| 国产日韩欧美a| 精品成人佐山爱一区二区| 欧美一区二区性放荡片| 欧美性高清videossexo| 色综合av在线| 91一区二区在线| 99精品视频中文字幕| 国产馆精品极品| 国产福利一区二区| 国产又黄又大久久| 国产一区二区三区四区五区入口| 日韩高清不卡一区二区三区| 亚洲国产一区二区视频| 一区二区三区日韩欧美精品| 中文字幕一区二区视频| 国产精品午夜春色av| 日本一区二区成人在线| 国产日韩欧美制服另类| 欧美激情资源网| 国产精品久久久久毛片软件| 国产精品久久久久天堂| 国产精品久久久久aaaa| 自拍偷拍欧美激情| 伊人开心综合网| 午夜私人影院久久久久| 日本在线不卡一区| 美国一区二区三区在线播放| 精品一区二区日韩| 国产成人在线视频网站| 99久久精品免费| 在线精品亚洲一区二区不卡| 欧美日韩一区高清| 91精品国产综合久久蜜臀| 日韩欧美你懂的| 久久久不卡网国产精品一区| 国产一区二区电影| 99re热视频精品| 欧美日韩在线免费视频| 欧美一区二区三区白人| 国产亚洲精品免费| 一区二区三区中文免费| 图片区小说区国产精品视频| 激情成人午夜视频| 99麻豆久久久国产精品免费| 欧美这里有精品| 日韩欧美专区在线| 欧美国产日韩亚洲一区| 一区二区三区精品视频| 男人的天堂亚洲一区| 国产91在线|亚洲| 欧美色图激情小说| 久久久久一区二区三区四区| 亚洲免费在线视频一区 二区| 日韩精品高清不卡| 成人性生交大片免费| 欧美三级电影在线观看| 精品第一国产综合精品aⅴ| 亚洲欧美一区二区三区久本道91| 青青草视频一区| 99久久综合国产精品| 日韩一区二区三区在线| 国产精品毛片久久久久久| 日韩国产高清在线| 不卡一区二区三区四区| 日韩欧美一区二区免费| 亚洲视频一二三| 精品亚洲porn| 欧美视频你懂的| 国产精品久久久久久久午夜片| 首页国产欧美日韩丝袜| 成人app下载| 日韩欧美一卡二卡| 亚洲精品免费电影| 国产91丝袜在线播放九色| 5858s免费视频成人| 亚洲免费观看高清完整版在线观看| 国精产品一区一区三区mba桃花| 色欧美日韩亚洲| 国产精品午夜在线观看| 国内精品在线播放| 欧美一级艳片视频免费观看| 亚洲欧美区自拍先锋| 成人免费高清视频在线观看| 精品美女一区二区三区| 丝袜美腿亚洲一区二区图片| 91麻豆国产精品久久| 国产精品私人影院| 国产精品99久久不卡二区| 日韩久久久久久| 日韩中文字幕不卡| 欧美视频自拍偷拍| 一区二区不卡在线播放| 色综合一区二区| 中文字幕字幕中文在线中不卡视频| 国产乱人伦精品一区二区在线观看| 欧美一区二区在线观看| 日本午夜一本久久久综合| 欧美日韩在线综合| 五月天网站亚洲| 91精品欧美久久久久久动漫| 香蕉av福利精品导航| 91精品国产综合久久福利软件 | 日韩精品一二三四|