feat(wallet logs): add reversal transaction type and status labels

1. 新增reversal冲正交易类型到钱包日志参数和筛选选项
2. 将原refund的标签拆分,单独为冲正添加选项
3. 新增已冲正和已人工处理两种交易状态标签
This commit is contained in:
2026-05-14 10:42:29 +08:00
parent ece50ae3b5
commit f777888940
2 changed files with 7 additions and 3 deletions

View File

@@ -42,6 +42,6 @@ export type GetWalletLogsParams = {
page?: number;
/** 每页条数PRD 示例 `size` */
size?: number;
/** 逗号分隔transfer_in,transfer_out,bet,prize,refund */
/** 逗号分隔transfer_in,transfer_out,bet,prize,refund,reversal */
type?: string;
};