商户订单

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
+14
View File
@@ -0,0 +1,14 @@
export default interface IOrderPayment {
id?: number;
payment_no?: string;
order_id?: number;
user_id?: number;
payment_transaction_id?: string;
amount?: number;
pay_type?: number;
status?: number;
paid_at?: string;
refund_at?: string;
created_at?: string;
updated_at?: string;
}