zjh
2023-10-12 8cde7ee1143bae70eb68d2b75f572d5b4dbadf98
ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictSfxmController.java
@@ -45,7 +45,7 @@
    /**
     * 查询收费项目列表
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:list')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询")
    public TableDataInfo list(DictSfxm dictSfxm) {
@@ -65,7 +65,7 @@
    /**
     * 导出收费项目列表
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:export')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:export')")
    @Log(title = "收费项目", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    @ApiOperation(value = "导出")
@@ -78,7 +78,7 @@
    /**
     * 获取收费项目详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:query')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:query')")
    @GetMapping(value = "/{id}")
    @ApiOperation(value = "详情信息")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
@@ -88,7 +88,7 @@
    /**
     * 新增收费项目
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:add')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:add')")
    @Log(title = "收费项目", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增")
@@ -99,7 +99,7 @@
    /**
     * 修改收费项目
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:edit')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:edit')")
    @Log(title = "收费项目", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改")
@@ -110,7 +110,7 @@
    /**
     * 删除收费项目
     */
    @PreAuthorize("@ss.hasPermi('system:sfxm:remove')")
//    @PreAuthorize("@ss.hasPermi('system:sfxm:remove')")
    @Log(title = "收费项目", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除")