zhubaomin
2024-10-30 6d18969a899c0eb7836ff2a91ba12cbd151b87c8
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/pojoRm/RmOnHourReportLast.java
@@ -73,32 +73,32 @@
    /**
    * 瞬时流量,单位为m3/h
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double instantAmount;
    /**
    * 累计流量,单位为m3
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double totalAmount;
    /**
    * 损失流量(从0时到当前的漏损累计流量,24时一个周期,0时归0)单位为m3。
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double lossAmount;
    /**
    * 水压,单位为KPa
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double waterPress;
    /**
    * 蓄电池电压,单位为V
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double batteryVolt;
    /**
    * 太阳能电压,单位为V
    */
    public Double sunVolt;
    /**
    * 信号强度,取值范围0~99
@@ -108,6 +108,7 @@
    /**
    * 水价,单位为元
    */
    @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
    public Double waterPrice;
@@ -119,7 +120,6 @@
        this.lossAmount = cdData.lossAmount ;// 损失流量(从0时到当前的漏损累计流量,24时一个周期,0时归0)单位为m3。
        this.waterPress = cdData.waterPress ;// 水压,单位为KPa
        this.batteryVolt = cdData.batteryVolt ;// 蓄电池电压,单位为V
        this.sunVolt = cdData.sunVolt ;//  太阳能电压,单位为V
        this.signalValue = cdData.signalValue ;//  信号强度,取值范围0~99
        this.waterPrice = cdData.waterPrice ;//  水价,单位为元。
    }