ข้อมูลทะเบียนประวัติ => Dialog

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-08 10:49:49 +07:00
parent cbf34695b8
commit e452c6dfe0
8 changed files with 1536 additions and 626 deletions

View file

@ -12,4 +12,15 @@ interface DataLevel {
posLevelRank: number;
}
export type { DataType, DataLevel };
interface DataPerson {
citizenId: string;
firstName: string;
id: string;
lastName: string;
posLevelId: string;
posTypeId: string;
position: string;
prefix: string;
}
export type { DataType, DataLevel, DataPerson };