Bladeren bron

漏检统计表-日期格式

chenshudong 1 dag geleden
bovenliggende
commit
64c35b5004

+ 2 - 0
airport-blocked/src/main/java/com/sundot/airport/blocked/domain/BlockedMissCheckStatistics.java

@@ -106,12 +106,14 @@ public class BlockedMissCheckStatistics extends BaseEntity {
106 106
     /** 回查日期 */
107 107
     @Excel(name = "回查日期", width = 30, dateFormat = "yyyy-MM-dd")
108 108
     @JsonFormat(pattern = "yyyy-MM-dd")
109
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
109 110
     @ApiModelProperty("回查日期")
110 111
     private Date reviewDate;
111 112
 
112 113
     /** 漏检时间 */
113 114
     @Excel(name = "漏检时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
114 115
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
116
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
115 117
     @ApiModelProperty("漏检时间")
116 118
     private Date missCheckTime;
117 119