From 1c0706a3eba8069b5b1da4955abc075d3facf11d Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Fri, 25 Feb 2022 14:57:51 +0800
Subject: [PATCH] 1.空间信息
---
src/main/java/org/springblade/modules/system/entity/User.java | 21 +++++++++++++++++++--
1 files changed, 19 insertions(+), 2 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 4cd92e3..312f7c5 100644
--- a/src/main/java/org/springblade/modules/system/entity/User.java
+++ b/src/main/java/org/springblade/modules/system/entity/User.java
@@ -78,7 +78,7 @@
/**
* 生日
*/
- @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date birthday;
/**
* 性别
@@ -121,7 +121,7 @@
/**
* 审查时间
*/
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@TableField("audit_time")
private Date auditTime;
@@ -130,5 +130,22 @@
* 身份证号
*/
private String cardid;
+ /**
+ * 审核状态 0:待审核 1 :审核通过
+ */
+ private String stype;
+
+ /**
+ * 居住地址
+ */
+ private String address;
+ /**
+ * 工作地点
+ */
+ private String workaddress;
+ /**
+ * 工作辖区
+ */
+ private String workjurisdiction;
}
--
Gitblit v1.9.3