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

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

?? baseitem.java

?? 網(wǎng)上拍賣系統(tǒng)源代碼用java+jsp實現(xiàn)
?? JAVA
字號:
package org.yeeku.model.base;

import java.lang.Comparable;
import java.io.Serializable;
import java.util.HashSet;

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

public abstract class BaseItem  implements Comparable, Serializable {

	public static String REF = "Item";
	public static String PROP_INIT_PRICE = "InitPrice";
	public static String PROP_OWNER = "Owner";
	public static String PROP_ITEM_NAME = "ItemName";
	public static String PROP_KIND = "Kind";
	public static String PROP_ITEM_STATE = "ItemState";
	public static String PROP_MAX_PRICE = "MaxPrice";
	public static String PROP_WINER = "Winer";
	public static String PROP_ITEM_PIC = "ItemPic";
	public static String PROP_ITEM_DESC = "ItemDesc";
	public static String PROP_ID = "Id";
	public static String PROP_ENDTIME = "Endtime";
	public static String PROP_ADDTIME = "Addtime";

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

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

	/**
	 * Constructor for required fields
	 */
	public BaseItem (
		java.lang.Integer id,
		org.yeeku.model.AuctionUser owner,
		org.yeeku.model.AuctionUser winer,
		org.yeeku.model.Kind kind,
		java.lang.String itemPic,
		java.lang.String itemName,
        java.lang.String itemDesc,
		java.util.Date endtime,
		java.util.Date addtime,
		java.lang.Double initPrice,
		java.lang.Double maxPrice,
		org.yeeku.model.State itemState) {

		this.setId(id);
		this.setOwner(owner);
		this.setWiner(winer);
		this.setKind(kind);
		this.setItemPic(itemPic);
		this.setItemName(itemName);
        this.setItemDesc(itemDesc);
		this.setEndtime(endtime);
		this.setAddtime(addtime);
		this.setInitPrice(initPrice);
		this.setMaxPrice(maxPrice);
		this.setItemState(itemState);
		initialize();
	}

	protected void initialize () {}



	private int hashCode = Integer.MIN_VALUE;

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

	// fields
	private java.lang.String itemPic;
	private java.lang.String itemName;
	private java.lang.String itemDesc;
	private java.util.Date endtime;
	private java.util.Date addtime;
	private java.lang.Double initPrice;
	private java.lang.Double maxPrice;

	// many to one
	private org.yeeku.model.AuctionUser owner;
	private org.yeeku.model.Kind kind;
	private org.yeeku.model.AuctionUser winer;
	private org.yeeku.model.State itemState;

	// collections
	private java.util.Set bids = new HashSet();


	/**
	 * Return the unique identifier of this class
     * @hibernate.id
     *  generator-class="increment"
     *  column="item_id"
     */
	public java.lang.Integer getId () {
		return id;
	}

	/**
	 * Set the unique identifier of this class
	 * @param id the new ID
	 */
	public void setId (java.lang.Integer id) {
		this.id = id;
		this.hashCode = Integer.MIN_VALUE;
	}




	/**
	 * Return the value associated with the column: item_pic
	 */
	public java.lang.String getItemPic () {
		return itemPic;
	}

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



	/**
	 * Return the value associated with the column: item_name
	 */
	public java.lang.String getItemName () {
		return itemName;
	}

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



	/**
	 * Return the value associated with the column: item_desc
	 */
	public java.lang.String getItemDesc () {
		return itemDesc;
	}

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



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

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



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

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




	/**
	 * Return the value associated with the column: init_price
	 */
	public java.lang.Double getInitPrice () {
		return initPrice;
	}

	/**
	 * Set the value related to the column: init_price
	 * @param initPrice the init_price value
	 */
	public void setInitPrice (java.lang.Double initPrice) {
		this.initPrice = initPrice;
	}



	/**
	 * Return the value associated with the column: max_price
	 */
	public java.lang.Double getMaxPrice () {
		return maxPrice;
	}

	/**
	 * Set the value related to the column: max_price
	 * @param maxPrice the max_price value
	 */
	public void setMaxPrice (java.lang.Double maxPrice) {
		this.maxPrice = maxPrice;
	}



	/**
	 * Return the value associated with the column: owner_id
	 */
	public org.yeeku.model.AuctionUser getOwner () {
		return owner;
	}

