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.ExCourseChapterPeriod;
|
import com.gkhy.exam.system.service.ExCourseChapterPeriodService;
|
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.*;
|
|
/**
|
* <p>
|
* 课时表 前端控制器
|
* </p>
|
*
|
* @author kzy
|
* @since 2024-06-05 15:07:36
|
*/
|
@Api(tags = "课时前端控制器")
|
@RestController
|
@RequestMapping("/course-chapter-period")
|
public class ExCourseChapterPeriodController {
|
@Autowired
|
private ExCourseChapterPeriodService courseChapterPeriodService;
|
|
@ApiOperation(value = "根据章节id获取课时列表")
|
@ApiImplicitParams({
|
@ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
|
@ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10")
|
})
|
@GetMapping("/getChapterPeriodByChapterId")
|
public CommonResult getChapterPeriodByChapterId(@RequestParam(required = true) Long chapterId){
|
return CommonResult.success(courseChapterPeriodService.selectChapterPeriodByChapterId(chapterId));
|
}
|
|
@ApiOperation(value = "根据id获取课时信息")
|
@GetMapping(value = { "/{periodId}" })
|
public CommonResult getChapterPeriodInfo(@PathVariable(value = "periodId", required = true) Long periodId)
|
{
|
return CommonResult.success(courseChapterPeriodService.selectPeriodById(periodId));
|
}
|
|
@Log(title = "课时管理", businessType = BusinessType.INSERT)
|
@ApiOperation(value = "新增课时")
|
@PostMapping
|
public CommonResult add(@Validated @RequestBody ExCourseChapterPeriod chapterPeriod){
|
return CommonResult.success(courseChapterPeriodService.insertPeriod(chapterPeriod));
|
}
|
|
@Log(title = "课时管理", businessType = BusinessType.UPDATE)
|
@ApiOperation(value = "编辑课时")
|
@PutMapping
|
public CommonResult edit(@Validated @RequestBody ExCourseChapterPeriod chapterPeriod){
|
return CommonResult.success(courseChapterPeriodService.updatePeriod(chapterPeriod));
|
}
|
|
@Log(title = "课时管理", businessType = BusinessType.UPDATE)
|
@ApiOperation(value = "删除课时")
|
@DeleteMapping(value = { "/{periodId}" })
|
public CommonResult delete(@PathVariable(value = "periodId", required = true) Long periodId){
|
return CommonResult.success(courseChapterPeriodService.deletePeriodById(periodId));
|
}
|
|
@ApiOperation(value = "校验课时名称是否唯一")
|
@PostMapping("/checkNameUnique")
|
public CommonResult checkNameUnique(@RequestBody ExCourseChapterPeriod chapterPeriod)
|
{
|
return CommonResult.success(courseChapterPeriodService.checkNameUnique(chapterPeriod));
|
}
|
}
|