data.d.ts 602 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
export interface TableListItem {
陈帅's avatar
陈帅 committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
  key: number;
  disabled?: boolean;
  href: string;
  avatar: string;
  name: string;
  title: string;
  owner: string;
  desc: string;
  callNo: number;
  status: number;
  updatedAt: Date;
  createdAt: Date;
  progress: number;
}

陈帅's avatar
陈帅 committed
17
export interface TableListPagination {
陈帅's avatar
陈帅 committed
18 19 20 21 22
  total: number;
  pageSize: number;
  current: number;
}

陈帅's avatar
陈帅 committed
23
export interface TableListDate {
陈帅's avatar
陈帅 committed
24 25 26 27
  list: TableListItem[];
  pagination: Partial<TableListPagination>;
}

陈帅's avatar
陈帅 committed
28
export interface TableListParams {
陈帅's avatar
陈帅 committed
29 30 31 32 33 34
  sorter: string;
  status: string;
  name: string;
  pageSize: number;
  currentPage: number;
}