参赛选手加入编号,增加导出功能

This commit is contained in:
litianxiang
2026-02-04 13:41:09 +08:00
parent 1286e84488
commit 1decd8e258
5 changed files with 144 additions and 1 deletions

View File

@@ -20,6 +20,17 @@ public interface GlobalAwardService {
CheckOTPVO checkCode(String email, String otp);
void checkSecurityToken(String email, String securityToken);
/**
* 导出参赛者列表为 Excel二进制
* @return Excel 文件的字节数组
*/
byte[] exportContestants() throws Exception;
/**
* 将参赛者列表导出并保存到服务端本地目录(使用服务配置的 uploadDir/exports
*/
void saveContestantsToLocal() throws Exception;
}