	/**
	 * Set the value related to the column: owner_id
	 * @param owner the owner_id value
	 */
	public void setOwner (org.yeeku.model.AuctionUser owner) {
		this.owner = owner;
	}

	/**
	 * Return the value associated with the column: item_state
	 */
	public org.yeeku.model.State getItemState () {
		return itemState;
	}

	/**
	 * Set the value related to the column: item_state
	 * @param owner the item_state value
	 */
	public void setItemState (org.yeeku.model.State is) {
		this.itemState = is;
	}


	/**
	 * Return the value associated with the column: kind_id
	 */
	public org.yeeku.model.Kind getKind () {
		return kind;
	}

	/**
	 * Set the value related to the column: kind_id
	 * @param kind the kind_id value
	 */
	public void setKind (org.yeeku.model.Kind kind) {
		this.kind = kind;
	}



	/**
	 * Return the value associated with the column: winer_id
	 */
	public org.yeeku.model.AuctionUser getWiner () {
		return winer;
	}

	/**
	 * Set the value related to the column: winer_id
	 * @param winer the winer_id value
	 */
	public void setWiner (org.yeeku.model.AuctionUser winer) {
		this.winer = winer;
	}



	/**
	 * Return the value associated with the column: Bids
	 */
	public java.util.Set getBids () {
		return bids;
	}

	/**
	 * Set the value related to the column: Bids
	 * @param bids the Bids value
	 */
	public void setBids (java.util.Set bids) {
		this.bids = bids;
	}


	public boolean equals (Object obj) {
		if (null == obj) return false;
		if (!(obj instanceof org.yeeku.model.Item)) return false;
		else {
			org.yeeku.model.Item item = (org.yeeku.model.Item) obj;
			if (null == this.getOwner() || null == item.getOwner()
                || null == this.getAddtime() || null == item.getAddtime()) return false;
			else return (this.getOwner().equals(item.getOwner())
                && this.getAddtime().equals(item.getAddtime()));
		}
	}

	public int hashCode () {
		return addtime.hashCode() + owner.hashCode();
	}

	public int compareTo (Object obj) {
		if (obj.hashCode() > hashCode()) return 1;
		else if (obj.hashCode() < hashCode()) return -1;
		else return 0;
	}

