2024-09-12 17:11:00 +07:00
|
|
|
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 };
|