ทะเบียนประวัติ ปรับ table

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-14 14:07:55 +07:00
parent fb5017b0e2
commit 0a6feb0c9c
13 changed files with 143 additions and 116 deletions

View file

@ -8,12 +8,13 @@ interface RequestItemsObject {
id: string;
issuer: string;
detail: string;
issueDate: number;
issueDate: number | null;
issueDate2: Date;
refCommandNo: string;
refCommandDate: Date | null | string;
createdFullName: string;
createdAt: Date;
isDate: string;
}
//columns
@ -29,4 +30,4 @@ interface Columns {
};
}
export type { RequestItemsObject, Columns, DataProps };
export type { RequestItemsObject, Columns };

View file

@ -9,6 +9,7 @@ interface ResponseObject {
refCommandDate: Date | null;
createdFullName: string;
createdAt: Date;
isDate: string;
}
export type { ResponseObject };