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.
39 lines
505 B
39 lines
505 B
2 years ago
|
export interface detailType{
|
||
|
/**
|
||
|
* 预约单ID
|
||
|
* */
|
||
|
reservationId:string|number;
|
||
|
/**
|
||
|
* 备货客户列表 订制品
|
||
|
* */
|
||
|
orderList:any;
|
||
|
/**
|
||
|
* 备货客户列表 库存品
|
||
|
* */
|
||
|
stockList:any;
|
||
|
/**
|
||
|
* 订单类型
|
||
|
* */
|
||
|
orderStatus:number;
|
||
|
/**
|
||
|
* 用户信息
|
||
|
* */
|
||
|
user:{
|
||
|
/**
|
||
|
* 客户名字
|
||
|
* */
|
||
|
consignee:string;
|
||
|
/**
|
||
|
* 备货区
|
||
|
* */
|
||
|
goodsAreaName:string;
|
||
|
/**
|
||
|
* 计划件数
|
||
|
* */
|
||
|
planNum:string;
|
||
|
/**
|
||
|
* 扫码件数
|
||
|
* */
|
||
|
scanNum:string;
|
||
|
}
|
||
|
}
|