package com.gkhy.exam.admin.controller.web; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.PerformanceEvaluation; import com.gkhy.exam.system.domain.QualityInformationInside; import com.gkhy.exam.system.service.PerformanceEvaluationService; 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.*; @Api(tags = "绩效评价") @RestController @RequestMapping("/performance/evaluation") public class PerformanceEvaluationController { @Autowired private PerformanceEvaluationService performanceEvaluationService; /** * 绩效评价列表 * @param performanceEvaluation * @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 listPerformanceEvaluation(PerformanceEvaluation performanceEvaluation){ return CommonResult.success(performanceEvaluationService.selectPerformanceEvaluationList(performanceEvaluation)); } /** * 绩效评价新增 * @param performanceEvaluation * @return */ @ApiOperation(value = "绩效评价新增") @PostMapping("/insert") public CommonResult insertPerformanceEvaluation(@RequestBody PerformanceEvaluation performanceEvaluation){ return performanceEvaluationService.insertPerformanceEvaluation(performanceEvaluation); } /** * 绩效评价修改 * @param performanceEvaluation * @return */ @ApiOperation(value = "绩效评价修改") @PostMapping("/update") public CommonResult updatePerformanceEvaluation(@RequestBody PerformanceEvaluation performanceEvaluation){ return performanceEvaluationService.updatePerformanceEvaluation(performanceEvaluation); } /** * 绩效评价删除 * @param evaluationId * @return */ @ApiOperation(value = "绩效评价删除") @GetMapping("/deleted") public CommonResult deletedPerformanceEvaluation(@RequestParam("evaluationId") Integer evaluationId){ return performanceEvaluationService.deletedPerformanceEvaluation(evaluationId); } }