|
|
@@ -2,6 +2,8 @@ package com.goafanti.order.bo;
|
|
|
|
|
|
import com.goafanti.common.utils.excel.Excel;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class OutselectProjectSotpBo extends OutselectProjectSotp{
|
|
|
|
|
|
@Excel(name = "时间")
|
|
|
@@ -28,7 +30,7 @@ public class OutselectProjectSotpBo extends OutselectProjectSotp{
|
|
|
private String statusName;
|
|
|
private Integer status;
|
|
|
@Excel(name = "项目金额")
|
|
|
- private String commodityPrice;
|
|
|
+ private BigDecimal commodityPrice;
|
|
|
@Excel(name = "原因")
|
|
|
private String reason;
|
|
|
private Integer sotpType;
|
|
|
@@ -154,12 +156,12 @@ public class OutselectProjectSotpBo extends OutselectProjectSotp{
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public String getCommodityPrice() {
|
|
|
+ public BigDecimal getCommodityPrice() {
|
|
|
return commodityPrice;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void setCommodityPrice(String commodityPrice) {
|
|
|
+ public void setCommodityPrice(BigDecimal commodityPrice) {
|
|
|
this.commodityPrice = commodityPrice;
|
|
|
}
|
|
|
|