puzhibing
2024-03-05 a8f90f717c73d7ff4d2355649f9f161a6f89aa9b
cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/feignclient/course/CoursePackageOrderStudentClient.java
@@ -21,7 +21,7 @@
     * @param studentId
     * @return
     */
    @PostMapping("/getCoursePackageOrderStudent")
    @PostMapping("/coursePackageOrderStudent/getCoursePackageOrderStudent")
    List<CoursePackageOrderStudent> getCoursePackageOrderStudent(Integer studentId);
@@ -29,6 +29,15 @@
     * 扣减学员课时
     * @param deductionClassHourList
     */
    @PostMapping("/deductionClassHour")
    boolean deductionClassHour(DeductionClassHourList deductionClassHourList);
    @PostMapping("/coursePackageOrderStudent/deductionClassHour")
    DeductionClassHourList deductionClassHour(DeductionClassHourList deductionClassHourList);
    /**
     * 回退课时后添加排课记录
     * @param deductionClassHourList
     */
    @PostMapping("/coursePackageOrderStudent/backspaceClassHour")
    void backspaceClassHour(DeductionClassHourList deductionClassHourList);
}