Browse Source

水量信息时间格式化

wangli 4 years ago
parent
commit
d2746c185f

+ 3 - 0
smart-city-platform/src/main/java/com/bz/smart_city/dto/pay/payfee/PayfeeWaterusedamount.java

@@ -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 = "实际水量")