2024-03-12 11:47:46 +07:00
|
|
|
interface FormMain {
|
2024-03-27 13:30:42 +07:00
|
|
|
ocId: string
|
|
|
|
|
positionId: string
|
|
|
|
|
positionLine: string
|
|
|
|
|
positionLevel: string
|
|
|
|
|
numberId: string
|
|
|
|
|
positionExecutive: string
|
|
|
|
|
positionExecutiveSide: string
|
|
|
|
|
positionType: string
|
|
|
|
|
positionPathSide: string
|
2024-03-12 11:47:46 +07:00
|
|
|
|
2024-03-27 13:30:42 +07:00
|
|
|
containDate: any
|
|
|
|
|
workDate: any
|
|
|
|
|
reasonSameDate: string
|
|
|
|
|
retireDate: any
|
|
|
|
|
ageAll: GovAgeForm
|
|
|
|
|
absent: number
|
|
|
|
|
age: number
|
2024-03-12 11:47:46 +07:00
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
2024-03-27 13:30:42 +07:00
|
|
|
interface GovAgeForm {
|
|
|
|
|
year: number,
|
|
|
|
|
month: number,
|
|
|
|
|
day: number
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-11 14:35:03 +07:00
|
|
|
interface MyObjectRef {
|
2024-03-12 11:47:46 +07:00
|
|
|
containDate: object | null;
|
|
|
|
|
workDate: object | null;
|
|
|
|
|
reasonSameDate: object | null;
|
|
|
|
|
[key: string]: any;
|
2024-03-11 14:35:03 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface RequestItemsHistoryObject {
|
2024-04-02 11:42:55 +07:00
|
|
|
lastUpdatedAt: Date,
|
|
|
|
|
lastUpdateFullName: string,
|
2024-03-12 11:47:46 +07:00
|
|
|
oc: string | null;
|
|
|
|
|
position: string | null;
|
|
|
|
|
positionPathSide: string | null;
|
|
|
|
|
posNo: string | null;
|
|
|
|
|
positionLine: string | null;
|
|
|
|
|
positionType: string | null;
|
|
|
|
|
positionLevel: string | null;
|
|
|
|
|
positionExecutive: string | null;
|
|
|
|
|
positionExecutiveSide: string | null;
|
|
|
|
|
dateAppoint: Date;
|
|
|
|
|
dateStart: Date;
|
|
|
|
|
retireDate: string | null;
|
|
|
|
|
govAge: string | null;
|
|
|
|
|
govAgeAbsent: string | null;
|
|
|
|
|
govAgePlus: string | null;
|
|
|
|
|
reasonSameDate: string | null;
|
|
|
|
|
createdFullName: string | null;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
}
|
|
|
|
|
export type { MyObjectRef, RequestItemsHistoryObject, FormMain };
|