| | |
| | | * 查询器官信息登记新列表 |
| | | */ |
| | | @ApiOperation("获取器官登记列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:list')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(VServiceDonateorganRegister vServiceDonateorganRegister) |
| | | { |
| | |
| | | * 导出器官信息登记新列表 |
| | | */ |
| | | @ApiOperation("导出器官登记列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:export')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:export')") |
| | | @Log(title = "器官信息登记新", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public AjaxResult export(VServiceDonateorganRegister vServiceDonateorganRegister) |
| | |
| | | * 获取器官信息登记新详细信息 |
| | | */ |
| | | @ApiOperation("通过id获取器官登记信息") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:query')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | |
| | | * 新增器官信息登记新 |
| | | */ |
| | | @ApiOperation("新增器官登记") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:add')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:add')") |
| | | @Log(title = "器官信息登记新", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | |
| | | * 修改器官信息登记新 |
| | | */ |
| | | @ApiOperation("修改器官登记") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:edit')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:edit')") |
| | | @Log(title = "器官信息登记新", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @RepeatSubmit |
| | |
| | | * 删除器官信息登记新 |
| | | */ |
| | | @ApiOperation("删除器官登记") |
| | | //@PreAuthorize("@ss.hasPermi('project:register:remove')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:register:remove')") |
| | | @Log(title = "器官信息登记新", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |