소스 검색

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

songyinghao 5 년 전
부모
커밋
12d2068ec7
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/excelutil/entity/KuaishouXxlEntity.java

+ 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;
     }