16 lines
652 B
TypeScript
16 lines
652 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 };
|