ปรับ ฝึกอบรม/ดูงาน

This commit is contained in:
setthawutttty 2024-02-12 14:06:43 +07:00
parent 5c431fd4d7
commit 204a0460d1
3 changed files with 282 additions and 114 deletions

View file

@ -10,12 +10,15 @@ interface RequestItemsObject {
topic: string;
yearly: number;
place: string;
isDate: string | null;
duration: string;
department: string;
numberOrder: string;
dateOrder: Date;
startDate: Date;
endDate: Date;
startDate: number;
endDate: number;
startDate2: Date;
endDate2: Date;
createdFullName: string;
createdAt: Date;
}

View file

@ -9,8 +9,11 @@ interface ResponseObject {
department: string;
numberOrder: string;
dateOrder: Date;
startDate: Date;
endDate: Date;
isDate: string | null;
startDate: number;
endDate: number;
startDate2: Date;
endDate2: Date;
createdFullName: string;
createdAt: Date;
}