InternshipPlanTeacherMapper.java 733 B

1234567891011121314151617181920
  1. package com.xjrsoft.module.internship.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.internship.dto.InternshipPlanTeacherPageDto;
  5. import com.xjrsoft.module.internship.entity.InternshipPlanTeacher;
  6. import com.xjrsoft.module.internship.vo.InternshipPlanTeacherPageVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. /**
  9. * @title: 实习计划带队老师表
  10. * @Author dzx
  11. * @Date: 2025-06-24
  12. * @Version 1.0
  13. */
  14. @Mapper
  15. public interface InternshipPlanTeacherMapper extends MPJBaseMapper<InternshipPlanTeacher> {
  16. Page<InternshipPlanTeacherPageVo> getPage(Page<InternshipPlanTeacherPageVo> page, InternshipPlanTeacherPageDto dto);
  17. }