ui เปลี่ยนแปลงรอบการปฏิบัติของผู้ใช้งาน

This commit is contained in:
setthawutttty 2023-11-02 17:32:57 +07:00
parent d2a50125a5
commit f44399919c
7 changed files with 739 additions and 2 deletions

View file

@ -0,0 +1,38 @@
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
}