From 6d1cd76c47e92f6fbb33a1274cfec4c88e09938f Mon Sep 17 00:00:00 2001
From: phpcjl <phpcjl@gmail.com>
Date: 星期四, 05 十二月 2024 15:00:44 +0800
Subject: [PATCH] 1.完成开发门店打分接口

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/enums/ShopStatus.java |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/enums/ShopStatus.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/enums/ShopStatus.java
new file mode 100644
index 0000000..a82be5a
--- /dev/null
+++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/enums/ShopStatus.java
@@ -0,0 +1,18 @@
+package com.ruoyi.other.enums;
+
+import lombok.Getter;
+
+@Getter
+public enum ShopStatus {
+    SHOP_STATUS_NORMAL(1, "正常"),
+    SHOP_STATUS_FREEZE(2, "冻结");
+
+    private final Integer code;
+    private final String message;
+
+    ShopStatus(Integer code, String message) {
+        this.code = code;
+        this.message = message;
+    }
+
+}

--
Gitblit v1.7.1