feat: 订单模块基本完成

This commit is contained in:
2025-09-16 14:34:11 +08:00
parent 4a00c7f1d8
commit a045b39580
13 changed files with 799 additions and 288 deletions

View File

@@ -22,6 +22,12 @@ export enum CancelType {
TIMEOUT, // 超时
}
export enum RefundStatus {
NONE = 0, // 无退款
PENDING, // 退款中
SUCCESS, // 已退款
}
export interface PayMentParams {
order_id: number;
order_no: string;