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 | 15 ++-------------
1 files changed, 2 insertions(+), 13 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 09d067e..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 = "")
--
Gitblit v1.9.3