| | |
| | | @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/project/before/doctor/info") |
| | | Result projectBeforeDoctorInfo(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 新增划扣记录 |
| | | */ |
| | | @PostMapping(value = "/deduction/add") |
| | | Result addData(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 修改划扣记录 |
| | | */ |
| | | @PostMapping(value = "/deduction/update") |
| | | Result updateData(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 作废划扣记录 |
| | | */ |
| | | @PostMapping(value = "/deduction/rescinded") |
| | | Result rescindedData(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 删除划扣记录 |
| | | */ |
| | | @PostMapping(value = "/deduction/delete") |
| | | Result deleteData(@RequestBody DeductionDto dto); |
| | | |
| | | /** |
| | | * 划扣术后提示卡通知获取数据 |
| | | */ |
| | | @PostMapping(value = "/deduction/postoperative/card/info") |
| | | Result postoperativeCardInfo(@RequestBody DeductionDto dto); |
| | | } |