feat: add remark field

This commit is contained in:
Methapon2001 2024-06-10 14:47:33 +07:00
parent e96a05e3ad
commit 1aea0d9133
2 changed files with 4 additions and 0 deletions

View file

@ -68,6 +68,7 @@ type EmployeeCreate = {
workPermitIssuDate: Date;
workPermitExpireDate: Date;
workEndDate: Date;
remark?: string;
}[];
employeeCheckup?: {
@ -138,6 +139,7 @@ type EmployeeUpdate = {
workPermitIssuDate: Date;
workPermitExpireDate: Date;
workEndDate: Date;
remark?: string;
}[];
employeeCheckup?: {

View file

@ -25,6 +25,7 @@ type EmployeeWorkCreate = {
workPermitIssuDate: Date;
workPermitExpireDate: Date;
workEndDate: Date;
remark?: string;
};
type EmployeeWorkUpdate = {
@ -36,6 +37,7 @@ type EmployeeWorkUpdate = {
workPermitIssuDate?: Date;
workPermitExpireDate?: Date;
workEndDate?: Date;
remark?: string;
};
@Route("api/v1/employee/{employeeId}/work")