40 lines
823 B
TypeScript
40 lines
823 B
TypeScript
interface Pagination {
|
|
page: number;
|
|
rowsPerPage: number;
|
|
}
|
|
|
|
interface ItemsDropdown {
|
|
labal: string;
|
|
val: string;
|
|
}
|
|
|
|
interface DataTree {
|
|
ancestorDNA: string;
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
id: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdatedAt: string;
|
|
orgRevisionId: string;
|
|
orgRootCode: string;
|
|
orgRootFax: string;
|
|
orgRootName: string;
|
|
orgRootOrder: number;
|
|
orgRootPhoneEx: string;
|
|
orgRootPhoneIn: string;
|
|
orgRootRank: string;
|
|
orgRootRankSub: string;
|
|
orgRootShortName: string;
|
|
responsibility: string;
|
|
}
|
|
|
|
interface QueryProfile {
|
|
searchKeyword: string;
|
|
searchField: string;
|
|
page: number;
|
|
pageSize: number;
|
|
rootId: string | undefined;
|
|
}
|
|
export type { Pagination, ItemsDropdown, DataTree, QueryProfile };
|