refector code
This commit is contained in:
parent
067ac5f173
commit
23d6801f80
9 changed files with 338 additions and 217 deletions
|
|
@ -26,10 +26,24 @@ interface LocationObject {
|
|||
}
|
||||
|
||||
interface Pagination {
|
||||
sortBy: string
|
||||
sortBy: string | null
|
||||
descending: boolean
|
||||
page: number
|
||||
rowsPerPage: number
|
||||
rowsPerPage: number | undefined
|
||||
}
|
||||
interface DataCheckIn {
|
||||
checkInDate: string
|
||||
checkInDateTime: string
|
||||
checkInId: string
|
||||
checkInLocation: string
|
||||
checkInStatus: string
|
||||
checkInTime: string
|
||||
checkOutLocation: string
|
||||
checkOutStatus: string
|
||||
checkOutTime: string
|
||||
editReason: string
|
||||
editStatus: string
|
||||
isEdit: boolean
|
||||
}
|
||||
|
||||
export type {
|
||||
|
|
@ -39,4 +53,5 @@ export type {
|
|||
DataDateMonthObject,
|
||||
LocationObject,
|
||||
Pagination,
|
||||
DataCheckIn,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue