lisy
2023-07-06 d061aa842106480f3a8991d83dc3b978441330ab
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
package com.dsh.course.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.entity.CoursePackageStudent;
import com.dsh.course.mapper.CoursePackageStudentMapper;
import com.dsh.course.service.CoursePackageStudentService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * <p>
 * 学员上课记录 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-06-30
 */
@Service
public class CoursePackageStudentServiceImpl extends ServiceImpl<CoursePackageStudentMapper, CoursePackageStudent> implements CoursePackageStudentService {
 
    @Override
    public List<CoursePackageStudent> queryStuDeduClassHourNums(Integer courseId, Integer stuId, Integer appUserId) {
        return this.baseMapper.queryStuDeduClassHourNums(courseId,stuId,appUserId);
    }
 
    @Override
    public List<CoursePackageStudent> queryAppUserOfStuAttendClass(Integer appUserId, List<Integer> coursePackageIds) {
        return this.baseMapper.queryAppUserOfStuAttendClass(appUserId,coursePackageIds);
    }
}