feat: 支付订单

This commit is contained in:
2025-09-06 18:55:07 +08:00
parent c78be00ded
commit 25e9b310a6
4 changed files with 222 additions and 101 deletions

View File

@@ -20,6 +20,12 @@ export interface GameDetail {
updated_at: string,
}
export enum MATCH_STATUS {
NOT_STARTED = 0, // 未开始
IN_PROGRESS = 1, //进行中
FINISHED = 2 //已结束
}
// 响应接口
export interface Response {
code: string