BaseStudentMapper.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.room.dto.RoomPageDto;
  5. import com.xjrsoft.module.room.vo.RoomPageVo;
  6. import com.xjrsoft.module.schedule.vo.StudentJianyuekbVo;
  7. import com.xjrsoft.module.student.dto.BaseStudentUserPageDto;
  8. import com.xjrsoft.module.student.entity.BaseStudent;
  9. import com.xjrsoft.module.student.vo.BaseStudentUserPageVo;
  10. import com.xjrsoft.module.student.vo.StudentInfoVo;
  11. import com.xjrsoft.module.student.vo.StudentPersonalInfoVo;
  12. import org.apache.ibatis.annotations.Mapper;
  13. import java.util.List;
  14. /**
  15. * @title: mapper
  16. * @Author 管理员
  17. * @Date: 2023-08-08
  18. * @Version 1.0
  19. */
  20. @Mapper
  21. public interface BaseStudentMapper extends MPJBaseMapper<BaseStudent> {
  22. /**
  23. * 根据用户编号查询学生信息
  24. * @return
  25. */
  26. StudentInfoVo getStudentInfo(Long userId);
  27. List<StudentJianyuekbVo> getJianyueStudentList();
  28. StudentPersonalInfoVo getPersonalInfo(Long userId);
  29. List<String> getCredentialNumbers();
  30. Page<BaseStudentUserPageVo> getStudentPage(Page<BaseStudentUserPageVo> page, BaseStudentUserPageDto dto);
  31. }