From b3a3c0de818e72889f8719501f839d245d27b69b Mon Sep 17 00:00:00 2001 From: gaowdong Date: Thu, 26 Jun 2025 17:31:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=99=BA=E6=85=A7=E5=8E=A8=E6=88=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/KitchenSampleDishesRecord.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenSampleDishesRecord.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenSampleDishesRecord.java index aa31f14..5dbfe61 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenSampleDishesRecord.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenSampleDishesRecord.java @@ -75,8 +75,8 @@ public class KitchenSampleDishesRecord extends BaseEntity { /** 留样时间 */ @ApiModelProperty(value = "留样时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "留样时间", width = 30, dateFormat = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "留样时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date sampleSaveTime; /** 厨师id */ @@ -96,26 +96,26 @@ public class KitchenSampleDishesRecord extends BaseEntity { /** 打印时间 */ @ApiModelProperty(value = "打印时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "打印时间", width = 30, dateFormat = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "打印时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date printRecordTime; /** 进入留样柜时间 */ @ApiModelProperty(value = "进入留样柜时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "进入留样柜时间", width = 30, dateFormat = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "进入留样柜时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date enterCabinetTime; /** 离开留样柜时间 */ @ApiModelProperty(value = "离开留样柜时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "离开留样柜时间", width = 30, dateFormat = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "离开留样柜时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date leaveCabinetTime; /** 过期时间 */ @ApiModelProperty(value = "过期时间") - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "过期时间", width = 30, dateFormat = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "过期时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date expirationTime; /** 重量是否达到标准 1是2否 */