|
@@ -27,6 +27,7 @@ public class CmHeheProduct extends DataEntity<CmHeheProduct> {
|
|
|
private String costType; // 成本价类型:1固定成本 2比例成本
|
|
|
private BigDecimal costPrice; // 成本价
|
|
|
private BigDecimal costProportional; // 比例成本百分比
|
|
|
+ private Integer oldProductId; //旧商品id
|
|
|
private Date addTime; // 添加时间
|
|
|
private String name; //商品名称
|
|
|
private String mainImage; //商品图片
|
|
@@ -184,4 +185,12 @@ public class CmHeheProduct extends DataEntity<CmHeheProduct> {
|
|
|
public void setFloorIds(String floorIds) {
|
|
|
this.floorIds = floorIds;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getOldProductId() {
|
|
|
+ return oldProductId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOldProductId(Integer oldProductId) {
|
|
|
+ this.oldProductId = oldProductId;
|
|
|
+ }
|
|
|
}
|