浏览代码

Merge branch 'master' of http://49.234.186.218:9000/root/ieplus

abpcoder 1 天之前
父节点
当前提交
835e21793f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ie-admin/src/main/java/com/ruoyi/web/controller/learn/LearnQuestionsController.java

+ 1 - 1
ie-admin/src/main/java/com/ruoyi/web/controller/learn/LearnQuestionsController.java

@@ -117,7 +117,7 @@ public class LearnQuestionsController extends BaseController
     {
         QuestionType qt = QuestionType.of(param.getInteger("type"));
         List<Long> ids = param.getList ("ids", Long.class);
-        learnQuestionsService.updateQuestionType(qt.name(), ids);
+        learnQuestionsService.updateQuestionType(qt.getTitle(), ids);
         return AjaxResult.success();
     }
 }