1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.dsh.course.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.dsh.course.entity.CoursePackageOrderStudent;
| import com.dsh.course.feignclient.model.RecordAppoint;
|
| import java.util.List;
|
| /**
| * @author zhibing.pu
| * @Date 2023/11/25 14:05
| */
| public interface ICoursePackageOrderStudentService extends IService<CoursePackageOrderStudent> {
|
| /**
| * 查询学员的课包上课记录
| *
| * @param stuId
| * @param appUserId
| * @return
| */
| List<RecordAppoint> obtainStuClassDetails(Integer stuId, Integer appUserId, Integer pageNum);
| }
|
|