2023-06-01 12:54:58 +07:00
|
|
|
//ข้อมูล
|
|
|
|
|
interface ResponseObject {
|
|
|
|
|
oc: string | null;
|
2023-06-19 15:50:50 +07:00
|
|
|
positionExecutive: string | null;
|
|
|
|
|
positionExecutiveSide: string | null;
|
2023-06-01 12:54:58 +07:00
|
|
|
dateAppoint: Date | string;
|
|
|
|
|
dateStart: Date | string;
|
|
|
|
|
govAge: string | null;
|
|
|
|
|
govAgeAbsent: number | null;
|
|
|
|
|
govAgePlus: number | null;
|
2023-06-19 15:50:50 +07:00
|
|
|
positionLevel: string | null;
|
2023-06-01 12:54:58 +07:00
|
|
|
posNo: string | null;
|
|
|
|
|
position: string | null;
|
2023-06-19 15:50:50 +07:00
|
|
|
positionPathSide: string | null;
|
2023-06-01 12:54:58 +07:00
|
|
|
retireDate: string | null;
|
2023-06-19 15:50:50 +07:00
|
|
|
positionType: string | null;
|
|
|
|
|
positionLine: string | null;
|
2023-06-01 12:54:58 +07:00
|
|
|
createdFullName: string | null;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
reasonSameDate: string | null;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-09 15:49:53 +07:00
|
|
|
interface RowHistory {
|
|
|
|
|
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: string | null;
|
|
|
|
|
dateStart: string | null;
|
|
|
|
|
retireDate: string | null;
|
|
|
|
|
govAge: string | null;
|
|
|
|
|
govAgeAbsent: string | null;
|
|
|
|
|
govAgePlus: string | null;
|
|
|
|
|
reasonSameDate: string | null;
|
|
|
|
|
createdFullName: string | null;
|
|
|
|
|
createdAt: string | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { ResponseObject, RowHistory };
|