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