商户订单

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
+16
View File
@@ -0,0 +1,16 @@
export default interface IOrderRefund {
id?: number;
refund_no?: string;
order_id?: number;
order_item_id?: number;
user_id?: number;
merchant_id?: number;
amount?: number;
reason?: string;
images?: string;
status?: number;
reply?: string;
processed_at?: string;
created_at?: string;
updated_at?: string;
}