UI รอบการลงเวลา

This commit is contained in:
setthawutttty 2023-10-26 16:42:47 +07:00
parent 49bbf92b4f
commit 748b8e7aa7
7 changed files with 586 additions and 4 deletions

View file

@ -0,0 +1,21 @@
interface workingTimeDataRowType {
morning: string
morningEnd: string
afternoon: string
afternoonEnd: string
reason: string
status: number
}
interface formData {
morning:string
morningEnd:string
afternoon:string
afternoonEnd:string
reason:string
status:boolean
}
export type {
workingTimeDataRowType,
formData
}