| | |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/deductionClassHour") |
| | | public boolean deductionClassHour(@RequestBody DeductionClassHourList deductionClassHourList){ |
| | | public DeductionClassHourList deductionClassHour(@RequestBody DeductionClassHourList deductionClassHourList){ |
| | | return coursePackageOrderStudentService.deductionClassHour(deductionClassHourList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 回退课时和回退排课数据 |
| | | * @param deductionClassHourList |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/backspaceClassHour") |
| | | public void backspaceClassHour(DeductionClassHourList deductionClassHourList){ |
| | | coursePackageOrderStudentService.backspaceClassHour(deductionClassHourList); |
| | | } |
| | | } |