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

30 lines
577 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 {
2024-09-23 17:00:32 +07:00
id: string;
status: string;
commandNo: string;
commandYear: number | null;
detailHeader: string;
detailBody: string;
detailFooter: string;
issue: string | null;
2024-09-23 17:00:32 +07:00
commandAffectDate: Date | null;
commandExcecuteDate: Date | null;
commandSysId: string;
commandTypeName: string;
}
export type { FormQuery, FormCommand, FormDataDetail };