소스 검색

流业务层

he2802 4 년 전
부모
커밋
d655eb9d7f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      zhongzheng-admin/src/main/java/com/zhongzheng/controller/course/CourseModuleChapterController.java

+ 1 - 1
zhongzheng-admin/src/main/java/com/zhongzheng/controller/course/CourseModuleChapterController.java

@@ -57,7 +57,7 @@ public class CourseModuleChapterController extends BaseController {
 
     @ApiOperation("查询模块与章关系列表")
     @PreAuthorize("@ss.hasPermi('system:chapter:list')")
-    @GetMapping("/allList{id}")
+    @GetMapping("/allList/{id}")
     public AjaxResult<List<CourseModuleChapterVo>> all_list(@PathVariable("id" ) Long id) {
         List<CourseModuleChapterVo> list = iCourseModuleChapterService.getListById(id);
         return AjaxResult.success(list);