แก้ไขระบบงวด 3 หลังตรวจรับ - UI ลูกจ้างชั่วคราว

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-24 17:21:03 +07:00
parent f32638e675
commit 4ead339be2
3 changed files with 304 additions and 2 deletions

View file

@ -46,5 +46,14 @@ interface employeePosition {
positionEmployeePositionSides: ObjectNameId[];
use: boolean;
}
interface FormEmployment {
dateEmployment: Date | null
orderEmployment: string
}
interface FormEmploymentRef {
dateEmployment: Object | null
orderEmployment: Object | null
[key: string]: any;
};
export type { employeePosition };
export type { employeePosition, FormEmployment, FormEmploymentRef };