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