package com.gkhy.exam.admin.system; 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.SysCategory; import com.gkhy.exam.system.service.SysCategoryService; import io.swagger.annotations.Api; 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 11:15:14 */ @Api(tags = "课程分类前端控制器") @RestController @RequestMapping("/system/category") public class SysCategoryController { @Autowired private SysCategoryService categoryService; @ApiOperation(value = "课程分类列表") @GetMapping("/list") public CommonResult list(SysCategory category){ return CommonResult.success(categoryService.selectCategoryList(category)); } @ApiOperation(value = "根据id获取分类信息") @GetMapping(value = { "/{categoryId}" }) public CommonResult getCategoryInfo(@PathVariable(value = "categoryId", required = true) Long categoryId){ return CommonResult.success(categoryService.selectCategoryById(categoryId)); } @Log(title = "课程分类管理", businessType = BusinessType.INSERT) @ApiOperation(value = "新增课程分类") @PostMapping public CommonResult add(@Validated @RequestBody SysCategory category){ return CommonResult.success(categoryService.insertCategory(category)); } @Log(title = "课程分类管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "编辑课程分类") @PutMapping public CommonResult edit(@Validated @RequestBody SysCategory category){ return CommonResult.success(categoryService.updateCategory(category)); } @Log(title = "课程分类管理", businessType = BusinessType.UPDATE) @ApiOperation(value = "删除课程分类") @DeleteMapping(value = { "/{categoryId}" }) public CommonResult delete(@PathVariable(value = "categoryId", required = true) Long categoryId){ return CommonResult.success(categoryService.deleteCategoryById(categoryId)); } @ApiOperation(value = "校验分类名称是否唯一") @PostMapping("/checkNameUnique") public CommonResult checkNameUnique(@RequestBody SysCategory category) { return CommonResult.success(categoryService.checkNameUnique(category)); } }