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

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

?? basevotetopic.java

?? JAVA做的CMS源碼
?? 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一区二区三区免费野_久草精品视频
国产在线视频精品一区| 欧美一区二区日韩| 国产资源在线一区| 三级欧美韩日大片在线看| 一区二区三区成人| 亚洲成人动漫精品| 亚洲国产成人高清精品| 视频一区在线播放| 激情六月婷婷久久| 成人综合婷婷国产精品久久| 北岛玲一区二区三区四区| 成人午夜又粗又硬又大| 99久久婷婷国产综合精品电影| 99精品黄色片免费大全| 91官网在线免费观看| 欧美日韩一级二级| 26uuu亚洲婷婷狠狠天堂| 久久精品一二三| 亚洲欧洲日本在线| 亚洲一区二区三区中文字幕| 午夜视频一区在线观看| 国产伦精品一区二区三区在线观看 | 亚洲啪啪综合av一区二区三区| 日韩久久一区二区| 日韩国产欧美在线播放| 久久99久久久久| 成人av电影在线| 欧美日韩在线一区二区| 久久中文字幕电影| 亚洲自拍与偷拍| 国内国产精品久久| 欧美在线小视频| 2023国产一二三区日本精品2022| 国产精品进线69影院| 婷婷成人激情在线网| 国产麻豆一精品一av一免费| 色美美综合视频| 国产亚洲精品资源在线26u| 日本午夜精品视频在线观看| 国内成+人亚洲+欧美+综合在线| 北条麻妃一区二区三区| 欧美一区国产二区| 一区二区三区美女| 懂色中文一区二区在线播放| 在线一区二区三区| 国产区在线观看成人精品| 亚洲国产精品久久久久婷婷884| 国产盗摄精品一区二区三区在线| 欧美精品 日韩| 中文字幕亚洲一区二区va在线| 日本亚洲一区二区| 欧美日韩色一区| 亚洲美女屁股眼交| 高清成人免费视频| 久久九九久精品国产免费直播| 丝袜诱惑制服诱惑色一区在线观看| av爱爱亚洲一区| 国产午夜精品久久久久久免费视| 蜜桃91丨九色丨蝌蚪91桃色| 欧美亚洲国产怡红院影院| 国产精品久久久久影院亚瑟| 国产一区二区免费看| 精品播放一区二区| 免费成人在线视频观看| 67194成人在线观看| 一区二区在线看| 色综合久久久久| 国产精品久久久久一区 | 欧美精品一区二区不卡| 日日夜夜免费精品| 欧美妇女性影城| 日韩国产一二三区| 在线不卡的av| 青青青伊人色综合久久| 欧美一区二区三区精品| 喷水一区二区三区| 欧美v亚洲v综合ⅴ国产v| 日本欧美韩国一区三区| 日韩一级在线观看| 激情综合亚洲精品| 久久综合九色欧美综合狠狠| 国产精品一区在线观看乱码| 久久免费的精品国产v∧| 国产电影一区在线| 国产精品高清亚洲| 欧美亚洲日本国产| 天天综合天天做天天综合| 欧美一区二区三区免费观看视频| 久88久久88久久久| 欧美国产精品专区| 91一区二区在线| 亚洲大片免费看| 欧美va日韩va| 国产99久久久国产精品潘金| 亚洲欧洲一区二区在线播放| 欧美无砖专区一中文字| 日av在线不卡| 国产女人aaa级久久久级| 91麻豆视频网站| 日日欢夜夜爽一区| 久久久精品天堂| 色综合色狠狠天天综合色| 青青草原综合久久大伊人精品优势| 日韩欧美国产三级| 99久久精品免费观看| 午夜精品影院在线观看| 精品国产91亚洲一区二区三区婷婷| 成人性视频免费网站| 亚洲一区电影777| 久久综合99re88久久爱| 91福利在线免费观看| 久久99国产精品久久| 亚洲免费三区一区二区| 亚洲精品一线二线三线| 91同城在线观看| 激情五月婷婷综合网| 亚洲一区二区中文在线| 久久久午夜电影| 欧美日韩高清不卡| 成人爱爱电影网址| 美女尤物国产一区| 亚洲一区二区成人在线观看| 久久影音资源网| 欧美精品一二三| caoporen国产精品视频| 国内久久精品视频| 天堂影院一区二区| 亚洲欧美综合在线精品| 久久久99精品免费观看| 日韩一卡二卡三卡国产欧美| 欧美影院一区二区三区| 99re视频精品| 国产a视频精品免费观看| 久久超碰97中文字幕| 日韩成人av影视| 午夜精品福利一区二区蜜股av| 欧美极品aⅴ影院| 国产日韩欧美综合在线| 精品国产一区二区三区忘忧草| 欧美日韩一区二区三区在线看| 99久久精品免费观看| 成人免费看片app下载| 毛片av一区二区| 蜜臀精品久久久久久蜜臀| 亚洲一区在线电影| 一级做a爱片久久| 亚洲一区二区三区四区在线免费观看| 国产精品美女www爽爽爽| 久久久久久一二三区| 久久影音资源网| 精品国产91亚洲一区二区三区婷婷| 欧美一区二区三区视频免费| 欧美日韩国产高清一区二区三区| 在线免费观看日本一区| 在线观看91精品国产入口| 在线精品视频小说1| 91福利区一区二区三区| 欧美三级日韩三级国产三级| 制服丝袜亚洲精品中文字幕| 在线播放日韩导航| 国产欧美一区二区精品忘忧草 | 亚洲欧洲精品一区二区精品久久久| 国产校园另类小说区| 国产日韩欧美高清在线| 国产精品麻豆久久久| 一区二区久久久| 日韩精品福利网| 国产在线不卡一区| 成人激情校园春色| 日本精品视频一区二区| 在线不卡a资源高清| 精品粉嫩aⅴ一区二区三区四区| 久久精品人人爽人人爽| 亚洲色图在线看| 日韩精品亚洲一区| 国产一区二区中文字幕| 99re这里只有精品首页| 在线不卡的av| 国产精品理论在线观看| 性欧美大战久久久久久久久| 国内久久精品视频| 欧洲人成人精品| 精品免费国产二区三区| 亚洲欧美视频在线观看视频| 日日摸夜夜添夜夜添精品视频 | 久久99国产精品尤物| 99视频精品在线| 日韩一区二区电影| 亚洲欧美激情视频在线观看一区二区三区| 午夜久久久久久久久| 国产a级毛片一区| 51精品久久久久久久蜜臀| 中文字幕不卡一区| 免费在线观看成人| 99精品视频在线播放观看| 日韩一区二区三区免费看| 亚洲日本丝袜连裤袜办公室| 久久精品国产网站| 欧洲人成人精品| 中文字幕在线一区免费|