2 커밋 17d61635a4 ... 60464700f5

작성자 SHA1 메시지 날짜
  mingfu 60464700f5 Merge branch 'master' of http://49.234.186.218:9000/root/ieplus 1 주 전
  mingfu 888be6c65f 题型保存中文名 1 주 전
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();
     }
 }