Parcourir la source

修改视频培训接口

syh il y a 5 ans
Parent
commit
44bba80f6d

+ 2 - 2
jeecg-boot-module-system/src/main/java/org/jeecg/modules/ctop/controller/EduLessonController.java

@@ -40,7 +40,7 @@ public class EduLessonController {
     @GetMapping(value = "/system/lesson")
     public Result<List<String>> getSystemLessonList() {
         Result<List<String>> result = new Result<>();
-        List<String> list = eduLessonService.getTitleList("系统操作");
+        List<String> list = eduLessonService.getTitleList("汇创视频培训");
         result.setResult(list);
         result.setSuccess(true);
         return result;
@@ -49,7 +49,7 @@ public class EduLessonController {
     @GetMapping(value = "/system/topic")
     public Result<List<String>> getSystemTopicList(String title) {
         Result<List<String>> result = new Result<>();
-        List<String> list = eduLessonService.getTopicList("系统操作", title);
+        List<String> list = eduLessonService.getTopicList("汇创视频培训", title);
         result.setResult(list);
         result.setSuccess(true);
         return result;