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/ComShopStoreDO.java |   59 ++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 32 insertions(+), 27 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopStoreDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopStoreDO.java
index 1911b63..578bc9c 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopStoreDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopStoreDO.java
@@ -1,12 +1,12 @@
 package com.panzhihua.service_community.model.dos;
 
-import com.baomidou.mybatisplus.annotation.*;
-import lombok.Data;
-
 import java.io.Serializable;
 import java.math.BigDecimal;
 import java.util.Date;
 
+import com.baomidou.mybatisplus.annotation.*;
+
+import lombok.Data;
 
 /**
  * @auther lyq
@@ -23,7 +23,7 @@
     /**
      * 店铺id
      */
-    @TableId(type = IdType.AUTO)
+    @TableId(type = IdType.ASSIGN_ID)
     private Long id;
 
     /**
@@ -47,7 +47,7 @@
     private String phone;
 
     /**
-     * 配送方式(1.商家配送  2.快递物流)
+     * 配送方式(1.商家配送 2.快递物流)
      */
     private Integer deliveryType;
 
@@ -57,12 +57,12 @@
     private String remark;
 
     /**
-     * 店铺状态(1.启用  2.禁用)
+     * 店铺状态(1.启用 2.禁用)
      */
     private Integer status;
 
     /**
-     * 删除状态(1.未删除  2.已删除)
+     * 删除状态(1.未删除 2.已删除)
      */
     private Integer deleteStatus;
 
@@ -114,31 +114,36 @@
     private Date updateAt;
 
     /**
+     * 负责人
+     */
+    private String contacts;
+    /**
      * 管理后台用户id
      */
     private Long sysUserId;
 
     @Override
     public String toString() {
-        return "ComShopStoreDO{" +
-                "id=" + id +
-                ", name=" + name +
-                ", classifyId=" + classifyId +
-                ", logo=" + logo +
-                ", phone=" + phone +
-                ", deliveryType=" + deliveryType +
-                ", remark=" + remark +
-                ", status=" + status +
-                ", deleteStatus=" + deleteStatus +
-                ", storeDescribe=" + storeDescribe +
-                ", sale=" + sale +
-                ", saleVolume=" + saleVolume +
-                ", storeAccount=" + storeAccount +
-                ", storePassword=" + storePassword +
-                ", storeDetail=" + storeDetail +
-                ", createBy=" + createBy +
-                ", createAt=" + createAt +
-                ", updateAt=" + updateAt +
-                "}";
+        return "ComShopStoreDO{" + "id=" + id + ", name=" + name + ", classifyId=" + classifyId + ", logo=" + logo
+            + ", phone=" + phone + ", deliveryType=" + deliveryType + ", remark=" + remark + ", status=" + status
+            + ", deleteStatus=" + deleteStatus + ", storeDescribe=" + storeDescribe + ", sale=" + sale + ", saleVolume="
+            + saleVolume + ", storeAccount=" + storeAccount + ", storePassword=" + storePassword + ", storeDetail="
+            + storeDetail + ", createBy=" + createBy + ", createAt=" + createAt + ", updateAt=" + updateAt + "}";
+    }
+
+    /**
+     * 店铺状态(1.启用 2.禁用)
+     */
+    public interface status {
+        int yes = 1;
+        int no = 2;
+    }
+
+    /**
+     * 删除状态(1.未删除 2.已删除)
+     */
+    public interface deleteStatus {
+        int no = 1;
+        int yes = 2;
     }
 }
\ No newline at end of file

--
Gitblit v1.7.1