@be-link/pos-cli-nodejs 0.0.42 → 0.0.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.
package/package.json
CHANGED
|
@@ -175,15 +175,17 @@ export declare namespace Service {
|
|
|
175
175
|
/** 类目 */
|
|
176
176
|
categoryTwo?: string;
|
|
177
177
|
/** 履约时间 */
|
|
178
|
-
fulfillAt
|
|
179
|
-
/**
|
|
180
|
-
|
|
178
|
+
fulfillAt: number;
|
|
179
|
+
/** 履约时间比较条件 */
|
|
180
|
+
fulfillAtComparer: 'GTE' | 'LT';
|
|
181
|
+
/** 商品Id列表 */
|
|
182
|
+
itemIdList?: string[];
|
|
181
183
|
/** 页面下标 */
|
|
182
|
-
pageIndex
|
|
184
|
+
pageIndex?: number;
|
|
183
185
|
/** 页面条数 */
|
|
184
|
-
pageSize
|
|
186
|
+
pageSize?: number;
|
|
185
187
|
/** 订单状态 */
|
|
186
|
-
|
|
188
|
+
statusList?: PosConstants.TradeOrderStatusEnum[];
|
|
187
189
|
}
|
|
188
190
|
interface getPartyOrderCount {
|
|
189
191
|
/** 类目 */
|