| | |
| | | import com.dsh.course.service.CoursePackageStudentService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 学员上课记录 服务实现类 |
| | |
| | | @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); |
| | | } |
| | | |
| | | } |