From f2f709bbefa5052ff89b91c534c118f10a45363f Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 25 十一月 2024 21:54:42 +0800
Subject: [PATCH] 装机设备需要医生手动输入,防止出错
---
jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 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 c4f6965..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
@@ -16,19 +16,25 @@
public enum QueueStatusEnum implements IntArrayValuable {
//5:杩囧彿 10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚
- PASSED((byte)5, "杩囧彿"),
- WAITING((byte)10, "鎺掗槦涓�"),
- RECALLED((byte)15, "宸插彫鍥�"),
- READY((byte)20, "鍊欒瘖鍑嗗"),
- ONSTAGE((byte)30, "灏辫瘖涓�"),
- FINISH((byte)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