hrms-mgt/src/modules/18_command/interface/request/Main.ts

25 lines
450 B
TypeScript
Raw Normal View History

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