ソースを参照

目标展板代码提交

zx 6 ヶ月 前
コミット
7446bf8d59

+ 3 - 3
ruoyi-powerdistribution/src/main/java/com/ruoyi/powerdistribution/domain/PdmStopTarge.java

@@ -37,7 +37,7 @@ public class PdmStopTarge extends BaseEntity
 
     /** 等效总用户数 */
     @Excel(name = "等效总用户数")
-    private Integer userTotal;
+    private BigDecimal userTotal;
 
     /** 停电总时长目标 */
     @Excel(name = "停电总时长目标")
@@ -252,12 +252,12 @@ public class PdmStopTarge extends BaseEntity
     {
         return stopTimeAvg;
     }
-    public void setUserTotal(Integer userTotal)
+    public void setUserTotal(BigDecimal userTotal)
     {
         this.userTotal = userTotal;
     }
 
-    public Integer getUserTotal()
+    public BigDecimal getUserTotal()
     {
         return userTotal;
     }