IBaseStudentSchoolRollService.java 1.9 KB

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