| | |
| | | * |
| | | */ |
| | | @ApiOperation("查询患者随访信息") |
| | | @PreAuthorize("@ss.hasPermi('system:result:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(IvrTaskVisitResult ivrTaskVisitResult) { |
| | | startPage(); |
| | |
| | | * 导出任务随访结果列表 |
| | | */ |
| | | @ApiOperation("导出任务随访结果列表") |
| | | @PreAuthorize("@ss.hasPermi('system:result:export')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:export')") |
| | | @Log(title = "任务随访结果", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrTaskVisitResult ivrTaskVisitResult) { |
| | |
| | | * 获取任务随访结果详细信息 |
| | | */ |
| | | @ApiOperation("获取任务随访结果详细信息") |
| | | @PreAuthorize("@ss.hasPermi('system:result:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrTaskVisitResultService.selectIvrTaskVisitResultById(id)); |
| | |
| | | * 新增任务随访结果 |
| | | */ |
| | | @ApiOperation("新增任务随访结果") |
| | | @PreAuthorize("@ss.hasPermi('system:result:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:add')") |
| | | @Log(title = "任务随访结果", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrTaskVisitResult ivrTaskVisitResult) { |
| | |
| | | * 修改任务随访结果 |
| | | */ |
| | | @ApiOperation("修改任务随访结果") |
| | | @PreAuthorize("@ss.hasPermi('system:result:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:edit')") |
| | | @Log(title = "任务随访结果", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrTaskVisitResult ivrTaskVisitResult) { |
| | |
| | | * 删除任务随访结果 |
| | | */ |
| | | @ApiOperation("删除任务随访结果") |
| | | @PreAuthorize("@ss.hasPermi('system:result:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:result:remove')") |
| | | @Log(title = "任务随访结果", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |