BaseStudentMapper.java 845 B

123456789101112131415161718192021222324252627282930
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.schedule.vo.StudentJianyuekbVo;
  5. import com.xjrsoft.module.student.dto.BaseStudentUserPageDto;
  6. import com.xjrsoft.module.student.entity.BaseStudent;
  7. import com.xjrsoft.module.student.vo.BaseStudentUserPageVo;
  8. import com.xjrsoft.module.student.vo.StudentInfoVo;
  9. import org.apache.ibatis.annotations.Mapper;
  10. import java.util.List;
  11. /**
  12. * @title: mapper
  13. * @Author 管理员
  14. * @Date: 2023-08-08
  15. * @Version 1.0
  16. */
  17. @Mapper
  18. public interface BaseStudentMapper extends MPJBaseMapper<BaseStudent> {
  19. /**
  20. * 根据用户编号查询学生信息
  21. * @return
  22. */
  23. StudentInfoVo getStudentInfo(Long userId);
  24. List<StudentJianyuekbVo> getJianyueStudentList();
  25. }