22 lines
434 B
TypeScript
22 lines
434 B
TypeScript
|
|
//ข้อมูล
|
||
|
|
interface ResponseObject {
|
||
|
|
id: number;
|
||
|
|
fullname: String;
|
||
|
|
avatar: String;
|
||
|
|
citizenId: String;
|
||
|
|
oc: String;
|
||
|
|
position: String;
|
||
|
|
posNo: String;
|
||
|
|
positionLine: String;
|
||
|
|
positionType: String;
|
||
|
|
govAge: number;
|
||
|
|
positionLevel: String;
|
||
|
|
positionExecutive: String;
|
||
|
|
dateAppoint: Date | null;
|
||
|
|
dateStart: Date | null;
|
||
|
|
createdAt: Date | null;
|
||
|
|
salaryDate: Date | null;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponseObject };
|