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

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

?? basecmsconfig.java

?? JEECMS是JavaEE版網站管理系統(Java Enterprise Edition Content Manage System)的簡稱。 基于java技術開發(fā)
?? JAVA
字號:
package com.jeecms.cms.entity.base;

import java.io.Serializable;


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

public abstract class BaseCmsConfig  implements Serializable {

	public static String REF = "CmsConfig";
	public static String PROP_CHECK_COUNT = "checkCount";
	public static String PROP_WEBSITE = "website";
	public static String PROP_COMMENT_NEED_CHECK = "commentNeedCheck";
	public static String PROP_REGISTER_RULE = "registerRule";
	public static String PROP_DEF_DOWNLOAD_MODEL = "defDownloadModel";
	public static String PROP_AUTO_REGISTER = "autoRegister";
	public static String PROP_DEFAULT_SYSTEM = "defaultSystem";
	public static String PROP_REGISTER_STATUS = "registerStatus";
	public static String PROP_COMMENT_NEED_LOGIN = "commentNeedLogin";
	public static String PROP_CACHE_CHANNEL = "cacheChannel";
	public static String PROP_MEMBER_GROUP = "memberGroup";
	public static String PROP_COMMENT_SORT = "commentSort";
	public static String PROP_COMMENT_MAX_LENGTH = "commentMaxLength";
	public static String PROP_CACHE_HOMEPAGE = "cacheHomepage";
	public static String PROP_ID = "id";
	public static String PROP_DEF_ARTICLE_MODEL = "defArticleModel";


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

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

