ทะเบียนประวัติใหม่

This commit is contained in:
Bright 2024-05-02 21:09:29 +07:00
parent 769352b4c2
commit 23b1b58dca
2 changed files with 76 additions and 1 deletions

View file

@ -563,6 +563,46 @@ export class CreateProfile {
// bloodGroup: string | null;
}
export class CreateProfileAllFields {
rank: string;
prefix: string;
firstName: string;
lastName: string;
citizenId: string;
position: string;
posLevelId: string | null;
posTypeId: string | null;
email: string;
phone: string;
keycloak: string;
isProbation: boolean;
isLeave : boolean;
dateRetire : Date | null;
dateAppoint : Date | null;
dateStart: Date | null;
govAgeAbsent: number;
govAgePlus: number;
birthDate: Date | null;
reasonSameDate : Date | null;
ethnicity : string;
telephoneNumber : string;
nationality : string;
gender : string;
relationship : string;
religion : string;
bloodGroup : string;
registrationAddress : string;
registrationProvinceId : string;
registrationDistrictId: string;
registrationSubDistrictId : string;
registrationZipCode : string;
currentAddress : string;
currentProvinceId : string;
currentDistrictId : string;
currentSubDistrictId : string;
currentZipCode : string;
};
export type UpdateProfile = {
rank?: string | null;
prefix?: string | null;