แก้หน้าเพิ่มเรื่องร้องเรียน
This commit is contained in:
parent
01cbfe6245
commit
b49cdaf913
5 changed files with 243 additions and 42 deletions
|
|
@ -32,7 +32,19 @@ interface MyObjectComplaintsRef {
|
|||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface DataAddRequest {
|
||||
id:string
|
||||
cardId:string
|
||||
prefix:string
|
||||
firstName:string
|
||||
lastName:string
|
||||
position:string
|
||||
level:string
|
||||
degree:string
|
||||
oc:string
|
||||
}
|
||||
export type {
|
||||
FormData,
|
||||
MyObjectComplaintsRef
|
||||
MyObjectComplaintsRef,
|
||||
DataAddRequest
|
||||
}
|
||||
|
|
@ -7,6 +7,26 @@ interface DataListRow {
|
|||
considerationLevel: string
|
||||
considerationDeadlineDate: string | null
|
||||
}
|
||||
interface DataAdd {
|
||||
id:string
|
||||
cardId:string
|
||||
fullName:string
|
||||
position:string
|
||||
level:string
|
||||
degree:string
|
||||
oc:string
|
||||
}
|
||||
interface DataAddResponse {
|
||||
id:string
|
||||
cardId:string
|
||||
prefix:string
|
||||
firstName:string
|
||||
lastName:string
|
||||
position:string
|
||||
level:string
|
||||
degree:string
|
||||
oc:string
|
||||
}
|
||||
interface DataList {
|
||||
id:string
|
||||
subject: string
|
||||
|
|
@ -22,5 +42,7 @@ interface DataList {
|
|||
|
||||
export type {
|
||||
DataList,
|
||||
DataListRow
|
||||
DataListRow,
|
||||
DataAdd,
|
||||
DataAddResponse
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue