จัดการสิทธิ์ => UI Dialog จัดการสิทธิ์

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-05 09:25:47 +07:00
parent 9ce059949c
commit 0531cf2bb3
5 changed files with 364 additions and 51 deletions

View file

@ -16,4 +16,14 @@ interface Roles {
id: string;
name: string;
}
export type { FormUser, FormRole, Roles };
interface FilterReqMaster {
id: string;
type: number;
isAll: boolean;
page: number;
pageSize: number;
keyword: string;
revisionId: string;
}
export type { FormUser, FormRole, Roles, FilterReqMaster };