ILeagueMembersManageService.java 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.AddLeagueMembersManageDto;
  5. import com.xjrsoft.module.student.dto.LeagueMembersExportQueryDto;
  6. import com.xjrsoft.module.student.entity.LeagueMembersManage;
  7. import lombok.Data;
  8. import org.springframework.web.multipart.MultipartFile;
  9. import java.io.ByteArrayOutputStream;
  10. import java.io.IOException;
  11. import java.util.List;
  12. /**
  13. * @title: 团员管理
  14. * @Author phoenix
  15. * @Date: 2025-04-08
  16. * @Version 1.0
  17. */
  18. public interface ILeagueMembersManageService extends MPJBaseService<LeagueMembersManage> {
  19. Boolean addRubAndHand(AddLeagueMembersManageDto dto);
  20. Boolean deleteRubAndHand(List<Long> ids);
  21. ByteArrayOutputStream leagueMembersTemplateDownload() throws IOException;
  22. String leagueMembersImport(MultipartFile file) throws IOException, IllegalAccessException;
  23. ByteArrayOutputStream textbookSubscriptionExportQuery(LeagueMembersExportQueryDto dto) throws IOException;
  24. }