deason 1 рік тому
батько
коміт
b65596f711

+ 3 - 3
src/main/java/cn/com/qmth/examcloud/tool/controller/IndexController.java

@@ -74,7 +74,7 @@ public class IndexController extends BaseController {
     }
 
     /**
-     * 更新正确答案并重新算分
+     * 重新算分
      */
     @GetMapping(value = "/admin/updateCorrectAnswerAndReFixScore")
     public String updateCorrectAnswerAndReFixScore() {
@@ -82,7 +82,7 @@ public class IndexController extends BaseController {
     }
 
     /**
-     * 配置考试调卷规则
+     * 批量配置考试调卷规则
      */
     @GetMapping(value = "/admin/configExamPaper")
     public String configExamPaper() {
@@ -90,7 +90,7 @@ public class IndexController extends BaseController {
     }
 
     /**
-     * 创建随机抽卷模板
+     * 批量创建随机抽卷模板
      */
     @GetMapping(value = "/admin/createRandomPaperTemplate")
     public String createRandomPaperTemplate() {

+ 2 - 2
src/main/java/cn/com/qmth/examcloud/tool/enums/TaskType.java

@@ -15,9 +15,9 @@ public enum TaskType {
 
     UPDATE_CORRECT_ANSWER_AND_RE_FIX_SCORE("重新算分", UpdateCorrectAnswerAndReFixScoreTask.class),
 
-    CONFIG_EXAM_PAPER("配置考试调卷规则", ConfigExamPaperTask.class),
+    CONFIG_EXAM_PAPER("批量配置考试调卷规则", ConfigExamPaperTask.class),
 
-    CREATE_RANDOM_PAPER_TEMPLATE("创建随机抽卷模板", CreateRandomPaperTemplateTask.class);
+    CREATE_RANDOM_PAPER_TEMPLATE("批量创建随机抽卷模板", CreateRandomPaperTemplateTask.class);
 
     TaskType(String description, Class<? extends TaskService> impl) {
         this.description = description;

+ 1 - 1
src/main/java/cn/com/qmth/examcloud/tool/service/update_correct_answer_and_re_fix_score/UpdateCorrectAnswerAndReFixScoreTask.java

@@ -96,7 +96,7 @@ public class UpdateCorrectAnswerAndReFixScoreTask implements TaskService {
 
         int index = 0, total = examStudents.size();
         for (ExamStudentVO examStudent : examStudents) {
-            // 按考生逐个更新正确答案并重新算分
+            // 按考生逐个重新算分
             this.fix(user, examId, course.getCourseId(), examStudent.getExamStudentId(), updateObjectiveAnswer,
                     updateObjectiveScore, updateSubjectiveScore);
 

+ 1 - 1
src/main/resources/templates/admin/configExamPaper.ftlh

@@ -13,7 +13,7 @@
         <el-main>
             <el-row>
                 <el-col :span="8" :offset="8">
-                    <h3 style="text-align: center">配置考试调卷规则</h3>
+                    <h3 style="text-align: center">批量配置考试调卷规则</h3>
 
                     <el-form label-position="right" label-width="100px" :model="curForm" ref="curForm" :rules="rules">
                         <el-form-item label="考试ID" prop="examId">

+ 1 - 1
src/main/resources/templates/admin/createRandomPaperTemplate.ftlh

@@ -13,7 +13,7 @@
         <el-main>
             <el-row>
                 <el-col :span="8" :offset="8">
-                    <h3 style="text-align: center">创建随机抽卷模板</h3>
+                    <h3 style="text-align: center">批量创建随机抽卷模板</h3>
 
                     <el-form label-position="right" label-width="130px" :model="curForm" ref="curForm" :rules="rules">
                         <el-form-item label="考试ID" prop="examId">

+ 2 - 2
src/main/resources/templates/admin/workspace.ftlh

@@ -30,12 +30,12 @@
                 <el-row :gutter="10" style="margin-top: 10px">
                     <el-col :span="8">
                         <el-card shadow="hover">
-                            <el-link href="${base}/admin/configExamPaper">配置考试调卷规则</el-link>
+                            <el-link href="${base}/admin/configExamPaper">批量配置考试调卷规则</el-link>
                         </el-card>
                     </el-col>
                     <el-col :span="8">
                         <el-card shadow="hover">
-                            <el-link href="${base}/admin/createRandomPaperTemplate">创建随机抽卷模板
+                            <el-link href="${base}/admin/createRandomPaperTemplate">批量创建随机抽卷模板
                             </el-link>
                         </el-card>
                     </el-col>