ข้อมูลราชการ(ประวัติราชการ)

This commit is contained in:
setthawutttty 2024-03-11 14:35:03 +07:00
parent d09f09cada
commit 544b8c1998
2 changed files with 794 additions and 2 deletions

View file

@ -0,0 +1,28 @@
interface MyObjectRef {
containDate: object | null;
workDate: object | null;
reasonSameDate: object | null;
[key: string]: any;
}
interface RequestItemsHistoryObject {
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 };