BaseNewStudentMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.banding.vo.IdManyCountVo;
  5. import com.xjrsoft.module.outint.vo.IdCountVo;
  6. import com.xjrsoft.module.student.dto.BaseNewStudentPageDto;
  7. import com.xjrsoft.module.student.entity.BaseNewStudent;
  8. import com.xjrsoft.module.student.vo.BaseNewStudentPageVo;
  9. import com.xjrsoft.module.student.vo.EnrollmentPlanGradeVo;
  10. import com.xjrsoft.module.student.vo.EnrollmentPlanTreeVo;
  11. import org.apache.ibatis.annotations.Mapper;
  12. import org.apache.ibatis.annotations.Param;
  13. import java.util.List;
  14. /**
  15. * @title: 新生维护信息
  16. * @Author dzx
  17. * @Date: 2024-06-27
  18. * @Version 1.0
  19. */
  20. @Mapper
  21. public interface BaseNewStudentMapper extends MPJBaseMapper<BaseNewStudent> {
  22. Page<BaseNewStudentPageVo> getPage(Page<BaseNewStudentPageVo> page, BaseNewStudentPageDto dto);
  23. Page<BaseNewStudentPageVo> getReportPage(Page<BaseNewStudentPageVo> page, BaseNewStudentPageDto dto);
  24. List<EnrollmentPlanTreeVo> getEnrollmentPlanList();
  25. List<EnrollmentPlanGradeVo> getGradeList();
  26. List<IdCountVo> getFirstAmbitionStudentCount(@Param("gradeId") Long gradeId, @Param("enrollType") String enrollType);
  27. List<IdCountVo> getSecondAmbitionStudentCount(@Param("gradeId") Long gradeId, @Param("enrollType") String enrollType);
  28. List<IdManyCountVo> getMajorStudentCount(@Param("id") Long bandingTaskId);
  29. }