Commit 211128ce by 王祖波

商品VO

parent 4bcb3612
package com.gic.haoban.manage.web.vo.content.creative; package com.gic.haoban.manage.web.vo.content.creative;
import java.math.BigDecimal;
/** /**
* 内容分类表(TabContentCategory)表实体类 * 内容分类表(TabContentCategory)表实体类
* *
...@@ -44,9 +46,14 @@ public class ContentGoodsVO { ...@@ -44,9 +46,14 @@ public class ContentGoodsVO {
private Integer isComplete; private Integer isComplete;
/** /**
* 商品金额 * 吊牌价 / 划线价
*/
private BigDecimal tagPrice;
/**
* 最小sku价格/一口价
*/ */
private Double proPrice; private BigDecimal minPrice;
public String getGoodsId() { public String getGoodsId() {
return goodsId; return goodsId;
...@@ -104,11 +111,19 @@ public class ContentGoodsVO { ...@@ -104,11 +111,19 @@ public class ContentGoodsVO {
this.isComplete = isComplete; this.isComplete = isComplete;
} }
public Double getProPrice() { public BigDecimal getTagPrice() {
return proPrice; return tagPrice;
}
public void setTagPrice(BigDecimal tagPrice) {
this.tagPrice = tagPrice;
}
public BigDecimal getMinPrice() {
return minPrice;
} }
public void setProPrice(Double proPrice) { public void setMinPrice(BigDecimal minPrice) {
this.proPrice = proPrice; 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