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

22 lines
434 B
TypeScript
Raw Normal View History

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