feat:完善交费记录页面

This commit is contained in:
yangqingyuan
2024-08-21 11:01:29 +08:00
parent b5e5a19b69
commit 19b81774c0
3 changed files with 55 additions and 37 deletions

View File

@@ -82,6 +82,35 @@ export interface Order {
isRefund?:number;
}
export interface OrderPay {
// 订单id
orderId?: number;
// 订单类型
orderType?: string;
// 订单来源
orderSource?: number;
// 来源记录ID
orderSourceId?: number;
// 来源记录的参数 (json格式)
orderSourceData?: string;
rentOrderId?: number;
// 订单编号
orderNo?: string;
// 创建时间
createTime?: string;
startTime?: string;
deliveryTime?: string;
expirationTime?: string;
expirationDay?: number;
// 状态
status?: string;
// 用户ID
userId?: any;
equipmentCode: string;
merchantName?:string;
}
/**
* 订单搜索条件
*/