| | |
| | | @PostMapping(value = "/deduction/customer/confirm/all") |
| | | Result customerConfirmAll(@RequestBody DeductionDto dto); |
| | | |
| | | |
| | | /** |
| | | * 客户确认划扣之前页面数据 |
| | | */ |
| | | @PostMapping(value = "/deduction/customer/confirm/before") |
| | | Result customerConfirmBefore(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 客户确认划扣之前页面数据所有未确认数据 |
| | | */ |
| | | @PostMapping(value = "/deduction/customer/confirm/all/before") |
| | | Result customerConfirmAllBefore(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 获取用户划扣信息之前的医生信息 |
| | |
| | | */ |
| | | @PostMapping(value = "/deduction/delete") |
| | | Result deleteData(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 划扣术后提示卡通知获取数据 |
| | | */ |
| | | @PostMapping(value = "/deduction/postoperative/card/notice") |
| | | Result postoperativeCardNotice(@RequestBody DeductionDto dto); |
| | | } |