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/ComSwDangerReportDO.java |  136 ++++++++++++++++++++-------------------------
 1 files changed, 60 insertions(+), 76 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComSwDangerReportDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComSwDangerReportDO.java
index 61f641c..487cdfa 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComSwDangerReportDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComSwDangerReportDO.java
@@ -1,11 +1,11 @@
 package com.panzhihua.service_community.model.dos;
 
-import com.baomidou.mybatisplus.annotation.*;
-import lombok.Data;
-
 import java.io.Serializable;
 import java.util.Date;
 
+import com.baomidou.mybatisplus.annotation.*;
+
+import lombok.Data;
 
 /**
  * @auther txb
@@ -20,69 +20,69 @@
     private static final long serialVersionUID = 1L;
 
     /**
-    * 主键id
-    */
-    @TableId(type = IdType.INPUT)
+     * 主键id
+     */
+    @TableId(value = "id",type = IdType.INPUT)
     private Long id;
 
     /**
-    * 隐患编号
-    */
+     * 隐患编号
+     */
     private Integer dangerNo;
 
     /**
-    * 隐患名称
-    */
+     * 隐患名称
+     */
     private String dangerName;
 
     /**
-    * 隐患类型(1.火灾隐患 2.汛情隐患 3.疫情隐患)
-    */
+     * 隐患类型(1.火灾隐患 2.汛情隐患 3.疫情隐患)
+     */
     private String dangerType;
 
     /**
-    * 状态(1.待处理 2.待整改 3.已整改)
-    */
+     * 状态(1.待处理 2.待整改 3.已整改)
+     */
     private String status;
 
     /**
-    * 风险等级(1.红色预警 2.橙色预警 3.黄色预警 4.蓝色预警)
-    */
+     * 风险等级(1.红色预警 2.橙色预警 3.黄色预警 4.蓝色预警)
+     */
     private String dangerLevel;
 
     /**
-    * 排查时间
-    */
+     * 排查时间
+     */
     private String checkTime;
 
     /**
-    * 主体部门、单位或个人全称
-    */
+     * 主体部门、单位或个人全称
+     */
     private String unitName;
 
     /**
-    * 隐患简述
-    */
+     * 隐患简述
+     */
     private String dagerDescription;
 
     /**
-    * 是否立即整改(1是 、0否)
-    */
+     * 是否立即整改(1是 、0否)
+     */
     private Integer isRectifyImmediately;
 
     /**
-    * 采取措施
-    */
+     * 采取措施
+     */
     private String takeSteps;
 
     /**
-    * 采取措施照片
-    */
+     * 采取措施照片
+     */
     private String stepsPhoto;
 
     /**
-    * 整改人员
-    */
+     * 整改人员
+     */
     private String rectifyPerson;
 
     /**
@@ -96,23 +96,23 @@
     private String personPhone;
 
     /**
-    * 整改时间
-    */
+     * 整改时间
+     */
     private String rectifyTime;
 
     /**
-    * 社区处理建议
-    */
+     * 社区处理建议
+     */
     private String communitySuggestion;
 
     /**
-    * 街道安全人员管理建议
-    */
+     * 街道安全人员管理建议
+     */
     private String streetSuggestion;
 
     /**
-    * 承办记录
-    */
+     * 承办记录
+     */
     private String undertakeRecord;
 
     /**
@@ -126,57 +126,41 @@
     private String assignPerson;
 
     /**
-    * 备注
-    */
+     * 备注
+     */
     private String remark;
 
     /**
-    * 创建时间
-    */
+     * 创建时间
+     */
     @TableField(fill = FieldFill.INSERT)
     private Date createAt;
 
     /**
-    * 创建人
-    */
+     * 创建人
+     */
     private Long createBy;
 
     /**
-    * 更新时间
-    */
+     * 更新时间
+     */
     @TableField(fill = FieldFill.INSERT_UPDATE)
     private Date updateAt;
 
     /**
-    * 修改人
-    */
+     * 修改人
+     */
     private Long updateBy;
 
-@Override
-public String toString() {
-        return "ComSwDangerReportDO{" +
-                "id=" + id +
-                ", dangerNo=" + dangerNo +
-                ", dangerName=" + dangerName +
-                ", dangerType=" + dangerType +
-                ", status=" + status +
-                ", dangerLevel=" + dangerLevel +
-                ", checkTime=" + checkTime +
-                ", unitName=" + unitName +
-                ", dagerDescription=" + dagerDescription +
-                ", isRectifyImmediately=" + isRectifyImmediately +
-                ", takeSteps=" + takeSteps +
-                ", stepsPhoto=" + stepsPhoto +
-                ", rectifyPerson=" + rectifyPerson +
-                ", rectifyTime=" + rectifyTime +
-                ", communitySuggestion=" + communitySuggestion +
-                ", streetSuggestion=" + streetSuggestion +
-                ", undertakeRecord=" + undertakeRecord +
-                ", remark=" + remark +
-                ", createAt=" + createAt +
-                ", createBy=" + createBy +
-                ", updateAt=" + updateAt +
-                ", updateBy=" + updateBy +
-        "}";
-        }
-        }
\ No newline at end of file
+    @Override
+    public String toString() {
+        return "ComSwDangerReportDO{" + "id=" + id + ", dangerNo=" + dangerNo + ", dangerName=" + dangerName
+            + ", dangerType=" + dangerType + ", status=" + status + ", dangerLevel=" + dangerLevel + ", checkTime="
+            + checkTime + ", unitName=" + unitName + ", dagerDescription=" + dagerDescription
+            + ", isRectifyImmediately=" + isRectifyImmediately + ", takeSteps=" + takeSteps + ", stepsPhoto="
+            + stepsPhoto + ", rectifyPerson=" + rectifyPerson + ", rectifyTime=" + rectifyTime
+            + ", communitySuggestion=" + communitySuggestion + ", streetSuggestion=" + streetSuggestion
+            + ", undertakeRecord=" + undertakeRecord + ", remark=" + remark + ", createAt=" + createAt + ", createBy="
+            + createBy + ", updateAt=" + updateAt + ", updateBy=" + updateBy + "}";
+    }
+}
\ No newline at end of file

--
Gitblit v1.7.1