You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
941 B
63 lines
941 B
export interface detailType{ |
|
/** 数据列表 |
|
* */ |
|
dataList:{ |
|
/** 订单号 |
|
* */ |
|
orderCode:string|number; |
|
/** 包装号 |
|
* */ |
|
packageBarCode:string|number; |
|
/** 货物类型 |
|
* */ |
|
goodsType?:string|number; |
|
/** 是否备货 |
|
* */ |
|
scanId?:string|number; |
|
/** 备货 |
|
* */ |
|
StockUp?:string|number; |
|
}[]; |
|
/** 订单ID |
|
* */ |
|
stockArticleId:string; |
|
/** 订单类型 |
|
* */ |
|
orderStatus:string; |
|
/** 预约单ID |
|
* */ |
|
reservationId:string; |
|
/** 库存品ID |
|
* */ |
|
stockListId:string; |
|
/** 库位 |
|
* */ |
|
allocation:string; |
|
/** 托盘 |
|
* */ |
|
pallet:string; |
|
/** 客户 |
|
* */ |
|
customer:string; |
|
/** 备货区域 |
|
* */ |
|
stockupArea:string; |
|
/** 计划件数 |
|
* */ |
|
planNum:string|number; |
|
/** 扫码件数 |
|
* */ |
|
scanNum:string|number; |
|
/** 托盘 |
|
* */ |
|
trays:string; |
|
/** 库位号 |
|
* */ |
|
warehouseArea:string; |
|
/** 订单编号 |
|
* */ |
|
orderCode:string; |
|
/** 扫描结果 |
|
* */ |
|
scancode:string; |
|
} |