IBaseStudentBursariesApplicantService.java 831 B

1234567891011121314151617181920212223242526
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.BaseStudentBursariesApplicantPageDto;
  5. import com.xjrsoft.module.student.entity.BaseStudentBursariesApplicant;
  6. import com.xjrsoft.module.student.vo.BaseStudentBursariesApplicantPageVo;
  7. /**
  8. * @title: 助学金申请
  9. * @Author dzx
  10. * @Date: 2023-11-24
  11. * @Version 1.0
  12. */
  13. public interface IBaseStudentBursariesApplicantService extends MPJBaseService<BaseStudentBursariesApplicant> {
  14. /**
  15. * 助学金申请名单查询
  16. * @param page
  17. * @param dto
  18. * @return
  19. */
  20. Page<BaseStudentBursariesApplicantPageVo> getPage(Page<BaseStudentBursariesApplicantPageDto> page, BaseStudentBursariesApplicantPageDto dto);
  21. }