From adb4da3c83649d550b8674feb1eb0926fbace30e Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期一, 11 十一月 2024 13:45:12 +0800 Subject: [PATCH] 排队&抢人时 亲和检查项目处理 --- jh-module-ecg/jh-module-ecg-api/src/main/java/cn/lihu/jh/module/ecg/enums/QueueStatusEnum.java | 21 +++++++++++++-------- 1 files changed, 13 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..f6f998d 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,25 @@ @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_ALREADY(12, "宸蹭翰鍜�"), + 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