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

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

?? basevotetopic.java

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

import java.io.Serializable;


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

public abstract class BaseVoteTopic  implements Serializable {

	public static String REF = "VoteTopic";
	public static String PROP_MULTI_SELECT = "multiSelect";
	public static String PROP_RESTRICT_COOKIE = "restrictCookie";
	public static String PROP_WEBSITE = "website";
	public static String PROP_DISABLED = "disabled";
	public static String PROP_RESTRICT_MEMBER = "restrictMember";
	public static String PROP_RESTRICT_IP = "restrictIp";
	public static String PROP_TOTAL_COUNT = "totalCount";
	public static String PROP_CURRENT = "current";
	public static String PROP_REPEATE_HOUR = "repeateHour";
	public static String PROP_END_TIME = "endTime";
	public static String PROP_START_TIME = "startTime";
	public static String PROP_DESCRIPTION = "description";
	public static String PROP_TITLE = "title";
	public static String PROP_ID = "id";


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

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

	/**
	 * Constructor for required fields
	 */
	public BaseVoteTopic (
		java.lang.Long id,
		com.jeecms.core.entity.Website website,
		java.lang.Boolean restrictMember,
		java.lang.Boolean restrictIp,
		java.lang.Boolean restrictCookie,
		java.lang.Boolean disabled,
		java.lang.Boolean current) {

		this.setId(id);
		this.setWebsite(website);
		this.setRestrictMember(restrictMember);
		this.setRestrictIp(restrictIp);
		this.setRestrictCookie(restrictCookie);
		this.setDisabled(disabled);
		this.setCurrent(current);
		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 description;
	private java.lang.Long totalCount;
	private java.util.Date startTime;
	private java.util.Date endTime;
	private java.lang.Integer repeateHour;
	private java.lang.Integer multiSelect;
	private java.lang.Boolean restrictMember;
	private java.lang.Boolean restrictIp;
	private java.lang.Boolean restrictCookie;
	private java.lang.Boolean disabled;
	private java.lang.Boolean current;

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

	// collections
	private java.util.Set<com.jeecms.auxiliary.entity.VoteRecord> records;
	private java.util.Set<com.jeecms.auxiliary.entity.VoteItem> items;



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

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



	/**
	 * Return the value associated with the column: TOTAL_COUNT
	 */
	public java.lang.Long getTotalCount () {
		return totalCount;
	}

	/**
	 * Set the value related to the column: TOTAL_COUNT
	 * @param totalCount the TOTAL_COUNT value
	 */
	public void setTotalCount (java.lang.Long totalCount) {
		this.totalCount = totalCount;
	}



	/**
	 * Return the value associated with the column: START_TIME
	 */
	public java.util.Date getStartTime () {
		return startTime;
	}

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



	/**
	 * Return the value associated with the column: END_TIME
	 */
	public java.util.Date getEndTime () {
		return endTime;
	}

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



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

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



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

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



	/**
	 * Return the value associated with the column: IS_RESTRICT_MEMBER
	 */
	public java.lang.Boolean getRestrictMember () {
		return restrictMember;
	}

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



	/**
	 * Return the value associated with the column: IS_RESTRICT_IP
	 */
	public java.lang.Boolean getRestrictIp () {
		return restrictIp;
	}

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



	/**
	 * Return the value associated with the column: IS_RESTRICT_COOKIE
	 */
	public java.lang.Boolean getRestrictCookie () {
		return restrictCookie;
	}

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



	/**
	 * 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: IS_CURRENT
	 */
	public java.lang.Boolean getCurrent () {
		return current;
	}

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



	/**
	 * 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: records
	 */
	public java.util.Set<com.jeecms.auxiliary.entity.VoteRecord> getRecords () {
		return records;
	}

	/**
	 * Set the value related to the column: records
	 * @param records the records value
	 */
	public void setRecords (java.util.Set<com.jeecms.auxiliary.entity.VoteRecord> records) {
		this.records = records;
	}



	/**
	 * Return the value associated with the column: items
	 */
	public java.util.Set<com.jeecms.auxiliary.entity.VoteItem> getItems () {
		return items;
	}

	/**
	 * Set the value related to the column: items
	 * @param items the items value
	 */
	public void setItems (java.util.Set<com.jeecms.auxiliary.entity.VoteItem> items) {
		this.items = items;
	}




	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof com.jeecms.auxiliary.entity.VoteTopic)) return false;
		else {
			com.jeecms.auxiliary.entity.VoteTopic voteTopic = (com.jeecms.auxiliary.entity.VoteTopic) obj;
			if (null == this.getId() || null == voteTopic.getId()) return false;
			else return (this.getId().equals(voteTopic.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一区二区三区免费野_久草精品视频
欧美大片顶级少妇| 久国产精品韩国三级视频| 亚洲18女电影在线观看| 国产一区二区三区在线看麻豆| 一本色道久久综合亚洲91| 91精品午夜视频| 亚洲精品国产高清久久伦理二区| 精品亚洲免费视频| 欧美日韩一区二区三区免费看| 国产欧美一区二区三区在线看蜜臀| 丝袜美腿亚洲一区二区图片| 色综合天天综合网天天狠天天| 久久影院视频免费| 免费av网站大全久久| 一本一道久久a久久精品| 欧美国产一区在线| 九九热在线视频观看这里只有精品 | 亚洲欧美日本韩国| 国产一区二区成人久久免费影院| 欧美日韩在线观看一区二区| 国产精品狼人久久影院观看方式| 麻豆精品国产传媒mv男同| 欧美日韩精品免费观看视频| 亚洲男同1069视频| av高清不卡在线| 久久久久久99久久久精品网站| 奇米四色…亚洲| 91精品国产日韩91久久久久久| 亚洲愉拍自拍另类高清精品| 在线亚洲免费视频| 亚洲人午夜精品天堂一二香蕉| 99精品国产99久久久久久白柏| 欧美国产激情二区三区| 成人av在线网| 亚洲天堂2014| 在线观看网站黄不卡| 一区二区三区四区乱视频| 色综合亚洲欧洲| 亚洲国产综合人成综合网站| 欧美日韩一区二区三区高清| 视频一区国产视频| 6080午夜不卡| 久99久精品视频免费观看| 久久综合久久综合久久综合| 国产盗摄一区二区三区| 中文字幕亚洲精品在线观看| 91成人网在线| 亚洲成人激情综合网| 欧美一卡在线观看| 黄色小说综合网站| 国产精品入口麻豆原神| 91丨九色丨国产丨porny| 亚洲另类一区二区| 欧美男男青年gay1069videost| 乱一区二区av| 国产精品婷婷午夜在线观看| 色菇凉天天综合网| 麻豆成人av在线| 中文字幕第一区综合| 91黄色激情网站| 麻豆精品在线视频| 亚洲国产精品成人综合色在线婷婷| 91免费在线视频观看| 五月天亚洲精品| 久久久一区二区三区捆绑**| www.日韩精品| 天天色综合成人网| 日本一区二区三区在线观看| 在线观看成人小视频| 国模一区二区三区白浆| 亚洲精品亚洲人成人网在线播放| 日韩美女一区二区三区| www.日本不卡| 蜜臂av日日欢夜夜爽一区| 欧美国产丝袜视频| 欧美日韩国产不卡| 国产成人无遮挡在线视频| 性做久久久久久免费观看| 国产欧美日本一区视频| 91麻豆精品国产自产在线观看一区| 国产成人av福利| 日韩不卡一二三区| 亚洲欧美日本在线| 国产亚洲欧洲997久久综合| 欧美日韩电影在线| av激情成人网| 国产一区在线观看麻豆| 日一区二区三区| 1区2区3区国产精品| 精品福利二区三区| 欧美剧情片在线观看| 色综合久久久久| 成人天堂资源www在线| 久久99最新地址| 日日骚欧美日韩| 一区二区三区日韩欧美| 中文一区二区在线观看| 亚洲精品在线三区| 91精品欧美久久久久久动漫 | 欧美在线观看视频一区二区 | 欧美韩国一区二区| 精品国产亚洲在线| 欧美一区二区成人6969| 欧美日韩www| 欧美日韩中文精品| 一本一道久久a久久精品综合蜜臀| 高清不卡在线观看| 国产麻豆精品在线观看| 国产真实乱偷精品视频免| 美脚の诱脚舐め脚责91| 美女视频黄a大片欧美| 天堂资源在线中文精品| 亚洲综合视频在线| 亚洲风情在线资源站| 亚洲国产va精品久久久不卡综合| 亚洲男同1069视频| 亚洲精品中文在线观看| 洋洋av久久久久久久一区| 亚洲欧美电影一区二区| 亚洲永久免费av| 亚洲大片免费看| 日本伊人午夜精品| 九一九一国产精品| 国产精品一区二区免费不卡| 国产成人一级电影| 91香蕉视频在线| 在线观看www91| 欧美精品第1页| 欧美精品一区二区三区很污很色的| 精品国产乱码久久久久久老虎 | 欧美高清你懂得| 日韩一卡二卡三卡四卡| 亚洲精品一区二区三区蜜桃下载 | 成人免费毛片嘿嘿连载视频| 国产99久久精品| 99国产精品久久久久久久久久| 色香色香欲天天天影视综合网| 一本大道久久a久久综合婷婷| 欧美性猛交一区二区三区精品| 欧美日韩不卡一区| 久久久综合视频| 亚洲欧美色一区| 免费成人av资源网| av爱爱亚洲一区| 在线电影院国产精品| 久久只精品国产| 一区二区免费在线| 九九精品一区二区| 99麻豆久久久国产精品免费| 欧美欧美午夜aⅴ在线观看| 精品999在线播放| 亚洲夂夂婷婷色拍ww47| 久久精品国产成人一区二区三区 | 欧美偷拍一区二区| 欧美成人aa大片| 亚洲黄一区二区三区| 蜜臀av一区二区在线免费观看| 国产v日产∨综合v精品视频| 欧美日韩久久久一区| 国产喷白浆一区二区三区| 亚洲午夜在线电影| 高清不卡在线观看av| 91精品蜜臀在线一区尤物| 国产精品狼人久久影院观看方式| 青娱乐精品在线视频| 一本色道久久加勒比精品| 久久女同互慰一区二区三区| 午夜久久久久久电影| 成人h精品动漫一区二区三区| 欧美一级夜夜爽| 亚洲第一精品在线| 91免费版pro下载短视频| 国产亚洲精品bt天堂精选| 美女一区二区视频| 欧美日韩成人一区二区| 亚洲欧美另类久久久精品| 国产乱理伦片在线观看夜一区| 欧美妇女性影城| 亚洲欧美欧美一区二区三区| 成人免费视频一区| 国产亚洲一区二区三区四区| 欧美a级理论片| 欧美日韩成人综合| 亚洲在线免费播放| 在线欧美日韩精品| 亚洲精品一卡二卡| 色婷婷综合久色| 亚洲同性gay激情无套| eeuss国产一区二区三区| 久久精品一二三| 国产成人午夜精品影院观看视频| 26uuu国产在线精品一区二区| 免费看欧美美女黄的网站| 在线综合视频播放| 日韩avvvv在线播放| 欧美疯狂性受xxxxx喷水图片| 午夜影院久久久| 91麻豆精品国产91久久久使用方法| 亚洲一区免费在线观看| 欧美亚洲丝袜传媒另类|