货无忧
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.
 
 
 
 
 

53 lines
876 B

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;
}