IBaseNewStudentService.java 859 B

12345678910111213141516171819202122232425262728
  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.BaseNewStudentPageDto;
  5. import com.xjrsoft.module.student.entity.BaseNewStudent;
  6. import com.xjrsoft.module.student.vo.BaseNewStudentPageVo;
  7. import com.xjrsoft.module.student.vo.EnrollmentPlanGradeVo;
  8. import com.xjrsoft.module.student.vo.EnrollmentPlanTreeVo;
  9. import java.util.List;
  10. /**
  11. * @title: 新生维护信息
  12. * @Author dzx
  13. * @Date: 2024-06-27
  14. * @Version 1.0
  15. */
  16. public interface IBaseNewStudentService extends MPJBaseService<BaseNewStudent> {
  17. Page<BaseNewStudentPageVo> getPage(Page<BaseNewStudentPageVo> page, BaseNewStudentPageDto dto);
  18. List<EnrollmentPlanTreeVo> getEnrollmentPlanList();
  19. List<EnrollmentPlanGradeVo> getGradeList();
  20. }