@be-link/ecommerce-trade-service-node-sdk 0.1.43 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,16 +6,35 @@ export declare namespace RosOrderQueryService {
|
|
|
6
6
|
interface IOrderList {
|
|
7
7
|
/** 查询条件 */
|
|
8
8
|
conditions?: {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
9
|
+
/** 下单时间范围 */
|
|
10
|
+
createdAt?: {
|
|
11
|
+
start?: number;
|
|
12
|
+
end?: number;
|
|
13
|
+
};
|
|
14
|
+
/** 退款操作时间范围 */
|
|
15
|
+
operateTime?: {
|
|
16
|
+
start?: number;
|
|
17
|
+
end?: number;
|
|
18
|
+
};
|
|
19
|
+
/** 退款申请时间范围 */
|
|
20
|
+
orderTime?: {
|
|
21
|
+
start?: number;
|
|
22
|
+
end?: number;
|
|
23
|
+
};
|
|
24
|
+
/** 退款订单状态列表 */
|
|
25
|
+
statusList?: ENUM.ReverseOrderStatus[];
|
|
26
|
+
/** 退款到账状态列表 */
|
|
27
|
+
arrivalStatusList?: ENUM.ReverseArrivalStatus[];
|
|
28
|
+
/** 退款方式列表 */
|
|
29
|
+
wayList?: ENUM.ReverseRefundWay[];
|
|
30
|
+
/** 退款类型列表 */
|
|
31
|
+
typeList?: ENUM.ReverseRefundType[];
|
|
32
|
+
/** 用户ID列表 */
|
|
33
|
+
userIds?: string[];
|
|
34
|
+
/** 正向订单ID列表 */
|
|
35
|
+
orderIds?: string[];
|
|
36
|
+
/** 门店ID列表 */
|
|
37
|
+
storeIds?: string[];
|
|
19
38
|
};
|
|
20
39
|
/** 分页 */
|
|
21
40
|
pagination: {
|