feat: 球局状态操作done

This commit is contained in:
2025-09-17 18:34:36 +08:00
parent 9f4e026687
commit 9c56fd3f0e
10 changed files with 315 additions and 32 deletions

View File

@@ -82,6 +82,13 @@ export enum MATCH_STATUS {
NOT_STARTED = 0, // 未开始
IN_PROGRESS = 1, //进行中
FINISHED = 2, //已结束
CANCELED = 3, // 已取消
}
// 是否支持候补
export enum IsSubstituteSupported {
SUPPORT = '0', // 支持
NOTSUPPORT = '1', // 不支持
}
export interface UpdateLocationRes {