| 123456789101112131415161718192021 |
- package com.xjrsoft.module.student.mapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.student.dto.BaseStudentScholarshipReleasePageDto;
- import com.xjrsoft.module.student.entity.BaseStudentScholarshipRelease;
- import com.xjrsoft.module.student.vo.BaseStudentScholarshipReleasePageVo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @title: 奖学金发放记录表
- * @Author dzx
- * @Date: 2024-07-25
- * @Version 1.0
- */
- @Mapper
- public interface BaseStudentScholarshipReleaseMapper extends MPJBaseMapper<BaseStudentScholarshipRelease> {
- Page<BaseStudentScholarshipReleasePageVo> getPage(Page<BaseStudentScholarshipReleasePageVo> page, @Param("dto") BaseStudentScholarshipReleasePageDto dto);
- }
|