hrms-mgt/src/modules/09_leave/interface/response/changeRound.ts

38 lines
762 B
TypeScript
Raw Normal View History

interface changeShow {
cardId: string
prefix: string
firstName: string
lastName: string
fullName: string
roundStart: string
roundEnd: string
currentRound: string
effectiveDate: string | null
}
interface dataRowChangeRound {
cardId: string
prefix: string
firstName: string
lastName: string
roundStart: string
roundEnd: string
effectiveDate: Date
}
interface dataRowChangeRoundHistory {
id: string
roundStart: string
roundEnd: string
effectiveDate: Date
reson: string | null
}
interface historyShow {
time: string
effectiveDate: string | null
reson: string | null
}
export type {
changeShow,
dataRowChangeRound,
dataRowChangeRoundHistory,
historyShow
}