From f0f00e9ba8a755e4317e029d73b69a92ad9f9df1 Mon Sep 17 00:00:00 2001 From: kongzy <kongzy> Date: 星期六, 14 九月 2024 17:02:41 +0800 Subject: [PATCH] update --- exam-common/src/main/java/com/gkhy/exam/common/enums/QuestionTypeEnum.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/exam-common/src/main/java/com/gkhy/exam/common/enums/QuestionTypeEnum.java b/exam-common/src/main/java/com/gkhy/exam/common/enums/QuestionTypeEnum.java index 682cff2..b0e411a 100644 --- a/exam-common/src/main/java/com/gkhy/exam/common/enums/QuestionTypeEnum.java +++ b/exam-common/src/main/java/com/gkhy/exam/common/enums/QuestionTypeEnum.java @@ -6,7 +6,8 @@ public enum QuestionTypeEnum { SINGLE(1, "单选题"), MULTI(2, "多选题"), - JUDGE(3, "判断题"); + JUDGE(3, "判断题"), + EASY(4, "简答题"); private final Integer code; private final String info; -- Gitblit v1.9.2