38 lines
762 B
TypeScript
38 lines
762 B
TypeScript
|
|
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
|
||
|
|
}
|