interface FormQuery { page: number; pageSize: number; year: number; keyword: string; } interface FormCommand { commandYear: number; commandNo: string; commandTypeId?: string; } interface FormDataDetail { commandNo: string; commandYear: number | null; // commandName: string; detailHeader: string; detailBody: string; detailFooter: string; issue: string | null; } export type { FormQuery, FormCommand, FormDataDetail };