|
@@ -25,7 +25,7 @@ public class MeterInventoryDetailVO {
|
|
|
private String formNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "变更后数量")
|
|
|
- private Integer changeTotal;
|
|
|
+ private BigDecimal changeTotal;
|
|
|
|
|
|
@ApiModelProperty(value = "审批状态名称")
|
|
|
private String approveStatusName;
|
|
@@ -43,7 +43,7 @@ public class MeterInventoryDetailVO {
|
|
|
private BigDecimal currentPrice;
|
|
|
|
|
|
@ApiModelProperty(value = "本期计量数量")
|
|
|
- private Integer currentMeterTotal;
|
|
|
+ private BigDecimal currentMeterTotal;
|
|
|
|
|
|
@ApiModelProperty(value = "本期计量金额")
|
|
|
private BigDecimal currentMeterMoney;
|
|
@@ -52,7 +52,7 @@ public class MeterInventoryDetailVO {
|
|
|
private BigDecimal allMeterMoney;
|
|
|
|
|
|
@ApiModelProperty(value = "累计计量数量")
|
|
|
- private Integer allMeterTotal;
|
|
|
+ private BigDecimal allMeterTotal;
|
|
|
|
|
|
@ApiModelProperty(value = "明细")
|
|
|
private List<MeterInventoryDetailVO> detail;
|