Add comment

This commit is contained in:
Suphonchai Phoonsawat 2024-12-10 10:05:21 +07:00
parent 296f33b190
commit 5ada115c90

View file

@ -26,25 +26,85 @@ interface DPISResponse {
}
interface DPISResult {
/**
*
*/
citizenId: string;
/**
*
*/
prefix: string;
/**
*
*/
firstName: string;
/**
*
*/
lastName: string;
/**
*
*/
gender: string;
/**
*
*/
physicalStatus: string;
/**
*
*/
QualityWorkforce: boolean;
/**
*
*/
birthDate: DateTime;
/**
*
*/
dateAppoint: DateTime;
/**
*
*/
dateStart: DateTime;
/**
*
*/
dateRetire: DateTime;
/**
* ?
*/
isLeave: boolean;
/**
* ?
*/
isProbation: boolean;
/**
*
*/
leaveReason: string;
/**
*
*/
positionLevel: string;
/**
*
*/
positionType: string;
/**
*
*/
educations: ProfileEducationResult[];
/**
*
*/
leaves: ProfileLeaveResult[];
/**
*
*/
salaries: ProfileSalaryResult[];
/**
*
*/
organization: ProfileOrgResult;
}