IBaseStudentScholarshipApplicantService.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.BaseStudentScholarshipApplicantCategoryPageDto;
  5. import com.xjrsoft.module.student.entity.BaseStudentScholarshipApplicant;
  6. import com.xjrsoft.module.student.vo.BaseStudentScholarshipApplicantCategoryPageVo;
  7. import org.springframework.web.multipart.MultipartFile;
  8. import java.io.IOException;
  9. import java.util.List;
  10. import java.util.Map;
  11. /**
  12. * @title: 奖学金申请
  13. * @Author dzx
  14. * @Date: 2023-11-23
  15. * @Version 1.0
  16. */
  17. public interface IBaseStudentScholarshipApplicantService extends MPJBaseService<BaseStudentScholarshipApplicant> {
  18. /**
  19. * 流程数据处理
  20. *
  21. * @return
  22. */
  23. Boolean processDataHandler(Long dataId);
  24. /**
  25. * app分页查询
  26. *
  27. * @param page
  28. * @param dto
  29. * @return
  30. */
  31. Page<BaseStudentScholarshipApplicantCategoryPageVo> getScholarshiPage(Page<BaseStudentScholarshipApplicantCategoryPageDto> page, BaseStudentScholarshipApplicantCategoryPageDto dto);
  32. List<Map<String, String>> importData(MultipartFile file) throws IOException;
  33. Boolean updateReleaseStatus(BaseStudentScholarshipApplicant scholarshipApplicant);
  34. }