📄 bid.java
字号:
package y2.yxb.entity;
import java.util.Date;
/**
* Bid generated by MyEclipse Persistence Tools
*/
public class Bid implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 1L;
private Long bidId;
private Long goodsId;
private Long buyerId;
private Date bidTime;
private Double bidPrice;
private Integer bidStatus;
private Goods goods;
private User user;
// Constructors
/** default constructor */
public Bid() {
}
/** full constructor */
public Bid(Long goodsId, Long buyerId, Date bidTime, Double bidPrice,
Integer bidStatus) {
this.goodsId = goodsId;
this.buyerId = buyerId;
this.bidTime = bidTime;
this.bidPrice = bidPrice;
this.bidStatus = bidStatus;
}
// Property accessors
public Long getBidId() {
return this.bidId;
}
public void setBidId(Long bidId) {
this.bidId = bidId;
}
public Long getGoodsId() {
return this.goodsId;
}
public void setGoodsId(Long goodsId) {
this.goodsId = goodsId;
}
public Long getBuyerId() {
return this.buyerId;
}
public void setBuyerId(Long buyerId) {
this.buyerId = buyerId;
}
public Date getBidTime() {
return this.bidTime;
}
public void setBidTime(Date bidTime) {
this.bidTime = bidTime;
}
public Double getBidPrice() {
return this.bidPrice;
}
public void setBidPrice(Double bidPrice) {
this.bidPrice = bidPrice;
}
public Integer getBidStatus() {
return this.bidStatus;
}
public void setBidStatus(Integer bidStatus) {
this.bidStatus = bidStatus;
}
public Goods getGoods() {
return goods;
}
public void setGoods(Goods goods) {
this.goods = goods;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -