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/ComActNeighborCircleCommentDO.java |   32 ++++++++++++--------------------
 1 files changed, 12 insertions(+), 20 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentDO.java
index e05fcfd..3826aad 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentDO.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 lyq
@@ -22,7 +22,7 @@
     /**
      * 主键id
      */
-    @TableId(type = IdType.AUTO)
+    @TableId(type = IdType.ASSIGN_ID)
     private Long id;
 
     /**
@@ -66,26 +66,18 @@
      */
     private Integer isRelease;
 
+    @Override
+    public String toString() {
+        return "ComActNeighborCircleCommentDO{" + "id=" + id + ", circleId=" + circleId + ", userId=" + userId
+            + ", content=" + content + ", userPhone=" + userPhone + ", fabulousNum=" + fabulousNum + ", status="
+            + status + ", createAt=" + createAt + ", isRelease=" + isRelease + "}";
+    }
+
     /**
      * 是否是作者评论(1.是 2.否)
      */
-    public interface isRelease{
+    public interface isRelease {
         int yes = 1;
         int no = 2;
-    }
-
-    @Override
-    public String toString() {
-        return "ComActNeighborCircleCommentDO{" +
-                "id=" + id +
-                ", circleId=" + circleId +
-                ", userId=" + userId +
-                ", content=" + content +
-                ", userPhone=" + userPhone +
-                ", fabulousNum=" + fabulousNum +
-                ", status=" + status +
-                ", createAt=" + createAt +
-                ", isRelease=" + isRelease +
-                "}";
     }
 }
\ No newline at end of file

--
Gitblit v1.7.1