| | |
| | | package com.dsh.course.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.course.entity.CoursePackageStudent; |
| | | import com.dsh.course.entity.StudentClassInfo; |
| | | import com.dsh.course.entity.dto.ClassListDto; |
| | | import com.dsh.course.model.QueryCoursePackageStudentList; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CoursePackageStudentService extends IService<CoursePackageStudent> { |
| | | |
| | | List<CoursePackageStudent> queryStuDeduClassHourNums(Integer courseId, Integer stuId, Integer appUserId); |
| | | |
| | | /** |
| | | * 获取排课预约数据 |
| | | * @param queryCoursePackageStudentList |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> queryCoursePackageStudentList(Page<Map<String, Object>> page, QueryCoursePackageStudentList queryCoursePackageStudentList); |
| | | |
| | | StudentClassInfo listAll(Integer tStudentId); |
| | | |
| | | List<ClassListDto> getClassList(Integer tStudentId); |
| | | |
| | | Date getMaxDate(Integer tStudentId); |
| | | |
| | | Date getMinDate(Integer tStudentId); |
| | | |
| | | void updateSignInOrNotById(Long id); |
| | | |
| | | |
| | | } |