BaseStudentBursariesApplicantServiceImpl.java 1.3 KB

1234567891011121314151617181920212223242526272829
  1. package com.xjrsoft.module.student.service.impl;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseServiceImpl;
  4. import com.xjrsoft.module.student.dto.BaseStudentBursariesApplicantPageDto;
  5. import com.xjrsoft.module.student.entity.BaseStudentBursariesApplicant;
  6. import com.xjrsoft.module.student.mapper.BaseStudentBursariesApplicantMapper;
  7. import com.xjrsoft.module.student.service.IBaseStudentBursariesApplicantService;
  8. import com.xjrsoft.module.student.vo.BaseStudentBursariesApplicantPageVo;
  9. import lombok.AllArgsConstructor;
  10. import org.springframework.stereotype.Service;
  11. /**
  12. * @title: 助学金申请
  13. * @Author dzx
  14. * @Date: 2023-11-24
  15. * @Version 1.0
  16. */
  17. @Service
  18. @AllArgsConstructor
  19. public class BaseStudentBursariesApplicantServiceImpl extends MPJBaseServiceImpl<BaseStudentBursariesApplicantMapper, BaseStudentBursariesApplicant> implements IBaseStudentBursariesApplicantService {
  20. private final BaseStudentBursariesApplicantMapper baseStudentBursariesApplicantMapper;
  21. @Override
  22. public Page<BaseStudentBursariesApplicantPageVo> getPage(Page<BaseStudentBursariesApplicantPageDto> page, BaseStudentBursariesApplicantPageDto dto) {
  23. Page<BaseStudentBursariesApplicantPageVo> result = baseStudentBursariesApplicantMapper.getPage(page, dto);
  24. return result;
  25. }
  26. }