IBaseStudentSchoolRollService.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.BaseStudentSimpleInfoDto;
  7. import com.xjrsoft.module.student.dto.UpdateBaseStudentInfoDto;
  8. import com.xjrsoft.module.student.entity.BaseStudentSchoolRoll;
  9. import com.xjrsoft.module.student.vo.BaseStudentInfoDetailVo;
  10. import com.xjrsoft.module.student.vo.BaseStudentInfoPageDataVo;
  11. import com.xjrsoft.module.student.vo.BaseStudentInfoPageVo;
  12. import com.xjrsoft.module.student.vo.BaseStudentSompleInfoVo;
  13. import com.xjrsoft.module.student.vo.MobileClassStatisticsVo;
  14. import java.util.List;
  15. /**
  16. * @title: 奖学金申请
  17. * @Author dzx
  18. * @Date: 2023-11-23
  19. * @Version 1.0
  20. */
  21. public interface IBaseStudentSchoolRollService extends MPJBaseService<BaseStudentSchoolRoll> {
  22. Page<BaseStudentInfoPageVo> getMobilePage(Page<BaseStudentInfoPageVo> page, BaseStudentInfoPageDto dto);
  23. /**
  24. * 移动端查询学生信息列表
  25. * @param dto
  26. * @return
  27. */
  28. Boolean updateInfo(UpdateBaseStudentInfoDto dto);
  29. /**
  30. * 移动端查询学生详情信息
  31. * @return
  32. */
  33. BaseStudentInfoDetailVo getInfoById(BaseStudentInfoDetailDto dto);
  34. /**
  35. * 统计学生信息
  36. * @param dto
  37. * @return
  38. */
  39. BaseStudentInfoPageDataVo getMobilePageStatistics(BaseStudentInfoPageDto dto);
  40. MobileClassStatisticsVo getMobileClassStatistics(BaseStudentInfoPageDto dto);
  41. Boolean updateStudentClass(Long classId, Long userId);
  42. Boolean updateStudentClass(Long classId,Long majorSetId, Long userId);
  43. List<BaseStudentSompleInfoVo> getInfosByParam(BaseStudentSimpleInfoDto dto);
  44. String getClassNameByUserId(Long userId);
  45. Long getClassIdByUserId(Long userId);
  46. }