	public String toString () {
		return super.toString();
	}


}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区精品视频| 免费一区二区视频| 在线精品视频小说1| 亚洲精品一二三| 欧美视频一区二| 日韩在线一二三区| 26uuu久久天堂性欧美| 国产盗摄女厕一区二区三区 | 久久久综合视频| 国产成人精品影视| 亚洲人成伊人成综合网小说| 色欧美乱欧美15图片| 亚洲超碰精品一区二区| 日韩一区二区在线免费观看| 九一九一国产精品| 国产精品久久久久久久久图文区| 97精品国产97久久久久久久久久久久| 亚洲女同一区二区| 在线播放中文一区| 国产一区二区剧情av在线| 国产精品福利av | 夜夜爽夜夜爽精品视频| 亚洲激情图片一区| 国产精品久久久久永久免费观看| 日韩一级大片在线观看| 欧美美女bb生活片| 欧美撒尿777hd撒尿| 日本韩国视频一区二区| 99精品视频在线观看免费| 成人av动漫在线| 成人av片在线观看| 在线观看成人小视频| 欧美激情在线一区二区三区| 91一区二区在线观看| 日韩精品午夜视频| 国产精品嫩草99a| 欧美日韩成人在线| 国产盗摄视频一区二区三区| 一区二区三区中文字幕电影| 日韩亚洲欧美一区二区三区| 成人av电影免费在线播放| 午夜久久福利影院| 国产午夜久久久久| 欧美日本一区二区三区| 成人妖精视频yjsp地址| 午夜欧美在线一二页| 中文字幕va一区二区三区| 欧美精品久久99久久在免费线| 国产成人亚洲综合a∨婷婷| 亚洲成人av免费| 国产精品乱子久久久久| 欧美一区二区精品| 一本到一区二区三区| 国产一区二区不卡| 亚洲成在人线在线播放| 国产精品免费av| 日韩欧美一区在线| 欧美亚洲日本国产| 成人av在线资源网| 麻豆精品视频在线观看| 亚洲资源中文字幕| 国产精品视频第一区| 日韩久久免费av| 欧美性三三影院| www.欧美日韩| 国内成人精品2018免费看| 亚洲成a天堂v人片| 最新国产成人在线观看| 久久精品一区蜜桃臀影院| 欧美精品乱人伦久久久久久| www.视频一区| 国产黑丝在线一区二区三区| 蜜臀久久99精品久久久久久9| 亚洲伦理在线免费看| 久久久精品天堂| 欧美成人一区二区| 欧美精品电影在线播放| 91福利资源站| 99国产精品久久久久久久久久 | 2023国产一二三区日本精品2022| 精品一区二区综合| 色哦色哦哦色天天综合| 国产女人水真多18毛片18精品视频 | 亚洲国产视频a| av不卡在线观看| 一区二区三区自拍| 欧美一区二区福利视频| 天堂一区二区在线| 一区二区三区日韩欧美| 国产精品另类一区| 国产日韩成人精品| 久久久久久亚洲综合影院红桃| 91麻豆精品久久久久蜜臀| 精品视频1区2区3区| 欧美专区亚洲专区| 91国偷自产一区二区三区观看| 99久久精品免费精品国产| 成人天堂资源www在线| 国产美女在线精品| 国产原创一区二区| 国产一区二区三区免费看| 精品一区二区三区免费视频| 久久国产精品色婷婷| 久久99久久精品| 精品一区在线看| 国产一区二区三区免费在线观看| 激情综合色综合久久综合| 久久99精品久久久久久国产越南 | 极品少妇xxxx偷拍精品少妇| 久久精品久久精品| 裸体健美xxxx欧美裸体表演| 日韩成人免费电影| 日本三级亚洲精品| 日韩精品午夜视频| 日韩主播视频在线| 美女任你摸久久| 亚洲黄色性网站| 亚洲成av人影院在线观看网| 五月激情六月综合| 亚洲3atv精品一区二区三区| 午夜精品福利视频网站| 亚洲福利视频一区二区| 日韩中文字幕不卡| 蜜臀av性久久久久av蜜臀妖精| 久久福利资源站| 久久国产成人午夜av影院| 国产成人综合亚洲网站| 国产精品一区二区在线观看网站| 国产成人福利片| 国内精品视频666| 国产精品1024| 国产jizzjizz一区二区| 99久久综合狠狠综合久久| 色呦呦网站一区| 欧美在线影院一区二区| 欧美情侣在线播放| 制服丝袜亚洲播放| 久久综合狠狠综合久久综合88| 欧美久久久久久久久| 国产sm精品调教视频网站| 亚洲成人综合在线| 美腿丝袜亚洲综合| 久久精品亚洲精品国产欧美kt∨| 99视频热这里只有精品免费| 亚洲无线码一区二区三区| 日韩亚洲国产中文字幕欧美| 国产美女久久久久| 亚洲视频一区在线| 精品国内片67194| 91激情五月电影| 国产成人免费在线观看| 粉嫩一区二区三区在线看| 成人美女视频在线看| 99热这里都是精品| 不卡一区二区在线| 在线影院国内精品| 日韩一区二区三区在线| 久久影院视频免费| 亚洲色图另类专区| 亚洲电影在线播放| 国产在线精品不卡| 99精品1区2区| 欧美一级二级三级蜜桃| 久久人人97超碰com| 亚洲欧洲日产国产综合网| 中文字幕综合网| 青青草97国产精品免费观看无弹窗版| 国产自产高清不卡| 91视频观看视频| 日韩一区二区在线看| 国产精品女主播在线观看| 日精品一区二区三区| 久久99精品国产麻豆不卡| 高清在线观看日韩| 3atv一区二区三区| 国产日韩欧美电影| 首页综合国产亚洲丝袜| 国产高清不卡二三区| 777久久久精品| 日韩精品专区在线影院观看| 亚洲精品成人在线| 国精品**一区二区三区在线蜜桃| 97se亚洲国产综合自在线不卡 | 欧美在线你懂得| 日韩欧美国产精品| 一区二区三区欧美激情| 国模一区二区三区白浆| 欧美日韩成人在线一区| 日韩一区二区三区电影在线观看 | 欧洲国产伦久久久久久久| 久久蜜臀精品av| 一级做a爱片久久| 风间由美一区二区三区在线观看| 欧美日韩亚洲综合| 国产精品天美传媒| 免费高清在线视频一区·| 99久久综合国产精品| 精品国产伦理网| 亚洲6080在线| 国产91丝袜在线播放九色|