InternshipPlanManageMapper.java 719 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.InternshipPlanManagePageDto;
  5. import com.xjrsoft.module.internship.entity.InternshipPlanManage;
  6. import com.xjrsoft.module.internship.vo.InternshipPlanManagePageVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. /**
  9. * @title: 实习计划管理表
  10. * @Author dzx
  11. * @Date: 2025-06-23
  12. * @Version 1.0
  13. */
  14. @Mapper
  15. public interface InternshipPlanManageMapper extends MPJBaseMapper<InternshipPlanManage> {
  16. Page<InternshipPlanManagePageVo> getPage(Page<InternshipPlanManagePageVo> page, InternshipPlanManagePageDto dto);
  17. }