zjh
2025-01-02 eac48696e8df9a0a6eace257adcea4ee203d6fe0
ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictSsdmController.java
@@ -40,7 +40,7 @@
    /**
     * 查询手术编码列表
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:list')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询")
    public TableDataInfo list(DictSsdm dictSsdm) {
@@ -52,7 +52,7 @@
    /**
     * 导出手术编码列表
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:export')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:export')")
    @Log(title = "手术编码", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    @ApiOperation(value = "导出")
@@ -65,7 +65,7 @@
    /**
     * 获取手术编码详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:query')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:query')")
    @GetMapping(value = "/{id}")
    @ApiOperation(value = "详细信息")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
@@ -75,7 +75,7 @@
    /**
     * 新增手术编码
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:add')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:add')")
    @Log(title = "手术编码", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增")
@@ -86,7 +86,7 @@
    /**
     * 修改手术编码
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:edit')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:edit')")
    @Log(title = "手术编码", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改")
@@ -97,7 +97,7 @@
    /**
     * 删除手术编码
     */
    @PreAuthorize("@ss.hasPermi('system:ssdm:remove')")
//    @PreAuthorize("@ss.hasPermi('system:ssdm:remove')")
    @Log(title = "手术编码", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除")