@be-link/pos-cli-nodejs 0.0.35 → 0.0.36
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 +1 -1
- package/pos/modules/orderQuery/types.d.ts +1 -1
- package/types.d.ts +8 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -547,6 +547,10 @@ export interface IPositiveMergeRecord {
|
|
|
547
547
|
targetId: string;
|
|
548
548
|
/** 资源 */
|
|
549
549
|
resources: TradeOrderMergeRecordResource[];
|
|
550
|
+
/** 创建时间 */
|
|
551
|
+
_createTime: number;
|
|
552
|
+
/** 更新时间 */
|
|
553
|
+
_updateTime: number;
|
|
550
554
|
}
|
|
551
555
|
export interface IShuttleInfo {
|
|
552
556
|
/** 班车记录Id */
|
|
@@ -591,6 +595,10 @@ export interface IPositiveNoteInfo {
|
|
|
591
595
|
modifyOperatorUser?: string;
|
|
592
596
|
/** 备注类型 */
|
|
593
597
|
type: PosConstants.NoteTypeEnum;
|
|
598
|
+
/** 创建时间 */
|
|
599
|
+
_createTime: number;
|
|
600
|
+
/** 更新时间 */
|
|
601
|
+
_updateTime: number;
|
|
594
602
|
}
|
|
595
603
|
export interface IPositiveChangeSkuRecord {
|
|
596
604
|
/** 变更记录Id */
|