| | |
| | | serviceSubtaskService.phoneCallBack(phoneCallBackVO); |
| | | return success(); |
| | | } |
| | | |
| | | /** |
| | | * 患者问题结果记录 |
| | | */ |
| | | @ApiOperation("患者问题结果记录") |
| | | @PostMapping("/saveQuestionAnswer") |
| | | public AjaxResult saveQuestionAnswer(@RequestBody ServiceSubTaskDetailReq serviceSubTaskDetailReq) { |
| | | return toAjax(serviceSubtaskService.saveQuestionAnswer(serviceSubTaskDetailReq)); |
| | | @ApiOperation("患者问题结果记录(电话)") |
| | | @PostMapping("/saveQuestionAnswerPhone") |
| | | public AjaxResult saveQuestionAnswerPhone(@RequestBody ServiceSubTaskDetailReq serviceSubTaskDetailReq) { |
| | | return toAjax(serviceSubtaskService.saveQuestionAnswerPhone(serviceSubTaskDetailReq)); |
| | | } |
| | | |
| | | } |