26 lines
537 B
TypeScript
26 lines
537 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
createdAt: Date;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
dateOrder: Date;
|
|
dateStart: Date | null;
|
|
dateEnd: Date | null;
|
|
department: string;
|
|
duration: string;
|
|
id: string;
|
|
isActive: boolean;
|
|
isDate: boolean;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdateAt: Date;
|
|
name: string;
|
|
numberOrder: string;
|
|
place: string;
|
|
profileId: string;
|
|
topic: string;
|
|
developmentId?: string;
|
|
yearly: number;
|
|
}
|
|
|
|
export type { ResponseObject };
|