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.
86 lines
1.3 KiB
86 lines
1.3 KiB
export interface detailType{ |
|
/** 数据列表 |
|
* */ |
|
dataList:{ |
|
/** 订单号 |
|
* */ |
|
orderCode:string|number; |
|
/** 包条码 |
|
* */ |
|
packageBarCode:string|number; |
|
/** 货物类型 |
|
* */ |
|
goodsType?:string|number; |
|
/** 是否备货 |
|
* */ |
|
isScan?:string|number; |
|
/** 是否扫描文字 |
|
* */ |
|
isScanStr?:string; |
|
/** 备货 |
|
* */ |
|
StockUp?:string|number; |
|
/** 物料名称 |
|
* */ |
|
materialName?:string |
|
}[]; |
|
/** 订单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; |
|
/** 任务id |
|
* */ |
|
stockupId:string; |
|
/** 客户地址 |
|
* */ |
|
address:string; |
|
/** 是否扫描 |
|
* */ |
|
isscan:boolean; |
|
/** 库位ID |
|
* */ |
|
allocationId:string; |
|
/** 状态 |
|
* */ |
|
status:string|number; |
|
|
|
typeService:number|string |
|
} |