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.
60 lines
1.1 KiB
60 lines
1.1 KiB
8 months ago
|
export interface pagedetailType {
|
||
|
/**筛选状态中文
|
||
|
* */
|
||
|
schanvalue : string;
|
||
|
/**可筛选状态
|
||
|
* */
|
||
|
typearr : {
|
||
|
value : number;
|
||
|
label : string;
|
||
|
}[];
|
||
|
/**订单状态
|
||
|
* */
|
||
|
orderStatus : number;
|
||
|
|
||
|
orderType : number;
|
||
|
/**订单自编码,用户输入的
|
||
|
* */
|
||
|
// orderSelfNumbering:string;
|
||
|
/**返回的数据列表
|
||
|
* */
|
||
|
dataList : any;
|
||
|
/**自提订单id
|
||
|
* */
|
||
|
billLadingId : string | number;
|
||
|
orderCode ?: string | number;
|
||
|
/**配车类型
|
||
|
* */
|
||
|
carTypeStr : string;
|
||
|
/**车牌号
|
||
|
* */
|
||
|
pickUpPlate : string;
|
||
|
/**司机(提货人)
|
||
|
* */
|
||
|
consignee : string;
|
||
|
/**计划订单总数
|
||
|
* */
|
||
|
orderNum : number | string;
|
||
|
/**计划签收总数
|
||
|
* */
|
||
|
planNum : number | string;
|
||
|
/**完成订单总数
|
||
|
* */
|
||
|
completeNum : number | string;
|
||
|
/**完成签收总数
|
||
|
* */
|
||
|
signedNum : number | string;
|
||
|
/**扫描参数
|
||
|
* */
|
||
|
scancode : string;
|
||
|
/**是否扫描
|
||
|
* */
|
||
|
isscan : boolean;
|
||
|
orderList : any;
|
||
|
zeroList : any;
|
||
|
stockList : any;
|
||
|
/** 滚动区高度 */
|
||
|
scrollHeight : string
|
||
|
/** 扫描的码值 */
|
||
|
scanOrderPackageCode : string
|
||
|
}
|