package com.yeshi.buwan.domain.vip;
|
|
import com.google.gson.annotations.Expose;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Document(collection = "vipPrice")
|
public class VIPPrice {
|
@Expose
|
private String id;
|
@Expose
|
private VIPPriceType type;
|
@Expose
|
private BigDecimal price;
|
//原始价格
|
@Expose
|
private BigDecimal actualPrice;
|
private Date createTime;
|
private Date updateTime;
|
|
//PPTV的vip商品类型
|
private String pptvGoodsNo;
|
private Boolean show;
|
|
//排序值
|
private Integer order;
|
|
|
public Boolean getShow() {
|
return show;
|
}
|
|
public void setShow(Boolean show) {
|
this.show = show;
|
}
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public VIPPriceType getType() {
|
return type;
|
}
|
|
public void setType(VIPPriceType type) {
|
this.type = type;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Integer getOrder() {
|
return order;
|
}
|
|
public void setOrder(Integer order) {
|
this.order = order;
|
}
|
|
public String getPptvGoodsNo() {
|
return pptvGoodsNo;
|
}
|
|
public void setPptvGoodsNo(String pptvGoodsNo) {
|
this.pptvGoodsNo = pptvGoodsNo;
|
}
|
|
public BigDecimal getActualPrice() {
|
return actualPrice;
|
}
|
|
public void setActualPrice(BigDecimal actualPrice) {
|
this.actualPrice = actualPrice;
|
}
|
}
|