添加后台支付成功记录列表

This commit is contained in:
2569718930@qq.com
2026-05-20 14:12:35 +08:00
parent 452dfe2218
commit 05f5d3c2dd
5 changed files with 138 additions and 3 deletions
+16
View File
@@ -75,6 +75,22 @@ export type IncidentsPayload = {
total?: number;
};
export type PaymentRecord = {
id: number;
user_id?: string;
amount?: number;
currency?: string;
chain?: string;
tx_hash?: string;
status?: string;
created_at?: string;
};
export type PaymentsPayload = {
payments?: PaymentRecord[];
total?: number;
};
export type OpsUser = {
telegram_id?: number;
username?: string;