货无忧安装平台
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.
 
 
 
 
 

22 lines
310 B

export interface detailType {
/**
* 配车时间
* */
datatime : string | number;
/**
* 是否显示时间选择器
* */
show : boolean;
/**
* 配车数据列表
* */
recordsList : any;
/**
* 获取的页码
* */
current : number;
/**
* 获取的数据大小
* */
size : number;
}