hrms-mgt/src/modules/04_registry/interface/response/Government.ts

22 lines
510 B
TypeScript
Raw Normal View History

2023-06-01 12:54:58 +07:00
//ข้อมูล
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 };