@be-link/ecommerce-client-backend-service-node-sdk 0.1.82 → 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 的所有参数,包括分页)
|