Commit 211128ce by 王祖波

商品VO

parent 4bcb3612
package com.gic.haoban.manage.web.vo.content.creative;
import java.math.BigDecimal;
/**
* 内容分类表(TabContentCategory)表实体类
*
......@@ -44,9 +46,14 @@ public class ContentGoodsVO {
private Integer isComplete;
/**
* 商品金额
* 吊牌价 / 划线价
*/
private BigDecimal tagPrice;
/**
* 最小sku价格/一口价
*/
private Double proPrice;
private BigDecimal minPrice;
public String getGoodsId() {
return goodsId;
......@@ -104,11 +111,19 @@ public class ContentGoodsVO {
this.isComplete = isComplete;
}
public Double getProPrice() {
return proPrice;
public BigDecimal getTagPrice() {
return tagPrice;
}
public void setTagPrice(BigDecimal tagPrice) {
this.tagPrice = tagPrice;
}
public BigDecimal getMinPrice() {
return minPrice;
}
public void setProPrice(Double proPrice) {
this.proPrice = proPrice;
public void setMinPrice(BigDecimal minPrice) {
this.minPrice = minPrice;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment