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.ExCoursePhase;
|
import com.gkhy.exam.system.service.ExCoursePhaseService;
|
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-phase")
|
public class ExCoursePhaseController {
|
@Autowired
|
private ExCoursePhaseService coursePhaseService;
|
|
@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")
|
})
|
@GetMapping("/list")
|
public CommonResult list(ExCoursePhase coursePhase){
|
return CommonResult.success(coursePhaseService.selectCoursePhaseList(coursePhase));
|
}
|
|
|
@ApiOperation(value = "根据id获取批次信息")
|
@GetMapping(value = { "/{phaseId}" })
|
public CommonResult getCoursePhaseInfo(@PathVariable(value = "phaseId", required = true) Long phaseId)
|
{
|
return CommonResult.success(coursePhaseService.selectCoursePhaseById(phaseId));
|
}
|
|
@Log(title = "批次管理", businessType = BusinessType.INSERT)
|
@ApiOperation(value = "新增批次")
|
@PostMapping
|
public CommonResult add(@Validated @RequestBody ExCoursePhase coursePhase){
|
return CommonResult.success(coursePhaseService.insertCoursePhase(coursePhase));
|
}
|
|
@Log(title = "批次管理", businessType = BusinessType.UPDATE)
|
@ApiOperation(value = "编辑批次")
|
@PutMapping
|
public CommonResult edit(@Validated @RequestBody ExCoursePhase coursePhase){
|
return CommonResult.success(coursePhaseService.updateCoursePhase(coursePhase));
|
}
|
|
@Log(title = "批次管理", businessType = BusinessType.UPDATE)
|
@ApiOperation(value = "删除批次")
|
@DeleteMapping(value = { "/{phaseId}" })
|
public CommonResult delete(@PathVariable(value = "phaseId", required = true) Long phaseId){
|
return CommonResult.success(coursePhaseService.deleteCoursePhaseById(phaseId));
|
}
|
|
@ApiOperation(value = "校验批次名称是否唯一")
|
@PostMapping("/checkNameUnique")
|
public CommonResult checkNameUnique(@RequestBody ExCoursePhase coursePhase)
|
{
|
return CommonResult.success(coursePhaseService.checkNameUnique(coursePhase));
|
}
|
|
}
|