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.
35 lines
568 B
35 lines
568 B
2 years ago
|
export interface pagedetails{
|
||
|
/**筛选状态中文
|
||
|
* */
|
||
|
schanvalue:string;
|
||
|
/**可筛选状态
|
||
|
* */
|
||
|
typearr:{
|
||
|
value:number;
|
||
|
label:string;
|
||
|
}[];
|
||
|
/**订单状态
|
||
|
* */
|
||
|
orderStatus:number;
|
||
|
/**自提单ID
|
||
|
* */
|
||
|
billLadingId:number|string;
|
||
|
/**返回的数据
|
||
|
* */
|
||
|
datalist:any;
|
||
|
/**订单自编码,用户输入的
|
||
|
* */
|
||
|
orderSelfNumbering:string;
|
||
|
/**订单总数
|
||
|
* */
|
||
|
orderNum:string|number;
|
||
|
/**齐套总数
|
||
|
* */
|
||
|
completeNum:string|number;
|
||
|
/**自提件数
|
||
|
* */
|
||
|
planNum:string|number;
|
||
|
/**签收总数
|
||
|
* */
|
||
|
signedNum:string|number;
|
||
|
}
|