From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 09 六月 2025 11:54:00 +0800
Subject: [PATCH] 6.9新增登录失败冻结逻辑

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComElderAuthRecordsDO.java |   76 ++++++++++++++++++++++++++++++++------
 1 files changed, 64 insertions(+), 12 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComElderAuthRecordsDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComElderAuthRecordsDO.java
index 35fbf31..c60be5d 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComElderAuthRecordsDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComElderAuthRecordsDO.java
@@ -1,11 +1,15 @@
 package com.panzhihua.service_community.model.dos;
 
-import com.baomidou.mybatisplus.annotation.*;
-import io.swagger.models.auth.In;
-import lombok.Data;
-
 import java.io.Serializable;
 import java.util.Date;
+
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import lombok.Data;
 
 /**
  * title: ComElderAuthRecordsDO  社区政务》高龄老人认证》认证记录表实体类
@@ -25,7 +29,7 @@
     /**
     * 主键id
     */
-    @TableId(type = IdType.INPUT)
+    @TableId(type = IdType.ASSIGN_ID)
     private Long id;
 
     /**
@@ -44,14 +48,29 @@
     private Long submitUserId;
 
     /**
+     * 认证方式(1.视频认证 2.人脸认证 3.线下认证)
+     */
+    private Integer authMethod;
+
+    /**
+     * 人脸核验结果数据
+     */
+    private String verificationResult;
+
+    /**
     * 认证视频
     */
     private String authVideo;
 
     /**
+     * 现居地址
+     */
+    private String address;
+
+    /**
     * 审核人员
     */
-    private String approver;
+    private Long approverId;
 
     /**
     * 审核状态(1.待审核 2.驳回 3.通过)
@@ -76,7 +95,7 @@
     /**
     * 认证状态(1.已认证 0.未认证)
     */
-    private Boolean authStatus;
+    private Integer authStatus;
 
     /**
     * 认证时间
@@ -92,17 +111,50 @@
     /**
     * 更新时间
     */
+    @TableField(fill = FieldFill.UPDATE)
     private Date updateAt;
 
-@Override
-public String toString() {
+    /**
+     * 社区id
+     */
+    private Long communityId;
+
+    /**
+     * 审核状态(1.待审核 2.驳回 3.通过)
+     */
+    public interface approvalStatus{
+        int dsh = 1;
+        int bh = 2;
+        int tg = 3;
+    }
+
+    /**
+     * 认证状态(1.已认证 0.未认证)
+     */
+    public interface authStatus{
+        int yrz = 1;
+        int wrz = 0;
+    }
+
+    /**
+     * 认证方式(1.视频认证 2.人脸认证 3.线下认证)
+     */
+    public interface authMethod{
+        int sprz = 1;
+        int rlrz = 2;
+        int xxrz = 3;
+    }
+
+    @Override
+    public String toString() {
         return "ComElderAuthRecordsDO{" +
                 "id=" + id +
                 ", elderliesId=" + elderliesId +
                 ", authPeriod=" + authPeriod +
                 ", submitUserId=" + submitUserId +
                 ", authVideo=" + authVideo +
-                ", approver=" + approver +
+                ", address=" + address +
+                ", approverId=" + approverId +
                 ", approvalStatus=" + approvalStatus +
                 ", approvalDate=" + approvalDate +
                 ", mark=" + mark +
@@ -111,6 +163,6 @@
                 ", authDate=" + authDate +
                 ", createAt=" + createAt +
                 ", updateAt=" + updateAt +
-        "}";
-        }
+                "}";
+    }
 }
\ No newline at end of file

--
Gitblit v1.7.1