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/ComShopFlowerOrderDeliveryDO.java |   22 ++++++++++++++++++----
 1 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopFlowerOrderDeliveryDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopFlowerOrderDeliveryDO.java
index 03ee351..e707f29 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopFlowerOrderDeliveryDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopFlowerOrderDeliveryDO.java
@@ -39,13 +39,13 @@
      * 配送单状态(1.配送中 2.已送达)
      */
     @TableField(value = "delivery_status")
-    private Byte deliveryStatus;
+    private Integer deliveryStatus;
 
     /**
      * 删除状态(1.未删除 2.已删除)
      */
     @TableField(value = "delete_status")
-    private Byte deleteStatus;
+    private Integer deleteStatus;
 
     /**
      * 配送时间
@@ -63,7 +63,7 @@
      * 配送方式(1.自提  2.快递)
      */
     @TableField(value = "delivery_type")
-    private Byte deliveryType;
+    private Integer deliveryType;
 
     /**
      * 自提点id
@@ -75,7 +75,7 @@
      * 自提点名称
      */
     @TableField(value = "point_name")
-    private Long pointName;
+    private String pointName;
 
     /**
      * 配送订单数量
@@ -107,5 +107,19 @@
     @TableField(value = "update_at", fill = FieldFill.UPDATE)
     private Date updateAt;
 
+    /**
+     * 配送单状态(1.配送中 2.已送达)
+     */
+    public interface deliveryStatus {
+        int psz = 1;
+        int ysd = 2;
+    }
 
+    /**
+     * 删除状态(1.未删除 2.已删除)
+     */
+    public interface deleteStatus {
+        int wsc = 1;
+        int ysc = 2;
+    }
 }
\ No newline at end of file

--
Gitblit v1.7.1