|
@@ -43,7 +43,7 @@ public class UserAppointment extends Model<UserAppointment> {
|
|
|
/**
|
|
|
* 预约时间
|
|
|
*/
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
@TableField("appoint_date")
|
|
|
private LocalDate appointDate;
|
|
|
|
|
@@ -69,6 +69,7 @@ public class UserAppointment extends Model<UserAppointment> {
|
|
|
* 创建时间
|
|
|
*/
|
|
|
@TableField("indate")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime indate;
|
|
|
|
|
|
/**
|