38 lines
746 B
TypeScript
38 lines
746 B
TypeScript
interface RequestItemsObject {
|
|
profileId?: string;
|
|
isActive: boolean;
|
|
year: number;
|
|
no: string;
|
|
volume: string;
|
|
section: string;
|
|
page: string;
|
|
receiveDate: Date | null;
|
|
insigniaId: string;
|
|
dateAnnounce: Date | null;
|
|
issue: string;
|
|
volumeNo: string;
|
|
refCommandDate: Date | null;
|
|
refCommandNo: string;
|
|
note: string;
|
|
}
|
|
|
|
interface FormData {
|
|
id: string;
|
|
isActive: boolean;
|
|
year: number;
|
|
receiveDate: Date | null;
|
|
insigniaId: string;
|
|
insigniaType: string;
|
|
no: string;
|
|
issue: string;
|
|
volumeNo: string;
|
|
volume: string;
|
|
section: string;
|
|
page: string;
|
|
dateAnnounce: Date | null;
|
|
refCommandNo: string;
|
|
refCommandDate: Date | null;
|
|
note: string;
|
|
}
|
|
|
|
export type { RequestItemsObject, FormData };
|