อัตรากำลังลูกจ้างประจำ ฯ => refactor code
This commit is contained in:
parent
7e2350eef8
commit
81e0a82b0e
18 changed files with 377 additions and 188 deletions
|
|
@ -18,4 +18,23 @@ interface ChildLevelTree {
|
|||
[key: string]: ChildConfig[];
|
||||
}
|
||||
|
||||
export type { ListMenu, ChildLevelTree, ChildConfig };
|
||||
interface DataPermissions {
|
||||
id: string;
|
||||
roleDescription: string;
|
||||
roleName: string;
|
||||
roles: DataRoles[];
|
||||
}
|
||||
|
||||
interface DataRoles {
|
||||
attrIsCreate: boolean;
|
||||
attrIsDelete: boolean;
|
||||
attrIsGet: boolean;
|
||||
attrIsList: boolean;
|
||||
attrIsUpdate: boolean;
|
||||
attrOwnership: string;
|
||||
attrPrivilege: string;
|
||||
authSysId: string;
|
||||
parentNode: string;
|
||||
}
|
||||
|
||||
export type { ListMenu, ChildLevelTree, ChildConfig, DataPermissions };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue