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.
17 lines
284 B
17 lines
284 B
2 years ago
|
export interface detailsType{
|
||
|
/** 选择筛选的时间
|
||
|
* */
|
||
|
datatime:string|number|null;
|
||
|
/** 是否显示时间选择器
|
||
|
* */
|
||
|
show:boolean|string;
|
||
|
/** 当前页
|
||
|
* */
|
||
|
current:number;
|
||
|
/** 每页数量
|
||
|
* */
|
||
|
size:number;
|
||
|
/** 返回数据列表
|
||
|
* */
|
||
|
recordsList:any;
|
||
|
}
|