商户订单

This commit is contained in:
liu
2026-06-17 10:52:47 +08:00
parent 8d52e863b9
commit 845bea4b81
35 changed files with 1716 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
export default interface IMerchantWithdrawal {
id?: number;
withdraw_no?: string;
merchant_id?: number;
amount?: number;
channel?: string;
account_info?: string;
status?: number;
remark?: string;
processed_at?: string;
created_at?: string;
updated_at?: string;
}