From 33a072160eda4fa7cb22d330c2bfa9048ad6c0e9 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 22 Jul 2021 14:11:50 +0800
Subject: [PATCH] 派遣记录接口修改
---
src/main/java/org/springblade/modules/system/entity/User.java | 93 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 93 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/entity/User.java b/src/main/java/org/springblade/modules/system/entity/User.java
index 2d6f517..f931ab3 100644
--- a/src/main/java/org/springblade/modules/system/entity/User.java
+++ b/src/main/java/org/springblade/modules/system/entity/User.java
@@ -16,7 +16,9 @@
*/
package org.springblade.modules.system.entity;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
@@ -93,4 +95,95 @@
private String postId;
+ /**
+ * 身份证
+ */
+ private String cardid;
+ /**
+ * 籍贯
+ */
+ @ApiModelProperty(value = "籍贯")
+ @TableField("nativePlace")
+ private String nativeplace;
+ /**
+ * 民族
+ */
+ @ApiModelProperty(value = "民族")
+ private String nation;
+ /**
+ * 学历
+ */
+ @ApiModelProperty(value = "学历")
+ private String education;
+ /**
+ * 政治面貌
+ */
+ @ApiModelProperty(value = "政治面貌")
+ private String politicaloutlook;
+ /**
+ * 身高
+ */
+ @ApiModelProperty(value = "身高")
+ private Float height;
+ /**
+ * 联系电话
+ */
+ @ApiModelProperty(value = "联系电话")
+ private String cell;
+ /**
+ * 邮箱
+ */
+ @ApiModelProperty(value = "邮箱")
+ private String emails;
+ /**
+ * 联系地址
+ */
+ @ApiModelProperty(value = "联系地址")
+ private String address;
+ /**
+ * 户口所在地
+ */
+ @ApiModelProperty(value = "户口所在地")
+ private String registered ;
+ /**
+ * 入职时间
+ */
+ @ApiModelProperty(value = "入职时间")
+ private String rtime;
+
+
+ private String hold;
+
+ /**
+ * 行政区域id
+ */
+ private String jurisdiction;
+ /**
+ * 保安员证编码
+ */
+ private String securitynumber;
+
+ /**
+ * 审查状态
+ */
+ @TableField("examination_type")
+ private String examinationType;
+
+
+ /**
+ * 审查明细
+ */
+ @TableField("examination_mx")
+ private String examinationMx;
+
+ /**
+ * 是否采集指纹
+ */
+ private String fingerprint;
+
+ /**
+ * 是否采集照片
+ */
+ private String photo;
+
}
--
Gitblit v1.9.3