ทะเบียนประวัติ: ประกาศเกียรติคุณ

This commit is contained in:
puriphatt 2024-03-19 15:15:02 +07:00
parent 9dacfc6835
commit 023bb8edae
4 changed files with 270 additions and 218 deletions

View file

@ -1,20 +1,24 @@
interface gDataProps {
row: RequestItemsObject;
rowIndex: number;
interface RequestItemsObject {
profileId: string;
isActive: boolean;
detail: string;
issueDate: Date | null;
issuer: string;
refCommandDate: Date | null;
refCommandNo: string;
isDate: boolean;
}
//ข้อมูล
interface RequestItemsObject {
interface FormData {
id: string;
isActive: boolean;
isDate: string | null;
issuer: string;
detail: string;
issueDate: number | null;
issueDate2: Date;
issueDate: Date | null;
issueDateYear: number;
refCommandNo: string;
refCommandDate: Date | null | string;
createdFullName: string;
createdAt: Date;
isDate: string;
refCommandDate: Date | null;
}
//columns
@ -30,4 +34,4 @@ interface Columns {
};
}
export type { RequestItemsObject, Columns };
export type { RequestItemsObject, FormData, Columns };

View file

@ -1,15 +1,19 @@
//ข้อมูล
interface ResponseObject {
id: string;
issuer: string;
detail: string;
issueDate: number;
issueDate2: Date;
refCommandNo: string;
refCommandDate: Date | null;
createdFullName: string;
createdAt: Date;
isDate: string;
createdFullName: string;
createdUserId: string;
detail: string;
id: string;
isActive: boolean;
isDate: boolean;
issueDate: Date;
issuer: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: Date;
profileId: string;
refCommandDate: Date;
refCommandNo: string;
}
export type { ResponseObject };