|
@@ -76,14 +76,14 @@ public class AppOrderInfoDTO implements Serializable {
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date dateOfSale;
|
|
|
|
|
|
- @Excel(name = "开始时间", width = 20, format = "HH:mm:ss")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "HH:mm:ss")
|
|
|
+ @Excel(name = "开始时间", width = 20, format = "HH:mm")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "HH:mm")
|
|
|
@DateTimeFormat(pattern="HH:mm:ss")
|
|
|
@Schema(description = "开始时间")
|
|
|
private Date startTime;
|
|
|
|
|
|
- @Excel(name = "结束时间", width = 20, format = "HH:mm:ss")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "HH:mm:ss")
|
|
|
+ @Excel(name = "结束时间", width = 20, format = "HH:mm")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "HH:mm")
|
|
|
@DateTimeFormat(pattern="HH:mm:ss")
|
|
|
@Schema(description = "结束时间")
|
|
|
private Date endTime;
|