|
@@ -17,6 +17,9 @@ import com.alibaba.excel.annotation.*;
|
17
|
17
|
import com.unis.framework.excel.core.annotations.DictFormat;
|
18
|
18
|
import com.unis.framework.excel.core.convert.DictConvert;
|
19
|
19
|
|
|
20
|
+import static com.unis.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
21
|
+import static com.unis.framework.common.util.date.DateUtils.TIME_ZONE_DEFAULT;
|
|
22
|
+
|
20
|
23
|
@Schema(description = "管理后台 - 出入库信息 Response VO")
|
21
|
24
|
@Data
|
22
|
25
|
@ExcelIgnoreUnannotated
|
|
@@ -61,7 +64,8 @@ public class CrkxxRespVO {
|
61
|
64
|
|
62
|
65
|
@Schema(description = "入门时间")
|
63
|
66
|
@ExcelProperty("入门时间")
|
64
|
|
- private LocalDateTime rmsj;
|
|
67
|
+ @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
|
68
|
+ private String rmsj;
|
65
|
69
|
|
66
|
70
|
@Schema(description = "登记人员")
|
67
|
71
|
@ExcelProperty("登记人员")
|
|
@@ -69,7 +73,7 @@ public class CrkxxRespVO {
|
69
|
73
|
|
70
|
74
|
@Schema(description = "出门时间")
|
71
|
75
|
@ExcelProperty("出门时间")
|
72
|
|
-// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
73
|
|
- private DateTime cmsj;
|
|
76
|
+ @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
|
77
|
+ private String cmsj;
|
74
|
78
|
|
75
|
79
|
}
|