From cc9384035ae8b71b33e866e0690b0bc65fa02135 Mon Sep 17 00:00:00 2001 From: guoshilong <123456> Date: Wed, 03 Jan 2024 09:30:39 +0800 Subject: [PATCH] 根据身份证、保安证编号获取用户;微信注册修改为限定身份证号不能重复 --- src/main/java/org/springblade/modules/record/entity/Record.java | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/springblade/modules/record/entity/Record.java b/src/main/java/org/springblade/modules/record/entity/Record.java index f47fe52..02cd6e1 100644 --- a/src/main/java/org/springblade/modules/record/entity/Record.java +++ b/src/main/java/org/springblade/modules/record/entity/Record.java @@ -179,4 +179,20 @@ private Date overtime; + @ApiModelProperty(value = "派出所审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date ptime; + + @ApiModelProperty(value = "县审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date stime; + + @ApiModelProperty(value = "市审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date xtime; + + } -- Gitblit v1.9.3