package com.gkhy.exam.admin.web; import com.gkhy.exam.common.annotation.Log; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.common.enums.BusinessType; import com.gkhy.exam.system.domain.ExCourseChapter; import com.gkhy.exam.system.service.ExCourseChapterService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; /** *

* 课程章节表 前端控制器 *

* * @author kzy * @since 2024-06-05 15:07:36 */ @Api(tags = "课程章节前端控制器") @RestController @RequestMapping("/course-chapter") public class ExCourseChapterController { @Autowired private ExCourseChapterService courseChapterService; @ApiOperation(value = "课程章节列表(分页)") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"), @ApiImplicitParam(paramType = "query", name = "courseId", dataType = "long", required = true, value = "课程id") }) @GetMapping("/list") public CommonResult list(ExCourseChapter courseChapter){ return CommonResult.success(courseChapterService.selectChapterList(courseChapter)); } @ApiOperation(value = "根据id获取课程章节信息") @GetMapping(value = { "/{chapterId}" }) public CommonResult getCompanyInfo(@PathVariable(value = "chapterId", required = true) Long chapterId) { return CommonResult.success(courseChapterService.selectChapterById(chapterId)); } @Log(title = "课程章节管理", businessType = BusinessType.INSERT) @ApiOperation(value = "新增章节") @PostMapping public CommonResult add(@Validated @RequestBody ExCourseChapter courseChapter){ return CommonResult.success(courseChapterService.insertChapter(courseChapter)); } @Log(title = "课程章节管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "编辑章节") @PutMapping public CommonResult edit(@Validated @RequestBody ExCourseChapter courseChapter){ return CommonResult.success(courseChapterService.updateChapter(courseChapter)); } @Log(title = "课程章节管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "删除章节") @DeleteMapping(value = { "/{chapterId}" }) public CommonResult delete(@PathVariable(value = "chapterId", required = true) Long chapterId){ return CommonResult.success(courseChapterService.deleteChapterById(chapterId)); } @ApiOperation(value = "根据课程id获取课程章节列表") @GetMapping(value = { "/getCourseChapter" }) public CommonResult getCourseChapter(@RequestParam(required = true)Long courseId) { return CommonResult.success(courseChapterService.selectChapterByCourseId(courseId)); } @ApiOperation(value = "校验章节名称是否唯一") @PostMapping("/checkNameUnique") public CommonResult checkNameUnique(@RequestBody ExCourseChapter courseChapter) { return CommonResult.success(courseChapterService.checkNameUnique(courseChapter)); } }