จัดการผู้ใช้งาน => ปรัับ ui เพิ่มผู้ใช้งาน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-13 18:04:47 +07:00
parent baaa75f4da
commit 1e061649e0
4 changed files with 385 additions and 104 deletions

View file

@ -108,4 +108,31 @@ interface SysList {
children: SysList[];
}
export type { Users, Roles, NodeTree, PosMaster, Position, SysList };
interface Profile {
birthDate: string;
citizenId: string;
educationDegree: string;
email: string;
firstName: string;
id: string;
lastName: string;
name: string;
organization: string;
phone: string;
posLevelId: string;
posLevelName: string;
posMasterNo: number;
posNo: string;
posTypeId: string;
posTypeName: string;
position: string;
positionLevel: string;
positionLevelName: string;
positionType: string;
positionTypeName: string;
prefix: string;
rank: string;
salary: number;
}
export type { Users, Roles, NodeTree, PosMaster, Position, SysList, Profile };