| | |
| | | /** |
| | | * 查询专病患者列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:list')") |
| | | @ApiOperation("查询专病患者列表") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(PatSpeciallist patSpeciallist) |
| | |
| | | /** |
| | | * 导出专病患者列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:export')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:export')") |
| | | @Log(title = "专病患者", businessType = BusinessType.EXPORT) |
| | | @ApiOperation("导出专病患者列表") |
| | | @PostMapping("/export") |
| | |
| | | /** |
| | | * 获取专病患者详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | |
| | | /** |
| | | * 新增专病患者 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:add')") |
| | | @Log(title = "专病患者", businessType = BusinessType.INSERT) |
| | | @ApiOperation("新增专病患者") |
| | | @PostMapping("/add") |
| | |
| | | /** |
| | | * 修改专病患者 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:edit')") |
| | | @Log(title = "专病患者", businessType = BusinessType.UPDATE) |
| | | @ApiOperation("修改专病患者") |
| | | @PostMapping("/edit") |
| | |
| | | /** |
| | | * 删除专病患者 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:speciallist:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:speciallist:remove')") |
| | | @Log(title = "专病患者", businessType = BusinessType.DELETE) |
| | | @ApiOperation("删除专病患者") |
| | | @GetMapping("/remove/{ids}") |