แก้ไข ทะเบียนประวัติลูกจ้างชั่วคราว

This commit is contained in:
Thanit Konmek 2023-08-04 14:52:57 +07:00
parent e095ef3186
commit 7ee07b9d85
2 changed files with 160 additions and 144 deletions

View file

@ -16,10 +16,14 @@ interface FormRegistryEmployee {
dateAppoint: String | null;
dateStart: String | null;
createdAt: String | null;
// salaryDate: String | null;
// salaryDate: String | null;
isLeave: String;
// leaveReason: string;
// leaveReason: string;
leaveDateOrder: String | null;
draftPositionEmployee: String | null;
draftOrganizationOrganization: String | null;
newAgency: String | null;
currentAgency: String | null;
}
interface ResponseEmployeeTemp {
id: string;
@ -43,5 +47,7 @@ interface ResponseEmployeeTemp {
isLeave: boolean;
leaveReason: string;
leaveDateOrder: Date | null;
draftPositionEmployee: String | null;
draftOrganizationOrganization: String | null;
}
export type { ResponseEmployeeTemp, FormRegistryEmployee };