hrms-admin/src/modules/03_logs/interface/index/Main.ts
2024-10-24 12:58:54 +07:00

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 };