龚焕茏
2024-03-21 fd4f112458cbb1ea0f3f1177b185c6271f864ad3
ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java
@@ -32,7 +32,7 @@
    /**
     * 查询考核计分列表
     */
    @PreAuthorize("@ss.hasPermi('platform:score:list')")
//    @PreAuthorize("@ss.hasPermi('platform:score:list')")
    @GetMapping("/list")
    public TableDataInfo list(TExamineScore tExamineScore)
    {
@@ -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)