| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.course.entity.CoursePackageStudent; |
| | | import com.dsh.course.entity.StudentClassInfo; |
| | | import com.dsh.course.entity.dto.ClassListDto; |
| | | import com.dsh.course.feignclient.account.AppUserClient; |
| | | import com.dsh.course.feignclient.account.StudentClient; |
| | | import com.dsh.course.feignclient.account.model.AppUser; |
| | |
| | | } |
| | | return list; |
| | | } |
| | | |
| | | @Override |
| | | public StudentClassInfo listAll(Integer tStudentId) { |
| | | return this.baseMapper.listAll(tStudentId); |
| | | } |
| | | |
| | | @Override |
| | | public List<ClassListDto> getClassList(Integer tStudentId) { |
| | | return this.baseMapper.getClassList(tStudentId); |
| | | } |
| | | |
| | | @Override |
| | | public Date getMaxDate(Integer tStudentId) { |
| | | return this.baseMapper.getMaxDate(tStudentId); |
| | | } |
| | | |
| | | @Override |
| | | public Date getMinDate(Integer tStudentId) { |
| | | return null; |
| | | } |
| | | } |