package com.gkhy.exam.admin.controller.web; import com.gkhy.exam.common.annotation.Log; import com.gkhy.exam.common.annotation.RepeatSubmit; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.common.enums.BusinessType; import com.gkhy.exam.system.domain.ExResource; import com.gkhy.exam.system.service.ExResourceService; 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-06 10:25:36 */ @Api(tags = "课程资源前端控制器") @RestController @RequestMapping("/resource") public class ExResourceController { @Autowired private ExResourceService resourceService; @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(ExResource resource){ return CommonResult.success(resourceService.selectResourseList(resource)); } @ApiOperation(value = "根据id获取资源信息") @GetMapping(value = { "/{resourceId}" }) public CommonResult getResourceInfo(@PathVariable(value = "resourceId", required = true) Long resourceId) { return CommonResult.success(resourceService.selectResourceById(resourceId)); } @RepeatSubmit @Log(title = "资源管理", businessType = BusinessType.INSERT) @ApiOperation(value = "新增资源") @PostMapping public CommonResult add(@Validated @RequestBody ExResource resource){ return CommonResult.success(resourceService.insertResource(resource)); } @RepeatSubmit @Log(title = "资源管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "编辑资源") @PutMapping public CommonResult edit(@Validated @RequestBody ExResource resource){ return CommonResult.success(resourceService.updateResource(resource)); } @RepeatSubmit @Log(title = "资源管理", businessType = BusinessType.DELETE) @ApiOperation(value = "删除资源") @DeleteMapping(value = { "/{resourceId}" }) public CommonResult delete(@PathVariable(value = "resourceId", required = true) Long resourceId){ return CommonResult.success(resourceService.deleteResourceById(resourceId)); } @ApiOperation(value = "校验资源名称是否唯一") @PostMapping("/checkNameUnique") public CommonResult checkNameUnique(@RequestBody ExResource resource) { return CommonResult.success(resourceService.checkNameUnique(resource)); } }