feat: add employee work fields

This commit is contained in:
Methapon Metanipat 2024-11-11 13:54:47 +07:00
parent 75ecf230f7
commit aae7c4640e
3 changed files with 20 additions and 4 deletions

View file

@ -37,11 +37,10 @@ type EmployeeWorkPayload = {
positionName?: string | null;
jobType?: string | null;
workplace?: string | null;
identityNo?: string | null;
workPermitNo?: string | null;
workPermitIssueDate?: Date | null;
workPermitExpireDate?: Date | null;
workEndDate?: Date | null;
remark?: string | null;
};
@Route("api/v1/employee/{employeeId}/work")