@be-link/ecommerce-client-backend-service-node-sdk 0.1.81 → 0.1.83
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.
|
@@ -45,6 +45,10 @@ export declare namespace UserDataService {
|
|
|
45
45
|
pageSize?: number;
|
|
46
46
|
/** 页码,从0开始 */
|
|
47
47
|
pageIndex?: number;
|
|
48
|
+
/** 排序字段(仅当与 sortOrder 同时传入才生效) */
|
|
49
|
+
sortField?: string;
|
|
50
|
+
/** 排序方式(仅当与 sortField 同时传入才生效) */
|
|
51
|
+
sortOrder?: 'ASC' | 'DESC' | 'asc' | 'desc';
|
|
48
52
|
}
|
|
49
53
|
/**
|
|
50
54
|
* 导出用户列表请求参数(复用 GetUserList 的所有参数,包括分页)
|
|
@@ -331,6 +335,10 @@ export interface UserInfo {
|
|
|
331
335
|
lastWatchTime: string;
|
|
332
336
|
/** 累计消费金额(元) */
|
|
333
337
|
accumulatedConsumptionAmount: number;
|
|
338
|
+
/** 累计退款金额(元) */
|
|
339
|
+
accumulatedRefundAmount: number;
|
|
340
|
+
/** 7天累计消费金额(元) */
|
|
341
|
+
sevenDaysTotalAmount: number;
|
|
334
342
|
/** 最近消费时间 */
|
|
335
343
|
lastConsumptionTime: string;
|
|
336
344
|
/** 首次消费时间 */
|