| | |
| | | /** |
| | | * 查询手术编码列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:list')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:list')") |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询") |
| | | public TableDataInfo list(DictSsdm dictSsdm) { |
| | |
| | | /** |
| | | * 导出手术编码列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:export')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:export')") |
| | | @Log(title = "手术编码", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出") |
| | |
| | | /** |
| | | * 获取手术编码详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:query')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:query')") |
| | | @GetMapping(value = "/{id}") |
| | | @ApiOperation(value = "详细信息") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | |
| | | /** |
| | | * 新增手术编码 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:add')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:add')") |
| | | @Log(title = "手术编码", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @ApiOperation(value = "新增") |
| | |
| | | /** |
| | | * 修改手术编码 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:edit')") |
| | | @Log(title = "手术编码", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @ApiOperation(value = "修改") |
| | |
| | | /** |
| | | * 删除手术编码 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:ssdm:remove')") |
| | | // @PreAuthorize("@ss.hasPermi('system:ssdm:remove')") |
| | | @Log(title = "手术编码", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @ApiOperation(value = "删除") |