zjh
2024-02-28 22c17adc3ec2a25e6656cd69961f49a888d433b3
ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictEmerController.java
@@ -119,7 +119,7 @@
    /**
     * 查询知识库列表
     */
    @PreAuthorize("@ss.hasPermi('system:emer:list')")
    //@PreAuthorize("@ss.hasPermi('system:emer:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询")
    public TableDataInfo list(DictEmer dictEmer) {
@@ -143,7 +143,7 @@
    /**
     * 导出知识库列表
     */
    @PreAuthorize("@ss.hasPermi('system:emer:export')")
    //@PreAuthorize("@ss.hasPermi('system:emer:export')")
    @Log(title = "知识库", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    @ApiOperation(value = "导出")
@@ -156,7 +156,7 @@
    /**
     * 获取知识库详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:emer:query')")
    //@PreAuthorize("@ss.hasPermi('system:emer:query')")
    @GetMapping(value = "/{id}")
    @ApiOperation(value = "根据id获取信息")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
@@ -166,7 +166,7 @@
    /**
     * 新增知识库
     */
    @PreAuthorize("@ss.hasPermi('system:emer:add')")
    //@PreAuthorize("@ss.hasPermi('system:emer:add')")
    @Log(title = "知识库", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增")
@@ -177,7 +177,7 @@
    /**
     * 修改知识库
     */
    @PreAuthorize("@ss.hasPermi('system:emer:edit')")
    //@PreAuthorize("@ss.hasPermi('system:emer:edit')")
    @Log(title = "知识库", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改")
@@ -188,7 +188,7 @@
    /**
     * 删除知识库
     */
    @PreAuthorize("@ss.hasPermi('system:emer:remove')")
    //@PreAuthorize("@ss.hasPermi('system:emer:remove')")
    @Log(title = "知识库", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除")