เพิ่มลงเวลากรณีพิเศษ (USER) #32

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-24 16:39:55 +07:00
parent 2dea65c4df
commit 0ec7e83d0d
8 changed files with 196 additions and 80 deletions

View file

@ -6,11 +6,31 @@ interface FormRef {
interface FormData {
checkInId: string
checkInDate: string | null
checkInDate: Date | null
checkInDateTime: Date
checkInTime: string
checkOutTime: string
checkInStatus: string
checkOutStatus: string
checkInLocation: string
checkOutLocation: string
}
export type { FormRef, FormData }
interface Datalist {
checkInId: string
checkInDate: string | null
checkInDateTime: Date | null
checkInTime: string
checkOutTime: string
checkInStatus: string
checkOutStatus: string
checkInLocation: string
checkOutLocation: string
}
interface FormTimeStemp {
checkDate: Date | null
checkInEdit: boolean
checkOutEdit: boolean
description: string
}
export type { FormRef, FormData, Datalist, FormTimeStemp }