From 8458e64aab474c0fc2f49ae4ff22fb11ce5cf6e2 Mon Sep 17 00:00:00 2001 From: “djh” <“3298565835@qq.com”> Date: 星期一, 11 十一月 2024 16:55:28 +0800 Subject: [PATCH] 批次新增学员查询条件,新增题目导入接口 --- exam-common/src/main/java/com/gkhy/exam/common/constant/Constant.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/exam-common/src/main/java/com/gkhy/exam/common/constant/Constant.java b/exam-common/src/main/java/com/gkhy/exam/common/constant/Constant.java index 3e91adb..345db8e 100644 --- a/exam-common/src/main/java/com/gkhy/exam/common/constant/Constant.java +++ b/exam-common/src/main/java/com/gkhy/exam/common/constant/Constant.java @@ -142,4 +142,14 @@ */ public static final String[] JOB_ERROR_STR = { "java.net.URL", "javax.naming.InitialContext", "org.yaml.snakeyaml", "org.springframework", "org.apache", "com.ruoyi.common.utils.file", "com.ruoyi.common.config" }; + + + /** + * 考试通过 + */ + public static final Integer EXAM_PASS = 1; + /** + * 考试未通过 + */ + public static final Integer EXAM_UNPASS = 0; } -- Gitblit v1.9.2