puzhibing
2024-03-15 f8f6161b009a845c8444e56264b9e7d001e2aea4
cloud-server-course/src/main/java/com/dsh/course/service/ICoursePackageOrderStudentService.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.CoursePackageOrderStudent;
import com.dsh.course.feignclient.model.RecordAppoint;
import com.dsh.course.model.DeductionClassHourList;
import org.springframework.web.bind.annotation.RequestBody;
import java.util.List;
@@ -20,4 +22,19 @@
     * @return
     */
    List<RecordAppoint> obtainStuClassDetails(Integer stuId, Integer appUserId, Integer pageNum);
    /**
     * 扣除学员课时
     * @param deductionClassHourList
     * @return
     */
    DeductionClassHourList deductionClassHour(DeductionClassHourList deductionClassHourList);
    /**
     * 回退课时和回退排课数据
     * @param deductionClassHourList
     */
    void backspaceClassHour(DeductionClassHourList deductionClassHourList);
}