refactor: edit type passpor

This commit is contained in:
Thanaphon Frappet 2024-11-11 14:58:24 +07:00
parent 6efce3c4bb
commit 82d28cc3aa
3 changed files with 124 additions and 109 deletions

View file

@ -297,14 +297,29 @@ export type EmployeeVisaPayload = {
};
export type EmployeePassportPayload = {
id?: string;
number: string;
type: string;
issueDate: Date;
expireDate: Date;
issueCountry: string;
birthCountry: string;
previousPassportRef: string;
issuePlace: string;
previousPassportRef?: string | null;
issueCountry: string;
issueDate: Date;
type: string;
expireDate: Date;
birthDate: Date;
updatedAt: Date;
createdAt: Date;
workerStatus: string;
nationality: string;
gender: string;
lastNameEN: string;
lastName: string;
middleNameEN: string;
middleName: string;
firstNameEN: string;
firstName: string;
namePrefix: string;
employeeId: string;
number: string;
id?: string;
};
export type EmployeeInCountryNoticePayload = {