| 12345678910111213141516171819202122232425262728 |
- 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<BaseNewStudent> {
- Page<BaseNewStudentPageVo> getPage(Page<BaseNewStudentPageVo> page, BaseNewStudentPageDto dto);
- List<EnrollmentPlanTreeVo> getEnrollmentPlanList();
- List<EnrollmentPlanGradeVo> getGradeList();
- }
|