package com.xjrsoft.module.student.service; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.github.yulichang.base.MPJBaseService; import com.xjrsoft.module.student.dto.BaseNewStudentPageDto; import com.xjrsoft.module.student.entity.BaseNewStudent; import com.xjrsoft.module.student.vo.BaseNewStudentPageVo; import com.xjrsoft.module.student.vo.EnrollmentPlanGradeVo; import com.xjrsoft.module.student.vo.EnrollmentPlanTreeVo; import java.util.List; /** * @title: 新生维护信息 * @Author dzx * @Date: 2024-06-27 * @Version 1.0 */ public interface IBaseNewStudentService extends MPJBaseService { Page getPage(Page page, BaseNewStudentPageDto dto); List getEnrollmentPlanList(); List getGradeList(); }