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

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,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 };