| 123456789101112131415161718192021222324252627282930313233 |
- package com.xjrsoft.module.student.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.student.dto.AddLeagueMembersManageDto;
- import com.xjrsoft.module.student.dto.LeagueMembersExportQueryDto;
- import com.xjrsoft.module.student.entity.LeagueMembersManage;
- import lombok.Data;
- import org.springframework.web.multipart.MultipartFile;
- import java.io.ByteArrayOutputStream;
- import java.io.IOException;
- import java.util.List;
- /**
- * @title: 团员管理
- * @Author phoenix
- * @Date: 2025-04-08
- * @Version 1.0
- */
- public interface ILeagueMembersManageService extends MPJBaseService<LeagueMembersManage> {
- Boolean addRubAndHand(AddLeagueMembersManageDto dto);
- Boolean deleteRubAndHand(List<Long> ids);
- ByteArrayOutputStream leagueMembersTemplateDownload() throws IOException;
- String leagueMembersImport(MultipartFile file) throws IOException, IllegalAccessException;
- ByteArrayOutputStream textbookSubscriptionExportQuery(LeagueMembersExportQueryDto dto) throws IOException;
- }
|