From 4a9b4626e7b359f813d4bb117e1e73e5a62975a8 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 10 四月 2025 11:07:47 +0800
Subject: [PATCH] 代码初始化

---
 server/src/main/java/com/doumee/core/constants/Constants.java |   57 ++++++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 48 insertions(+), 9 deletions(-)

diff --git a/server/src/main/java/com/doumee/core/constants/Constants.java b/server/src/main/java/com/doumee/core/constants/Constants.java
index b35c5f1..5e248fd 100644
--- a/server/src/main/java/com/doumee/core/constants/Constants.java
+++ b/server/src/main/java/com/doumee/core/constants/Constants.java
@@ -1,6 +1,7 @@
 package com.doumee.core.constants;
 
 import lombok.AllArgsConstructor;
+import lombok.Data;
 import lombok.Getter;
 
 import java.util.*;
@@ -205,14 +206,52 @@
     }
 
 
-    public interface workOrderStatus{
-        int waitConfirm = 0;
-        int waitAllocation = 1;
-        int waitDeal = 2;
-        int sheClose = 3;
-        int wtsClose = 4;
-        int close = 5;
+
+    public enum workOrderStatus{
+        waitConfirm( 0, "寰呭垎閰峎TS","寰呭垎閰峎TS",""),
+        waitAllocation(1, "寰呭垎閰嶄换鍔�","寰呭垎閰嶄换鍔�",""),
+        waitDeal(2, "寰呭鐞�","寰呭鐞�",""),
+        sheClose(3, "宸茶В鍐�","SHE宸插叧闂�",""),
+        wtsClose(4, "宸茶В鍐�","WTS宸插叧闂�",""),
+        close(5, "宸茶В鍐�","宸茶В鍐�",""),
+        urge (6, "鍌績","","")
+        ;
+
+        private int status;
+        private String statusInfo;
+        private String logTitle;
+        private String noticeContent;
+
+        public int getStatus() {
+            return status;
+        }
+
+        public void setStatus(int status) {
+            this.status = status;
+        }
+
+        public String getStatusInfo() {
+            return statusInfo;
+        }
+
+        public void setStatusInfo(String statusInfo) {
+            this.statusInfo = statusInfo;
+        }
+
+        public String getLogTitle() {
+            return logTitle;
+        }
+
+        public void setLogTitle(String logTitle) {
+            this.logTitle = logTitle;
+        }
+
+        public String getNoticeContent() {
+            return noticeContent;
+        }
+
+        public void setNoticeContent(String noticeContent) {
+            this.noticeContent = noticeContent;
+        }
     }
-
-
 }

--
Gitblit v1.9.3