From d65293482a2f06c23b8d1d5cd1d440d1302d915d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sat, 16 Mar 2024 18:03:20 +0800
Subject: [PATCH] 从业人员查询统计修改,去除多余字段

---
 src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java |   21 +++++++--------------
 1 files changed, 7 insertions(+), 14 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 15e4fcc..4bd0493 100644
--- a/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
+++ b/src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
@@ -80,13 +80,8 @@
 	@TableField("id_card")
 	private String idCard;
 
-	/** 证件类型,业务字典  cardType */
-	@ApiModelProperty(value = "证件类型,业务字典  cardType", example = "")
-	@TableField("card_type")
-	private String cardType;
-
-	/** 岗位性质 */
-	@ApiModelProperty(value = "岗位性质", example = "")
+	/** 岗位 */
+	@ApiModelProperty(value = "岗位", example = "")
 	@TableField("job_nature")
 	private String jobNature;
 
@@ -100,12 +95,6 @@
 	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 	@TableField(value = "create_time",fill = FieldFill.INSERT)
 	private Date createTime;
-
-	/** 生日 */
-	@ApiModelProperty(value = "生日", example = "")
-	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
-	@TableField("birthday")
-	private Date birthday;
 
 	/** 民族 */
 	@ApiModelProperty(value = "民族", example = "")
@@ -136,7 +125,7 @@
 	/** 入职时间 */
 	@ApiModelProperty(value = "入职时间", example = "")
 	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
-	@TableField(value = "employment_time",fill = FieldFill.INSERT)
+	@TableField(value = "employment_time")
 	private Date employmentTime;
 
 	/** 离职时间 */
@@ -145,5 +134,9 @@
 	@TableField("resignation_time")
 	private Date resignationTime;
 
+	/** 是离职 1:否 2:是 */
+	@ApiModelProperty(value = "是离职 1:否 2:是", example = "")
+	@TableField("resignation_flag")
+	private Integer resignationFlag;
 
 }

--
Gitblit v1.9.3