| | |
| | | * 查询捐献随访列表 |
| | | */ |
| | | @ApiOperation("查询捐献随访列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:list')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ServiceDonatefollowup serviceDonatefollowup) { |
| | | startPage(); |
| | |
| | | * 导出捐献随访列表 |
| | | */ |
| | | @ApiOperation("导出捐献随访列表") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:export')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:export')") |
| | | @Log(title = "捐献随访", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public AjaxResult export(ServiceDonatefollowup serviceDonatefollowup) { |
| | |
| | | * 获取捐献随访详细信息 |
| | | */ |
| | | @ApiOperation("获取捐献随访详细信息") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:query')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | //return AjaxResult.success(serviceDonatefollowupService.getById(id)); |
| | |
| | | * 新增捐献随访 |
| | | */ |
| | | @ApiOperation("新增捐献随访") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:add')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:add')") |
| | | @Log(title = "捐献随访", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | @RepeatSubmit |
| | |
| | | * 修改捐献随访 |
| | | */ |
| | | @ApiOperation("修改捐献随访") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:edit')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:edit')") |
| | | @Log(title = "捐献随访", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | |
| | | * 删除捐献随访 |
| | | */ |
| | | @ApiOperation("删除捐献随访") |
| | | //@PreAuthorize("@ss.hasPermi('project:donatefollowup:remove')") |
| | | //// @PreAuthorize("@ss.hasPermi('project:donatefollowup:remove')") |
| | | @Log(title = "捐献随访", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |