ui เปลี่ยนแปลงรอบการปฏิบัติของผู้ใช้งาน
This commit is contained in:
parent
d2a50125a5
commit
f44399919c
7 changed files with 739 additions and 2 deletions
21
src/modules/09_leave/interface/request/changeRound.ts
Normal file
21
src/modules/09_leave/interface/request/changeRound.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
interface dataPost {
|
||||
cardId: string
|
||||
firstName: string
|
||||
lastName: string
|
||||
}
|
||||
interface changeRoundEdit {
|
||||
round: string
|
||||
date: string
|
||||
reson: string
|
||||
effectiveDate: Date | null
|
||||
}
|
||||
interface MyObjectRoundChangeRef {
|
||||
round: object | null
|
||||
effectiveDate: object | null
|
||||
[key: string]: any;
|
||||
}
|
||||
export type {
|
||||
dataPost,
|
||||
changeRoundEdit,
|
||||
MyObjectRoundChangeRef
|
||||
}
|
||||
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