fuliqi
2024-03-21 3101e4c6883286f7171d494b09b1a7ff980a67fc
考核积分取消权限
1个文件已修改
10 ■■■■ 已修改文件
ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java
@@ -44,7 +44,7 @@
    /**
     * 导出考核计分列表
     */
    @PreAuthorize("@ss.hasPermi('platform:score:export')")
//    @PreAuthorize("@ss.hasPermi('platform:score:export')")
    @Log(title = "考核计分", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, TExamineScore tExamineScore)
@@ -57,7 +57,7 @@
    /**
     * 获取考核计分详细信息
     */
    @PreAuthorize("@ss.hasPermi('platform:score:query')")
//    @PreAuthorize("@ss.hasPermi('platform:score:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -67,7 +67,7 @@
    /**
     * 新增考核计分
     */
    @PreAuthorize("@ss.hasPermi('platform:score:add')")
//    @PreAuthorize("@ss.hasPermi('platform:score:add')")
    @Log(title = "考核计分", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody TExamineScore tExamineScore)
@@ -78,7 +78,7 @@
    /**
     * 修改考核计分
     */
    @PreAuthorize("@ss.hasPermi('platform:score:edit')")
//    @PreAuthorize("@ss.hasPermi('platform:score:edit')")
    @Log(title = "考核计分", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody TExamineScore tExamineScore)
@@ -89,7 +89,7 @@
    /**
     * 删除考核计分
     */
    @PreAuthorize("@ss.hasPermi('platform:score:remove')")
//    @PreAuthorize("@ss.hasPermi('platform:score:remove')")
    @Log(title = "考核计分", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)