|
@@ -1,5 +1,6 @@
|
|
|
package com.bz.smart_city.dto.pay.payfee;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
@@ -20,10 +21,12 @@ public class PayfeeWaterusedamount {
|
|
|
private String metercode;
|
|
|
@ApiModelProperty(value = "上次止度")
|
|
|
private BigDecimal lastreading;
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
@ApiModelProperty(value = "上次抄表时间")
|
|
|
private Date lastrecorddate;
|
|
|
@ApiModelProperty(value = "本次止度")
|
|
|
private BigDecimal reading;
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
@ApiModelProperty(value = "本次抄表时间")
|
|
|
private Date recorddate;
|
|
|
@ApiModelProperty(value = "实际水量")
|