44323
2023-11-27 aa925d851857f50eff0556411366690d9a78a0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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>
 * 学员上课记录 服务类
 * </p>
 *
 * @author jqs
 * @since 2023-06-30
 */
public interface CoursePackageStudentService extends IService<CoursePackageStudent> {
 
 
    /**
     * 获取排课预约数据
     *
     * @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);
 
 
}