From 7ef4892f9f24f941aca37e6b3991b808a0aca619 Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期五, 08 九月 2023 11:16:35 +0800 Subject: [PATCH] 优化 --- ycl-platform/src/main/java/com/ycl/common/constant/BaseCaseStatus.java | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/common/constant/BaseCaseStatus.java b/ycl-platform/src/main/java/com/ycl/common/constant/BaseCaseStatus.java new file mode 100644 index 0000000..437644c --- /dev/null +++ b/ycl-platform/src/main/java/com/ycl/common/constant/BaseCaseStatus.java @@ -0,0 +1,59 @@ +package com.ycl.common.constant; + +/** + * <p> + * 妗堜欢鐘舵�佺被 + * </p> + * + * @author mg + * @since 2022-10-02 + */ +public class BaseCaseStatus { + /** + * 寰呭鐞� + */ + public static final Integer PENDING = 0; + /** + * 璇姤 + */ + public static final Integer ERROR_REPORT = 1; + /** + * 涓婃姤 + */ + public static final Integer REPORT = 2; + /** + * 鍐嶅涔�/鍐嶈缁� + */ + public static final Integer RELEARN = 3; + /** + * 鏆備笉澶勭悊 + */ + public static final Integer NO_PROCESSING = 4; + /** + * 绔嬫 + */ + public static final Integer REGISTER = 5; + /** + * 璋冨害 + */ + public static final Integer DISPATCH = 6; + /** + * 澶勭疆 + */ + public static final Integer DISPOSE = 7; + /** + * 鏍告煡 + */ + public static final Integer CHECK = 8; + /** + * 缁撴 + */ + public static final Integer CLOSING_REGISTER = 9; + + + /** + * 寰呬笂鎶� + */ + public static final Integer WAIT_REPORT = 10; + +} -- Gitblit v1.8.0