From c48f179be89343dc1620bfa147433bfe87d9bed3 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 11 十一月 2024 17:29:50 +0800
Subject: [PATCH] 检查项-亲和性处理

---
 jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java |   22 ++++++++++++++--------
 1 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java b/jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java
index d3799ad..aa26b8d 100644
--- a/jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java
+++ b/jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java
@@ -15,20 +15,26 @@
 @AllArgsConstructor
 public enum QueueStatusEnum implements IntArrayValuable {
 
-    //10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚 50:杩囧彿
-    WAITING((byte)10, "鎺掗槦涓�"),
-    RECALLED((byte)15, "宸插彫鍥�"),
-    READY((byte)20, "鍊欒瘖鍑嗗"),
-    ONSTAGE((byte)30, "灏辫瘖涓�"),
-    FINISH((byte)40, "灏辫瘖瀹屾垚"),
-    PASSED((byte)50, "杩囧彿");
+    //5:杩囧彿 10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚
+    PASSED(5, "宸茶繃鍙�"),
+    PASSED_INSTALL(7, "宸茶繃鍙�-瀹夎"),
+    WAITING(10, "鎺掗槦涓�"),
+    AFFINITY_WAITING(12, "宸蹭翰鍜�-鎺掗槦涓�"),
+    AFFINITY_RECEIVED(13, "宸蹭翰鍜�-宸查鐢�"),
+    RECALLED(15, "宸插彫鍥�"),
+    RECALLED_INSTALL(17, "宸插彫鍥�-瀹夎"),
+    READY(20, "鍊欒瘖涓�"),
+    ONSTAGE(30, "灏辫瘖涓�"),  // 鎴� 棰嗙敤涓�
+    RECEIVED(33, "宸查鐢�"),
+    INSTALLING(36, "瀹夎涓�"),
+    FINISH(40, "宸插氨璇�");
 
     public static final int[] ARRAYS = Arrays.stream(values()).mapToInt(QueueStatusEnum::getStatus).toArray();
 
     /**
      * 鐘舵�佸��
      */
-    private final Byte status;
+    private final Integer status;
     /**
      * 鐘舵�佸悕
      */

--
Gitblit v1.9.3