17 lines
643 B
TypeScript
17 lines
643 B
TypeScript
|
|
interface ResponsePreson {
|
||
|
|
personId: string; //id อ้างอิง profile
|
||
|
|
idcard: string; //รหัสบัตรประชาชน
|
||
|
|
prefix: string; //คำนำหน้า
|
||
|
|
firstName: string; //ชื่อ
|
||
|
|
lastName: string; //นามสกุล
|
||
|
|
posNo: string; //เลขที่ตำแหน่ง
|
||
|
|
position: string; //ตำแหน่ง
|
||
|
|
positionLevel: string; //ระดับ
|
||
|
|
salaries: number; //เงินเดือน
|
||
|
|
organization: string; //สังกัด
|
||
|
|
email: string; //อีเมล
|
||
|
|
phone: string; //เบอร์โทรศัพท์
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponsePreson };
|