heheng
2024-11-26 c9d2e60f7d1a5cfe9e5b2da93af4d9edeecf5577
expert-admin/src/main/java/com/gkhy/web/controller/bussiness/EvaluationController.java
@@ -32,7 +32,7 @@
    /**
     * 查询考评管理列表
     */
    @PreAuthorize("@ss.hasPermi('system:evaluation:list')")
    //@PreAuthorize("@ss.hasPermi('system:evaluation:list')")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10,最大50")
@@ -49,7 +49,7 @@
    /**
     * 新增考评管理
     */
    @PreAuthorize("@ss.hasPermi('system:evaluation:add')")
    // @PreAuthorize("@ss.hasPermi('system:evaluation:add')")
    @PostMapping("/add")
    @ApiOperation(value = "新增考评管理")
    public AjaxResult add(@Validated @RequestBody Evaluation evaluation) {
@@ -59,7 +59,7 @@
    /**
     * 修改考评管理
     */
    @PreAuthorize("@ss.hasPermi('system:evaluation:edit')")
    //@PreAuthorize("@ss.hasPermi('system:evaluation:edit')")
    @PutMapping("/edit")
    @ApiOperation(value = "修改考评管理")
    public AjaxResult edit(@Validated @RequestBody Evaluation evaluation) {
@@ -69,7 +69,7 @@
    /**
     * 删除考评管理
     */
    @PreAuthorize("@ss.hasPermi('system:evaluation:remove')")
    //@PreAuthorize("@ss.hasPermi('system:evaluation:remove')")
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除考评管理")
    public AjaxResult remove(@PathVariable Long[] ids) {