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.
46 lines
800 B
46 lines
800 B
10 months ago
|
export interface pagedetails {
|
||
|
/**筛选状态中文
|
||
|
* */
|
||
|
schanvalue : string;
|
||
|
/**可筛选状态
|
||
|
* */
|
||
|
typearr : {
|
||
|
value : number;
|
||
|
label : string;
|
||
|
}[];
|
||
|
/**订单状态
|
||
|
* */
|
||
|
orderStatus : number;
|
||
|
/**订单状态
|
||
|
* */
|
||
|
orderType : number;
|
||
|
/**自提单ID
|
||
|
* */
|
||
|
billLadingId : number | string;
|
||
|
/**返回的数据
|
||
|
* */
|
||
|
datalist : any;
|
||
|
/**订单自编码,用户输入的
|
||
|
* */
|
||
|
orderCode : string;
|
||
|
/**订单总数
|
||
|
* */
|
||
|
orderNum : string | number;
|
||
|
/**齐套总数
|
||
|
* */
|
||
|
completeNum : string | number;
|
||
|
/**库存品数
|
||
|
* */
|
||
|
inventoryNub : string | number;
|
||
|
/**自提件数
|
||
|
* */
|
||
|
planNum : string | number;
|
||
|
/**签收总数
|
||
|
* */
|
||
|
signedNum : string | number;
|
||
|
/**扫描结果
|
||
|
* */
|
||
|
scancode : string | number;
|
||
|
/** 是否为扫描后刷新 */
|
||
|
isscan : boolean
|
||
|
}
|