BaseStudentScholarshipReleaseMapper.java 845 B

123456789101112131415161718192021
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.student.dto.BaseStudentScholarshipReleasePageDto;
  5. import com.xjrsoft.module.student.entity.BaseStudentScholarshipRelease;
  6. import com.xjrsoft.module.student.vo.BaseStudentScholarshipReleasePageVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. /**
  10. * @title: 奖学金发放记录表
  11. * @Author dzx
  12. * @Date: 2024-07-25
  13. * @Version 1.0
  14. */
  15. @Mapper
  16. public interface BaseStudentScholarshipReleaseMapper extends MPJBaseMapper<BaseStudentScholarshipRelease> {
  17. Page<BaseStudentScholarshipReleasePageVo> getPage(Page<BaseStudentScholarshipReleasePageVo> page, @Param("dto") BaseStudentScholarshipReleasePageDto dto);
  18. }