| 1234567891011121314151617181920 |
- package com.xjrsoft.module.base.service;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.base.dto.BaseClassTeacherChangePageDto;
- import com.xjrsoft.module.base.entity.BaseClassTeacherChange;
- import com.xjrsoft.module.base.vo.BaseClassTeacherChangePageVo;
- import org.apache.ibatis.annotations.Param;
- /**
- * @title: 班主任异动记录表
- * @Author dzx
- * @Date: 2025-04-24
- * @Version 1.0
- */
- public interface IBaseClassTeacherChangeService extends MPJBaseService<BaseClassTeacherChange> {
- Page<BaseClassTeacherChangePageVo> getPage(Page<BaseClassTeacherChangePageVo> page, @Param("dto") BaseClassTeacherChangePageDto dto);
- }
|