Browse Source

2025.09.11 相关页面查询日期优化

master
jiayang yue 4 months ago
parent
commit
83d563bb36
  1. 6
      src/main/java/com/gaotao/modules/label/entity/PrintLabelRecord.java

6
src/main/java/com/gaotao/modules/label/entity/PrintLabelRecord.java

@ -48,17 +48,17 @@ public class PrintLabelRecord {
private String createBy;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
private Date createTime;
@TableField(exist = false)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
private Date startDate;
@TableField(exist = false)
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
private Date endDate;

Loading…
Cancel
Save