package com.gkhy.exam.admin.controller.web; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.CourseEffectiven; import com.gkhy.exam.system.domain.InternalAuditPlan; import com.gkhy.exam.system.service.CourseEffectivenService; 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.web.bind.annotation.*; @RestController @RequestMapping("/effectiven") @Api(tags = "课程有效性评价管理") public class CourseEffectivenController { @Autowired private CourseEffectivenService courseEffectivenService; /** * 课程有效性评价列表 * @param courseEffectiven * @return */ @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 listCourseEffectiven(CourseEffectiven courseEffectiven){ return CommonResult.success(courseEffectivenService.selectCourseEffectivenList(courseEffectiven)); } /** * 课程有效性评价新增 * @param courseEffectiven * @return */ @ApiOperation(value = "课程有效性评价新增") @PostMapping("/insert") public CommonResult insertCourseEffectiven(@RequestBody CourseEffectiven courseEffectiven){ return courseEffectivenService.insertCourseEffectiven(courseEffectiven); } /** * 课程有效性评价修改 * @param courseEffectiven * @return */ @ApiOperation(value = "课程有效性评价修改") @PostMapping("/update") public CommonResult updateCourseEffectiven(@RequestBody CourseEffectiven courseEffectiven){ return courseEffectivenService.updateCourseEffectiven(courseEffectiven); } /** * 课程有效性评价删除 * @param effectivenId * @return */ @ApiOperation(value = "课程有效性评价删除") @GetMapping("/deleted") public CommonResult deletedCourseEffectiven(@RequestParam("effectivenId") Integer effectivenId){ return courseEffectivenService.deletedCourseEffectiven(effectivenId); } }