format Date เรื่องร้องเรียนและรายการออกคำสั่งลงโทษทางวินัย

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-26 13:47:42 +07:00
parent 4174a839f5
commit a5faf436a4
6 changed files with 54 additions and 27 deletions

View file

@ -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
}