@be-link/pos-cli-nodejs 0.0.87 → 0.0.88
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
|
@@ -519,10 +519,16 @@ export declare namespace Service {
|
|
|
519
519
|
}[];
|
|
520
520
|
}
|
|
521
521
|
interface queryPartyOrderInfo {
|
|
522
|
+
/** 门店ID */
|
|
523
|
+
storeId: string;
|
|
524
|
+
/** 商品ID */
|
|
525
|
+
itemId: string;
|
|
522
526
|
/** skuId */
|
|
523
527
|
skuId: string;
|
|
524
|
-
/**
|
|
525
|
-
|
|
528
|
+
/** 订单数量 */
|
|
529
|
+
orderCount: number;
|
|
530
|
+
/** 出行时间 */
|
|
531
|
+
departureDate: number;
|
|
526
532
|
/** 当前份数 */
|
|
527
533
|
remainQuantity: number;
|
|
528
534
|
}
|