liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatSpeciallistController.java
@@ -34,7 +34,7 @@
    /**
     * 查询专病患者列表
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:list')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:list')")
    @ApiOperation("查询专病患者列表")
    @GetMapping("/list")
    public TableDataInfo list(PatSpeciallist patSpeciallist)
@@ -47,7 +47,7 @@
    /**
     * 导出专病患者列表
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:export')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:export')")
    @Log(title = "专病患者", businessType = BusinessType.EXPORT)
    @ApiOperation("导出专病患者列表")
    @PostMapping("/export")
@@ -61,7 +61,7 @@
    /**
     * 获取专病患者详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:query')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:query')")
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -71,7 +71,7 @@
    /**
     * 新增专病患者
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:add')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:add')")
    @Log(title = "专病患者", businessType = BusinessType.INSERT)
    @ApiOperation("新增专病患者")
    @PostMapping("/add")
@@ -83,7 +83,7 @@
    /**
     * 修改专病患者
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:edit')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:edit')")
    @Log(title = "专病患者", businessType = BusinessType.UPDATE)
    @ApiOperation("修改专病患者")
    @PostMapping("/edit")
@@ -95,7 +95,7 @@
    /**
     * 删除专病患者
     */
    @PreAuthorize("@ss.hasPermi('system:speciallist:remove')")
    //@PreAuthorize("@ss.hasPermi('system:speciallist:remove')")
    @Log(title = "专病患者", businessType = BusinessType.DELETE)
    @ApiOperation("删除专病患者")
   @GetMapping("/remove/{ids}")