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