?? bid.java
字號:
package com.lixineng.dao;
import java.util.Date;
/**
* Bid entity.
*
* @author MyEclipse Persistence Tools
*/
public class Bid implements java.io.Serializable {
// Fields
private Integer bidId;
private Item item;
private AuctionUser auctionUser;
private Double bidPrice;
private Date bidDate;
// Constructors
/** default constructor */
public Bid() {
}
/** full constructor */
public Bid(Item item, AuctionUser auctionUser, Double bidPrice, Date bidDate) {
this.item = item;
this.auctionUser = auctionUser;
this.bidPrice = bidPrice;
this.bidDate = bidDate;
}
// Property accessors
public Integer getBidId() {
return this.bidId;
}
public void setBidId(Integer bidId) {
this.bidId = bidId;
}
public Item getItem() {
return this.item;
}
public void setItem(Item item) {
this.item = item;
}
public AuctionUser getAuctionUser() {
return this.auctionUser;
}
public void setAuctionUser(AuctionUser auctionUser) {
this.auctionUser = auctionUser;
}
public Double getBidPrice() {
return this.bidPrice;
}
public void setBidPrice(Double bidPrice) {
this.bidPrice = bidPrice;
}
public Date getBidDate() {
return this.bidDate;
}
public void setBidDate(Date bidDate) {
this.bidDate = bidDate;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -