| 1234567891011121314151617181920 |
- package com.xjrsoft.module.internship.mapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.internship.dto.InternshipPlanTeacherPageDto;
- import com.xjrsoft.module.internship.entity.InternshipPlanTeacher;
- import com.xjrsoft.module.internship.vo.InternshipPlanTeacherPageVo;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 实习计划带队老师表
- * @Author dzx
- * @Date: 2025-06-24
- * @Version 1.0
- */
- @Mapper
- public interface InternshipPlanTeacherMapper extends MPJBaseMapper<InternshipPlanTeacher> {
- Page<InternshipPlanTeacherPageVo> getPage(Page<InternshipPlanTeacherPageVo> page, InternshipPlanTeacherPageDto dto);
- }
|