16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
![]() |
export type TableListItem = {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
projectCode: string;
|
||
|
createTime: string;
|
||
|
purchaseType: string;
|
||
|
purchaseType: string;
|
||
|
status: string;
|
||
|
version: string;
|
||
|
};
|
||
|
|
||
|
export type TableListPagination = {
|
||
|
total: number;
|
||
|
pageSize: number;
|
||
|
current: number;
|
||
|
};
|