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