เพิ่มลงเวลากรณีพิเศษ (USER) #32
This commit is contained in:
parent
2dea65c4df
commit
0ec7e83d0d
8 changed files with 196 additions and 80 deletions
|
|
@ -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 }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue