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.
30 lines
402 B
30 lines
402 B
2 years ago
|
export interface pageData{
|
||
|
/**
|
||
|
* 选择筛选的时间
|
||
|
* */
|
||
|
datatime:string|number|null;
|
||
|
/**
|
||
|
* 数据列表
|
||
|
* */
|
||
|
dataList:any;
|
||
|
/**
|
||
|
* 是否显示时间选择器
|
||
|
* */
|
||
|
show:boolean|string;
|
||
|
/**
|
||
|
* 当前页
|
||
|
* */
|
||
|
currentPage:number;
|
||
|
/**
|
||
|
* 当前页的数量
|
||
|
* */
|
||
|
size:number;
|
||
|
/**
|
||
|
* 备货日期
|
||
|
* */
|
||
|
stockupDate:string|null;
|
||
|
/**
|
||
|
* 备货状态
|
||
|
* */
|
||
|
status:number;
|
||
|
}
|