ui เปลี่ยนแปลงรอบการปฏิบัติของผู้ใช้งาน
This commit is contained in:
parent
d2a50125a5
commit
f44399919c
7 changed files with 739 additions and 2 deletions
38
src/modules/09_leave/interface/response/changeRound.ts
Normal file
38
src/modules/09_leave/interface/response/changeRound.ts
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue