package com.yeshi.buwan.domain.tb;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
@Document(collection = "tbYouZhiHaoHuoGoods")
|
public class YouZhiHaoHuoGoods {
|
@Id
|
private String itemId;
|
private String itemName;
|
private String pic;
|
private BigDecimal promotionPrice;
|
private BigDecimal price;
|
private String sellerNickName;
|
private Date createTime;
|
|
private Integer promotionPriceInt;
|
|
|
private List<String> smallImage;
|
|
public Integer getPromotionPriceInt() {
|
return promotionPriceInt;
|
}
|
|
public void setPromotionPriceInt(Integer promotionPriceInt) {
|
this.promotionPriceInt = promotionPriceInt;
|
}
|
|
public List<String> getSmallImage() {
|
return smallImage;
|
}
|
|
public void setSmallImage(List<String> smallImage) {
|
this.smallImage = smallImage;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getItemId() {
|
return itemId;
|
}
|
|
public void setItemId(String itemId) {
|
this.itemId = itemId;
|
}
|
|
public String getItemName() {
|
return itemName;
|
}
|
|
public void setItemName(String itemName) {
|
this.itemName = itemName;
|
}
|
|
public String getPic() {
|
return pic;
|
}
|
|
public void setPic(String pic) {
|
this.pic = pic;
|
}
|
|
public BigDecimal getPromotionPrice() {
|
return promotionPrice;
|
}
|
|
public void setPromotionPrice(BigDecimal promotionPrice) {
|
this.promotionPrice = promotionPrice;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public String getSellerNickName() {
|
return sellerNickName;
|
}
|
|
public void setSellerNickName(String sellerNickName) {
|
this.sellerNickName = sellerNickName;
|
}
|
}
|