按编号导出参赛选手文件

This commit is contained in:
litianxiang
2026-02-09 10:21:40 +08:00
parent 96b8613741
commit 0646484fba
4 changed files with 120 additions and 1 deletions

View File

@@ -31,6 +31,14 @@ public interface GlobalAwardService {
* 将参赛者列表导出并保存到服务端本地目录(使用服务配置的 uploadDir/exports
*/
void saveContestantsToLocal() throws Exception;
/**
* 根据参赛者编号范围导出参赛者文件到本地目录
* @param minContestantNumber 最小参赛者编号
* @param maxContestantNumber 最大参赛者编号
* @return 导出的参赛者数量
*/
int exportContestantFiles(Integer minContestantNumber, Integer maxContestantNumber) throws Exception;
}