From 069328ea846a08e673c508725e7e8d019f8a6333 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期日, 30 三月 2025 20:49:09 +0800 Subject: [PATCH] get room profile --- jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java | 25 ++++++++++++++----------- 1 files changed, 14 insertions(+), 11 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 d6b1275..de8d201 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,23 +15,26 @@ @AllArgsConstructor public enum QueueStatusEnum implements IntArrayValuable { - //5:杩囧彿 10:鎺掗槦涓� 15:宸插彫鍥� 20:鍊欒瘖鍑嗗 30:灏辫瘖涓� 40:灏辫瘖瀹屾垚 - PASSED((byte)5, "宸茶繃鍙�"), - PASSED_INSTALL((byte)7, "宸茶繃鍙�-瀹夎"), - WAITING((byte)10, "鎺掗槦涓�"), - RECALLED((byte)15, "宸插彫鍥�"), - READY((byte)20, "鍊欒瘖涓�"), - ONSTAGE((byte)30, "灏辫瘖涓�"), // 鎴� 棰嗙敤涓� - RECEIVED((byte)33, "宸查鐢�"), - INSTALLING((byte)36, "瀹夎涓�"), - FINISH((byte)40, "宸插氨璇�"); + PASSED_WAITING(3, "宸茶繃鍙�-鎺掗槦涓�"), + 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