29 lines
797 B
TypeScript
29 lines
797 B
TypeScript
|
|
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 };
|