Browse Source

修改有效消耗平均值精度问题

songyinghao 5 năm trước cách đây
mục cha
commit
12d2068ec7

+ 3 - 3
jeecg-boot-module-system/src/main/java/org/jeecg/modules/excelutil/entity/KuaishouXxlEntity.java

@@ -38,7 +38,7 @@ public class KuaishouXxlEntity extends BaseRowModel {
      * 激活成本
      */
     @ExcelProperty(index = 6, value = "激活成本")
-    private int activeCost;
+    private BigDecimal activeCost;
     @ExcelProperty(index = 7, value = "每日计划(组)")
     private int planNum;
     @ExcelProperty(index = 8, value = "每日素材安排")
@@ -84,11 +84,11 @@ public class KuaishouXxlEntity extends BaseRowModel {
         this.active = active;
     }
 
-    public int getActiveCost() {
+    public BigDecimal getActiveCost() {
         return activeCost;
     }
 
-    public void setActiveCost(int activeCost) {
+    public void setActiveCost(BigDecimal activeCost) {
         this.activeCost = activeCost;
     }