package com.ims.eval.controller; import com.ims.eval.config.CustomException; import com.ims.eval.entity.dto.result.R; import com.ims.eval.entity.EvaluationPersonnel; import com.ims.eval.service.IEvaluationPersonnelService; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** *
* 考评人员 前端控制器 *
* * @author wang * @since 2023-03-06 */ @RestController @RequestMapping("//evaluation-personnel") public class EvaluationPersonnelController { @Autowired private IEvaluationPersonnelService evaluationPersonnelService; //@ImsPreAuth("eval:evaluationPersonnel:view") @GetMapping(value = "listAll") public R listAll( @RequestParam(value = "id", required = false) String id, @RequestParam(value = "enable", required = false) boolean enable) { List