From a783c043ee894b62d45381c55c345a84bece6d63 Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Mon, 18 Mar 2024 17:46:27 +0800
Subject: [PATCH] 日期格式调整

---
 src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java b/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
index cd03bd5..77010de 100644
--- a/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
+++ b/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
@@ -103,13 +103,13 @@
 
 	/** 入职时间 */
 	@ApiModelProperty(value = "入职时间", example = "")
-	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+	@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
 	@TableField(value = "employment_time")
 	private Date employmentTime;
 
 	/** 离职时间 */
 	@ApiModelProperty(value = "离职时间", example = "")
-	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+	@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
 	@TableField("resignation_time")
 	private Date resignationTime;
 

--
Gitblit v1.9.3