	/**
	 * Constructor for required fields
	 */
	public BaseCmsConfig (
		java.lang.Long id,
		java.lang.Integer checkCount,
		java.lang.String defaultSystem,
		java.lang.Boolean commentNeedCheck,
		java.lang.Boolean commentNeedLogin,
		java.lang.Boolean commentSort,
		java.lang.Integer commentMaxLength,
		java.lang.Boolean cacheHomepage,
		java.lang.Boolean cacheChannel) {

		this.setId(id);
		this.setCheckCount(checkCount);
		this.setDefaultSystem(defaultSystem);
		this.setCommentNeedCheck(commentNeedCheck);
		this.setCommentNeedLogin(commentNeedLogin);
		this.setCommentSort(commentSort);
		this.setCommentMaxLength(commentMaxLength);
		this.setCacheHomepage(cacheHomepage);
		this.setCacheChannel(cacheChannel);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

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

	// fields
	private java.lang.Integer checkCount;
	private java.lang.String defaultSystem;
	private java.lang.Boolean commentNeedCheck;
	private java.lang.Boolean commentNeedLogin;
	private java.lang.Boolean commentSort;
	private java.lang.Integer commentMaxLength;
	private java.lang.Integer registerStatus;
	private java.lang.Boolean autoRegister;
	private java.lang.String registerRule;
	private java.lang.Boolean cacheHomepage;
	private java.lang.Boolean cacheChannel;

	// one to one
	private com.jeecms.core.entity.Website website;

	// many to one
	private com.jeecms.cms.entity.ChnlModel defArticleModel;
	private com.jeecms.cms.entity.ChnlModel defDownloadModel;
	private com.jeecms.cms.entity.CmsMemberGroup memberGroup;



	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="foreign"
     *  column="CONFIG_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: CHECK_COUNT
	 */
	public java.lang.Integer getCheckCount () {
		return checkCount;
	}

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



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

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



	/**
	 * Return the value associated with the column: COMMENT_NEED_CHECK
	 */
	public java.lang.Boolean getCommentNeedCheck () {
		return commentNeedCheck;
	}

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



	/**
	 * Return the value associated with the column: COMMENT_NEED_LOGIN
	 */
	public java.lang.Boolean getCommentNeedLogin () {
		return commentNeedLogin;
	}

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



	/**
	 * Return the value associated with the column: COMMENT_SORT
	 */
	public java.lang.Boolean getCommentSort () {
		return commentSort;
	}

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



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

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



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

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



	/**
	 * Return the value associated with the column: AUTO_REGISTER
	 */
	public java.lang.Boolean getAutoRegister () {
		return autoRegister;
	}

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



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

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



	/**
	 * Return the value associated with the column: IS_CACHE_HOMEPAGE
	 */
	public java.lang.Boolean getCacheHomepage () {
		return cacheHomepage;
	}

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



	/**
	 * Return the value associated with the column: IS_CACHE_CHANNEL
	 */
	public java.lang.Boolean getCacheChannel () {
		return cacheChannel;
	}

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



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

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



	/**
	 * Return the value associated with the column: DEF_ARTICLE_MODEL
	 */
	public com.jeecms.cms.entity.ChnlModel getDefArticleModel () {
		return defArticleModel;
	}

	/**
	 * Set the value related to the column: DEF_ARTICLE_MODEL
	 * @param defArticleModel the DEF_ARTICLE_MODEL value
	 */
	public void setDefArticleModel (com.jeecms.cms.entity.ChnlModel defArticleModel) {
		this.defArticleModel = defArticleModel;
	}



	/**
	 * Return the value associated with the column: DEF_DOWNLOAD_MODEL
	 */
	public com.jeecms.cms.entity.ChnlModel getDefDownloadModel () {
		return defDownloadModel;
	}

	/**
	 * Set the value related to the column: DEF_DOWNLOAD_MODEL
	 * @param defDownloadModel the DEF_DOWNLOAD_MODEL value
	 */
	public void setDefDownloadModel (com.jeecms.cms.entity.ChnlModel defDownloadModel) {
		this.defDownloadModel = defDownloadModel;
	}



	/**
	 * Return the value associated with the column: REGISTER_GROUP
	 */
	public com.jeecms.cms.entity.CmsMemberGroup getMemberGroup () {
		return memberGroup;
	}

	/**
	 * Set the value related to the column: REGISTER_GROUP
	 * @param memberGroup the REGISTER_GROUP value
	 */
	public void setMemberGroup (com.jeecms.cms.entity.CmsMemberGroup memberGroup) {
		this.memberGroup = memberGroup;
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.jeecms.cms.entity.CmsConfig)) return false;
		else {
			com.jeecms.cms.entity.CmsConfig cmsConfig = (com.jeecms.cms.entity.CmsConfig) obj;
			if (null == this.getId() || null == cmsConfig.getId()) return false;
			else return (this.getId().equals(cmsConfig.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一区二区三区免费野_久草精品视频
欧美日韩精品二区第二页| 欧美精品一区在线观看| 欧美喷潮久久久xxxxx| 色综合久久六月婷婷中文字幕| 日本韩国一区二区| 日韩一区国产二区欧美三区| 国产日韩精品一区二区浪潮av | 欧美精品一区二区高清在线观看 | 专区另类欧美日韩| 亚洲国产裸拍裸体视频在线观看乱了| 偷拍亚洲欧洲综合| 成人免费观看av| 欧美高清一级片在线| 欧美激情一区二区三区不卡| 亚洲午夜电影网| 精品一区二区国语对白| 91亚洲国产成人精品一区二区三| 欧美二区乱c少妇| 国产精品第13页| 全国精品久久少妇| 色综合久久综合网| 日韩一级片网站| 亚洲精品一卡二卡| 国产美女久久久久| 欧美一级在线视频| 亚洲尤物视频在线| 色中色一区二区| 中文字幕一区av| 99国产精品久| 亚洲视频在线一区观看| 成人国产亚洲欧美成人综合网| 久久久久久一二三区| 日韩精品欧美成人高清一区二区| 欧美性猛片aaaaaaa做受| 亚洲精品免费播放| 色噜噜狠狠色综合中国| 亚洲人成网站色在线观看| 97久久精品人人做人人爽50路 | 国产盗摄视频一区二区三区| 欧美r级电影在线观看| 韩国成人精品a∨在线观看| 日韩精品一区二区三区三区免费 | 91精品国产一区二区| 日韩不卡一二三区| 日韩视频免费直播| 久久激情综合网| 国产日韩亚洲欧美综合| 懂色av一区二区夜夜嗨| 国产精品国产a| 91成人网在线| 天堂一区二区在线| 日韩视频在线观看一区二区| 国产乱一区二区| 国产精品电影院| 欧美少妇一区二区| 免费在线欧美视频| 久久久久久久久久久久久女国产乱| 国产精品一二二区| 亚洲精品成人a在线观看| 欧美视频精品在线| 激情久久久久久久久久久久久久久久 | 欧美一区二区免费| 国产一区91精品张津瑜| 国产精品女主播av| 欧美日韩精品电影| 国产一区二区女| 亚洲伦理在线免费看| 欧美精品1区2区| 成人a级免费电影| 日韩激情一二三区| 国产精品每日更新| 欧美日韩高清一区二区三区| 国产精品一二二区| 五月激情综合色| 国产精品嫩草影院av蜜臀| 欧美日韩国产免费一区二区 | 日本不卡免费在线视频| 日本一区二区免费在线| 欧美人xxxx| 99久久久久免费精品国产| 日韩电影在线观看一区| 亚洲国产精品99久久久久久久久 | 国产欧美视频在线观看| 欧美日韩免费在线视频| 成人精品在线视频观看| 日韩1区2区3区| 亚洲另类在线制服丝袜| 国产日韩欧美不卡| 欧美一区二区二区| 欧美在线视频日韩| 91蜜桃网址入口| 国产成人综合亚洲网站| 日产国产高清一区二区三区| 亚洲老司机在线| 国产精品久久久久aaaa樱花| 久久蜜桃一区二区| 欧美一级在线观看| 欧美日韩免费在线视频| 91免费小视频| 99久久精品国产精品久久| 狠狠久久亚洲欧美| 日韩av在线发布| 亚洲成av人影院| 一区二区三区国产精品| 中文字幕一区二区三区四区不卡| 26uuu久久综合| 日韩精品一区二区三区在线播放| 91成人在线精品| 欧美性猛交一区二区三区精品| 色综合一个色综合亚洲| www.色综合.com| www..com久久爱| 99视频精品在线| 91在线精品一区二区| 成人av中文字幕| 91网址在线看| 91精品办公室少妇高潮对白| 色欧美乱欧美15图片| 91香蕉视频在线| 91久久精品一区二区三区| 在线观看日韩av先锋影音电影院| 91免费看`日韩一区二区| 色婷婷综合久久久中文字幕| 94-欧美-setu| 欧美做爰猛烈大尺度电影无法无天| 欧美专区亚洲专区| 欧美美女喷水视频| 欧美成人伊人久久综合网| 精品久久久久久最新网址| 欧美mv日韩mv亚洲| 亚洲国产精品黑人久久久| 亚洲欧美日韩一区二区三区在线观看| 国产精品成人午夜| 亚洲精品第1页| 最近日韩中文字幕| 美女网站色91| 亚洲天堂2016| 日本一区二区不卡视频| 久久不见久久见中文字幕免费| 一区二区三区四区亚洲| 成人av电影在线观看| 国产麻豆精品久久一二三| 青青草97国产精品免费观看无弹窗版| 精品一区二区免费| 亚洲成在人线免费| 欧美a级一区二区| 夫妻av一区二区| 一区二区三区在线视频观看 | 久久综合狠狠综合久久综合88 | 精品裸体舞一区二区三区| 国产日韩高清在线| 亚洲第一激情av| 国产精品一区二区久久精品爱涩| 99久久久精品| 日韩三级免费观看| 国产精品久久久99| 奇米影视一区二区三区小说| 国产999精品久久| 在线不卡免费av| 国产精品久久久久久久久免费相片| 午夜a成v人精品| www.亚洲国产| 亚洲精品一线二线三线无人区| 综合欧美一区二区三区| 看片网站欧美日韩| 色94色欧美sute亚洲线路一ni | 欧美电影在哪看比较好| 久久青草国产手机看片福利盒子| 一区二区三区欧美久久| 国产主播一区二区三区| 欧美老年两性高潮| 日韩理论片网站| 国产一区二区三区免费在线观看| 91一区二区在线| 国产三级欧美三级日产三级99| 亚洲高清不卡在线| www.亚洲激情.com| 久久久99精品免费观看不卡| 视频精品一区二区| 色婷婷国产精品| 中文字幕亚洲区| 国产91在线看| 久久免费电影网| 久久国产免费看| 制服丝袜一区二区三区| 亚洲香蕉伊在人在线观| bt7086福利一区国产| 久久色在线视频| 激情综合五月天| 欧美一二三四在线| 日韩在线一区二区| 欧洲视频一区二区| 亚洲综合久久久| 色狠狠一区二区三区香蕉| 亚洲男人的天堂在线aⅴ视频| 国产乱人伦精品一区二区在线观看| 欧美成人r级一区二区三区| 日本免费新一区视频| 6080午夜不卡| 全国精品久久少妇|