refactor: edit type visa

This commit is contained in:
Thanaphon Frappet 2024-11-12 09:01:38 +07:00
parent ddd1094f3a
commit b4fc7c7202

View file

@ -284,16 +284,20 @@ export type NewEmployeeHistory = {
}; };
export type EmployeeVisaPayload = { export type EmployeeVisaPayload = {
id?: string; arrivalAt: string;
number: string; arrivalTMNo: string;
type: string; arrivalTM: string;
entryCount: number;
issueCountry: string;
issuePlace: string;
issueDate: Date;
expireDate: Date;
mrz?: string; mrz?: string;
entryCount: number;
issuePlace: string;
issueCountry: string;
issueDate: Date;
type: string;
expireDate: Date;
remark?: string; remark?: string;
workerType: string;
number: string;
id?: string;
}; };
export type EmployeePassportPayload = { export type EmployeePassportPayload = {