format Date เรื่องร้องเรียนและรายการออกคำสั่งลงโทษทางวินัย
This commit is contained in:
parent
4174a839f5
commit
a5faf436a4
6 changed files with 54 additions and 27 deletions
|
|
@ -1,15 +1,25 @@
|
|||
interface DataListRow {
|
||||
subject: string
|
||||
detail: string
|
||||
complainant: string
|
||||
offenseDescription: string
|
||||
creationDate: string | null
|
||||
considerationLevel: string
|
||||
considerationDeadlineDate: string | null
|
||||
}
|
||||
interface DataList {
|
||||
subject: string
|
||||
detail: string
|
||||
complainant: string
|
||||
offenseDescription: string
|
||||
creationDate: string
|
||||
creationDate: Date
|
||||
considerationLevel: string
|
||||
considerationDeadlineDate: string
|
||||
considerationDeadlineDate: Date
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type {
|
||||
DataList
|
||||
DataList,
|
||||
DataListRow
|
||||
}
|
||||
|
|
@ -1,15 +1,25 @@
|
|||
interface DataList {
|
||||
subject: string
|
||||
ordernumber: string
|
||||
dateOrder: string
|
||||
dateOrder: string | null;
|
||||
orderby: string
|
||||
signer: string
|
||||
statusorder: string
|
||||
|
||||
}
|
||||
|
||||
interface DataListRes {
|
||||
subject: string
|
||||
ordernumber: string
|
||||
dateOrder: Date
|
||||
orderby: string
|
||||
signer: string
|
||||
statusorder: string
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type {
|
||||
DataList
|
||||
DataList,
|
||||
DataListRes
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue