IBaseStudentSchoolRollService.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.BaseStudentInfoDetailDto;
  5. import com.xjrsoft.module.student.dto.BaseStudentInfoPageDto;
  6. import com.xjrsoft.module.student.dto.UpdateBaseStudentInfoDto;
  7. import com.xjrsoft.module.student.entity.BaseStudentSchoolRoll;
  8. import com.xjrsoft.module.student.vo.BaseStudentInfoDetailVo;
  9. import com.xjrsoft.module.student.vo.BaseStudentInfoPageDataVo;
  10. import com.xjrsoft.module.student.vo.BaseStudentInfoPageVo;
  11. import com.xjrsoft.module.student.vo.MobileClassStatisticsVo;
  12. /**
  13. * @title: 奖学金申请
  14. * @Author dzx
  15. * @Date: 2023-11-23
  16. * @Version 1.0
  17. */
  18. public interface IBaseStudentSchoolRollService extends MPJBaseService<BaseStudentSchoolRoll> {
  19. Page<BaseStudentInfoPageVo> getMobilePage(Page<BaseStudentInfoPageVo> page, BaseStudentInfoPageDto dto);
  20. /**
  21. * 移动端查询学生信息列表
  22. * @param dto
  23. * @return
  24. */
  25. Boolean updateInfo(UpdateBaseStudentInfoDto dto);
  26. /**
  27. * 移动端查询学生详情信息
  28. * @return
  29. */
  30. BaseStudentInfoDetailVo getInfoById(BaseStudentInfoDetailDto dto);
  31. /**
  32. * 统计学生信息
  33. * @param dto
  34. * @return
  35. */
  36. BaseStudentInfoPageDataVo getMobilePageStatistics(BaseStudentInfoPageDto dto);
  37. MobileClassStatisticsVo getMobileClassStatistics(BaseStudentInfoPageDto dto);
  38. }