กำหนดสิทธิ์จัดการโครงสร้าง
This commit is contained in:
parent
79875347f9
commit
6e9c8bf593
8 changed files with 801 additions and 4 deletions
|
|
@ -52,4 +52,51 @@ interface DataSystem {
|
|||
parentNode: string;
|
||||
}
|
||||
|
||||
export type { Pagination, ItemsMenu, DataOption, SystemList, DataSystem };
|
||||
interface DataTree {
|
||||
ancestorDNA: string;
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: "94ba986d-f871-46a2-be92-46c0cbf0bc56";
|
||||
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 DataProfile {
|
||||
avatar: string;
|
||||
avatarName: string;
|
||||
firstName: string;
|
||||
id: string;
|
||||
lastName: string;
|
||||
org: string;
|
||||
orgNew?: string;
|
||||
orgRootId?: string;
|
||||
posLevel: string;
|
||||
posNo: string;
|
||||
posType: string;
|
||||
position: string;
|
||||
prefix: string;
|
||||
rank: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
Pagination,
|
||||
ItemsMenu,
|
||||
DataOption,
|
||||
SystemList,
|
||||
DataSystem,
|
||||
DataTree,
|
||||
DataProfile,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -27,4 +27,12 @@ interface FilterReqMaster {
|
|||
keyword: string;
|
||||
revisionId: string;
|
||||
}
|
||||
export type { FormUser, FormRole, Roles, FilterReqMaster };
|
||||
|
||||
interface QueryProfile {
|
||||
searchKeyword: string;
|
||||
searchField: string;
|
||||
page: number;
|
||||
pageSize: number;
|
||||
id: string | null;
|
||||
}
|
||||
export type { FormUser, FormRole, Roles, FilterReqMaster, QueryProfile };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue