From c10d6358b9f014375a13821465bc978d0c0da22e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 29 May 2024 17:17:08 +0800
Subject: [PATCH] 通过E呼即办数据统计

---
 src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java |   27 ++++++++++++++++++++++++---
 1 files changed, 24 insertions(+), 3 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..93f4aa6 100644
--- a/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
+++ b/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
@@ -83,7 +83,7 @@
 	/** 0:否1:是 */
 	@ApiModelProperty(value = "0:否1:是", example = "")
 	@TableField("is_deleted")
-	@TableLogic
+	@TableLogic(value = "0", delval = "1")
 	private Integer isDeleted;
 
 	/** 0:否 1:是 前科 */
@@ -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;
 
@@ -118,4 +118,25 @@
 	@TableField("resignation_flag")
 	private Integer resignationFlag;
 
+	/** 审核确认人用户id */
+	@ApiModelProperty(value = "审核确认人用户id", example = "")
+	@TableField("confirm_user_id")
+	private Long confirmUserId;
+
+	/** 确认标记 1:待审核  2:审核通过  3:审核不通过 4:待完善 */
+	@ApiModelProperty(value = "确认标记 1:待审核  2:审核通过  3:审核不通过 4:待完善", example = "")
+	@TableField("confirm_flag")
+	private Integer confirmFlag;
+
+	/** 审核确认时间 */
+	@ApiModelProperty(value = "审核确认时间", example = "")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+	@TableField("confirm_time")
+	private Date confirmTime;
+
+	/** 审核意见 */
+	@ApiModelProperty(value = "审核意见", example = "")
+	@TableField("confirm_notion")
+	private String confirmNotion;
+
 }

--
Gitblit v1.9.3