เพิ่ม ฟิลเตอร์หน่วยงาน

This commit is contained in:
setthawutttty 2024-10-15 14:57:32 +07:00
parent a8f37ef058
commit 0f648e397e
3 changed files with 520 additions and 336 deletions

View file

@ -8,4 +8,33 @@ interface ItemsDropdown {
val: string;
}
export type { Pagination, ItemsDropdown };
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;
id: string | null;
}
export type { Pagination, ItemsDropdown,DataTree,QueryProfile };