IStudentHonorsService.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.StudentHonorsPageDto;
  5. import com.xjrsoft.module.student.entity.StudentHonors;
  6. import com.xjrsoft.module.student.vo.StudentHonorsListVo;
  7. import com.xjrsoft.module.student.vo.StudentHonorsPageVo;
  8. import com.xjrsoft.module.student.vo.StudentHonorsVo;
  9. import java.util.List;
  10. /**
  11. * @title: 学生荣誉
  12. * @Author dzx
  13. * @Date: 2023-12-05
  14. * @Version 1.0
  15. */
  16. public interface IStudentHonorsService extends MPJBaseService<StudentHonors> {
  17. /**
  18. * 分页查询
  19. */
  20. IPage<StudentHonorsPageVo> getPage(StudentHonorsPageDto dto);
  21. /**
  22. * 查询班级信息
  23. */
  24. List<StudentHonorsListVo> getClassInfo();
  25. /**
  26. * 查询学期信息
  27. */
  28. List<StudentHonorsListVo> getSemesterInfo();
  29. /**
  30. * 根据id查询详情信息
  31. */
  32. StudentHonorsVo getInfo(Long id);
  33. /**
  34. * 查询最大的序号
  35. */
  36. Integer getSortCode();
  37. }