修改分页定义

This commit is contained in:
2024-11-01 09:10:37 +08:00
parent b207bc0e68
commit 998b30d153
5 changed files with 37 additions and 9 deletions

View File

@@ -4,9 +4,17 @@ export namespace Table {
pageSize: number;
total: number;
}
export interface ResPageable {
current: number;
size: number;
total: number;
}
export interface StateProps {
tableData: any[];
pageable: Pageable;
resPageable: ResPageable;
searchParam: {
[key: string]: any;
};