API หน้าแก้ไขข้อมูลลูกจ้างชั่วคราว

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-25 17:26:47 +07:00
parent d642f74a61
commit 91bd7a3441
3 changed files with 339 additions and 22 deletions

View file

@ -55,5 +55,24 @@ interface FormEmploymentRef {
orderEmployment: Object | null
[key: string]: any;
};
interface EmploymentList {
id: string
dateEmployment: Date | null
orderEmployment: string
dataISO: Date | null
createdFullName: string
createdAt: Date
lastUpdateFullName: string
lastUpdatedAt: Date
}
interface Respones {
id: string
date: Date
command: string
createdFullName: string
createdAt: Date
lastUpdateFullName: string
lastUpdatedAt: Date
}
export type { employeePosition, FormEmployment, FormEmploymentRef };
export type { employeePosition, FormEmployment, FormEmploymentRef, EmploymentList, Respones };