Add comment
This commit is contained in:
parent
296f33b190
commit
5ada115c90
1 changed files with 60 additions and 0 deletions
|
|
@ -26,25 +26,85 @@ interface DPISResponse {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DPISResult {
|
interface DPISResult {
|
||||||
|
/**
|
||||||
|
* เลขประจำตัวประชาชน
|
||||||
|
*/
|
||||||
citizenId: string;
|
citizenId: string;
|
||||||
|
/**
|
||||||
|
* คำนำหน้า
|
||||||
|
*/
|
||||||
prefix: string;
|
prefix: string;
|
||||||
|
/**
|
||||||
|
* ชื่อ
|
||||||
|
*/
|
||||||
firstName: string;
|
firstName: string;
|
||||||
|
/**
|
||||||
|
* นามสกุล
|
||||||
|
*/
|
||||||
lastName: string;
|
lastName: string;
|
||||||
|
/**
|
||||||
|
* เพศ
|
||||||
|
*/
|
||||||
gender: string;
|
gender: string;
|
||||||
|
/**
|
||||||
|
* สถานะ
|
||||||
|
*/
|
||||||
physicalStatus: string;
|
physicalStatus: string;
|
||||||
|
/**
|
||||||
|
* หน่วยงานคุณภาพ
|
||||||
|
*/
|
||||||
QualityWorkforce: boolean;
|
QualityWorkforce: boolean;
|
||||||
|
/**
|
||||||
|
* วันเกิด
|
||||||
|
*/
|
||||||
birthDate: DateTime;
|
birthDate: DateTime;
|
||||||
|
/**
|
||||||
|
* วันบรรจุ
|
||||||
|
*/
|
||||||
dateAppoint: DateTime;
|
dateAppoint: DateTime;
|
||||||
|
/**
|
||||||
|
* วันเริ่มปฏิบัติราชการ
|
||||||
|
*/
|
||||||
dateStart: DateTime;
|
dateStart: DateTime;
|
||||||
|
/**
|
||||||
|
* วันที่เกษียณอายุราชการ
|
||||||
|
*/
|
||||||
dateRetire: DateTime;
|
dateRetire: DateTime;
|
||||||
|
/**
|
||||||
|
* พ้นจากราชการหรือไม่?
|
||||||
|
*/
|
||||||
isLeave: boolean;
|
isLeave: boolean;
|
||||||
|
/**
|
||||||
|
* พ้นจากการทดลองปฏิบัติราชการหรือไม่?
|
||||||
|
*/
|
||||||
isProbation: boolean;
|
isProbation: boolean;
|
||||||
|
/**
|
||||||
|
* สาเหตุการพ้นจากราชการ
|
||||||
|
*/
|
||||||
leaveReason: string;
|
leaveReason: string;
|
||||||
|
/**
|
||||||
|
* ระดับ
|
||||||
|
*/
|
||||||
positionLevel: string;
|
positionLevel: string;
|
||||||
|
/**
|
||||||
|
* ประเภท
|
||||||
|
*/
|
||||||
positionType: string;
|
positionType: string;
|
||||||
|
/**
|
||||||
|
* ข้อมูลประวัติการศึกษา
|
||||||
|
*/
|
||||||
educations: ProfileEducationResult[];
|
educations: ProfileEducationResult[];
|
||||||
|
/**
|
||||||
|
* ข้อมูลการลา
|
||||||
|
*/
|
||||||
leaves: ProfileLeaveResult[];
|
leaves: ProfileLeaveResult[];
|
||||||
|
/**
|
||||||
|
* ข้อมูลเงินเดือน
|
||||||
|
*/
|
||||||
salaries: ProfileSalaryResult[];
|
salaries: ProfileSalaryResult[];
|
||||||
|
/**
|
||||||
|
* ข้อมูลหน่วยงาน
|
||||||
|
*/
|
||||||
organization: ProfileOrgResult;
|
organization: ProfileOrgResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue