22 lines
510 B
TypeScript
22 lines
510 B
TypeScript
|
|
//ข้อมูล
|
||
|
|
interface ResponseObject {
|
||
|
|
oc: string | null;
|
||
|
|
business: string | null;
|
||
|
|
dateAppoint: Date | string;
|
||
|
|
dateStart: Date | string;
|
||
|
|
govAge: string | null;
|
||
|
|
govAgeAbsent: number | null;
|
||
|
|
govAgePlus: number | null;
|
||
|
|
level: string | null;
|
||
|
|
posNo: string | null;
|
||
|
|
position: string | null;
|
||
|
|
retireDate: string | null;
|
||
|
|
type: string | null;
|
||
|
|
work: string | null;
|
||
|
|
createdFullName: string | null;
|
||
|
|
createdAt: Date;
|
||
|
|
reasonSameDate: string | null;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponseObject };
|