2024-03-13 18:05:32 +07:00
|
|
|
interface ResponseObject {
|
|
|
|
|
id: string;
|
2024-03-19 12:02:09 +07:00
|
|
|
createdAt: string;
|
2024-03-22 10:46:22 +07:00
|
|
|
createdUserId: Date | null;
|
|
|
|
|
lastUpdatedAt: Date | null;
|
2024-03-19 12:02:09 +07:00
|
|
|
lastUpdateUserId: string;
|
|
|
|
|
createdFullName: string;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
profileId: string;
|
2024-03-13 18:05:32 +07:00
|
|
|
year: number;
|
|
|
|
|
no: string;
|
|
|
|
|
volume: string;
|
|
|
|
|
section: string;
|
|
|
|
|
page: string;
|
2024-03-22 10:46:22 +07:00
|
|
|
receiveDate: Date | null;
|
2024-03-19 12:02:09 +07:00
|
|
|
insigniaId: string;
|
|
|
|
|
insignia: ResponseInsigniaObject;
|
2024-03-22 10:46:22 +07:00
|
|
|
dateAnnounce: Date | null;
|
2024-03-19 12:02:09 +07:00
|
|
|
issue: string;
|
|
|
|
|
volumeNo: string;
|
2024-03-22 10:46:22 +07:00
|
|
|
refCommandDate: Date | null;
|
2024-03-13 18:05:32 +07:00
|
|
|
refCommandNo: string;
|
2025-01-29 09:56:04 +07:00
|
|
|
isUpload: boolean;
|
2024-03-19 12:02:09 +07:00
|
|
|
note: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ResponseInsigniaObject {
|
|
|
|
|
createdAt: Date;
|
2024-03-13 18:05:32 +07:00
|
|
|
createdFullName: string;
|
2024-03-19 12:02:09 +07:00
|
|
|
createdUserId: string;
|
|
|
|
|
id: string;
|
|
|
|
|
insigniaType: ResponseInsigniaType;
|
|
|
|
|
insigniaTypeId: string;
|
|
|
|
|
isActive: boolean;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
lastUpdateUserId: string;
|
|
|
|
|
lastUpdatedAt: Date;
|
|
|
|
|
level: null;
|
|
|
|
|
name: string;
|
|
|
|
|
note: string;
|
|
|
|
|
shortName: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ResponseInsigniaType {
|
2024-03-13 18:05:32 +07:00
|
|
|
createdAt: Date;
|
2024-03-19 12:02:09 +07:00
|
|
|
createdFullName: string;
|
|
|
|
|
createdUserId: string;
|
|
|
|
|
id: string;
|
|
|
|
|
isActive: boolean;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
lastUpdateUserId: string;
|
|
|
|
|
lastUpdatedAt: Date;
|
|
|
|
|
name: string;
|
2024-03-13 18:05:32 +07:00
|
|
|
}
|
|
|
|
|
|
2024-03-19 12:02:09 +07:00
|
|
|
export type { ResponseObject, ResponseInsigniaObject, ResponseInsigniaType };
|