| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.xjrsoft.module.student.service;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.student.dto.BaseStudentScholarshipApplicantCategoryPageDto;
- import com.xjrsoft.module.student.entity.BaseStudentScholarshipApplicant;
- import com.xjrsoft.module.student.vo.BaseStudentScholarshipApplicantCategoryPageVo;
- import org.springframework.web.multipart.MultipartFile;
- import java.io.IOException;
- import java.util.List;
- import java.util.Map;
- /**
- * @title: 奖学金申请
- * @Author dzx
- * @Date: 2023-11-23
- * @Version 1.0
- */
- public interface IBaseStudentScholarshipApplicantService extends MPJBaseService<BaseStudentScholarshipApplicant> {
- /**
- * 流程数据处理
- *
- * @return
- */
- Boolean processDataHandler(Long dataId);
- /**
- * app分页查询
- *
- * @param page
- * @param dto
- * @return
- */
- Page<BaseStudentScholarshipApplicantCategoryPageVo> getScholarshiPage(Page<BaseStudentScholarshipApplicantCategoryPageDto> page, BaseStudentScholarshipApplicantCategoryPageDto dto);
- List<Map<String, String>> importData(MultipartFile file) throws IOException;
- Boolean updateReleaseStatus(BaseStudentScholarshipApplicant scholarshipApplicant);
- }
|