เพิ่ม ui pop up อนุมัติคำขอ

This commit is contained in:
AnandaTon 2023-11-06 15:08:36 +07:00
parent e0b3f385a9
commit 4ab7c4abb2
4 changed files with 498 additions and 59 deletions

View file

@ -7,4 +7,18 @@ interface DataRows {
timeAfternoon: string;
status: string;
}
export type { DataRows };
interface dataRowRound {
startTimeMorning: string;
endTimeMorning: string;
startTimeAfternoon: string;
endTimeAfternoon: string;
note: string;
}
interface MyObjectRoundRef {
startTimeMorning: object | null;
endTimeMorning: object | null;
startTimeAfternoon: object | null;
endTimeAfternoon: object | null;
[key: string]: any;
}
export type { DataRows, dataRowRound, MyObjectRoundRef };