feat: add visa fields

This commit is contained in:
Methapon Metanipat 2024-11-11 13:38:28 +07:00
parent c66cf6e3a0
commit 68f425a149
3 changed files with 17 additions and 2 deletions

View file

@ -40,8 +40,13 @@ type EmployeeVisaPayload = {
issuePlace: string;
issueDate: Date;
expireDate: Date;
mrz?: string;
remark?: string;
mrz?: string | null;
remark?: string | null;
arrivalTM: string;
arrivalTMNo: string;
arrivalAt: string;
workerType: string;
};
@Route("api/v1/employee/{employeeId}/visa")