| | |
| | | /** |
| | | * 查询体检心电图管理列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:list')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询体检心电图管理列表(自带默认)") |
| | | public TableDataInfo list(TjXdPicture tjXdPicture) { |
| | |
| | | /** |
| | | * 导出体检心电图管理列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:export')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:export')") |
| | | @Log(title = "体检心电图管理", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出体检心电图管理列表") |
| | |
| | | /** |
| | | * 获取体检心电图管理详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:query')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:query')") |
| | | @GetMapping(value = "/{id}") |
| | | @ApiOperation(value = "获取体检心电图管理详细信息") |
| | | public AjaxResult getInfo(@PathVariable("id") String id) { |
| | |
| | | /** |
| | | * 新增体检心电图管理 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:add')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:add')") |
| | | @Log(title = "体检心电图管理", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增体检心电图管理") |
| | |
| | | /** |
| | | * 修改体检心电图管理 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:edit')") |
| | | @Log(title = "体检心电图管理", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改体检心电图管理") |
| | |
| | | /** |
| | | * 删除体检心电图管理 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('picture:picture:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('picture:picture:remove')") |
| | | @Log(title = "体检心电图管理", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @ApiOperation(value = "删除体检心电图管理") |