This commit is contained in:
STW_TTTY\stwtt 2024-09-23 17:00:32 +07:00
parent daa2054b56
commit 3fc9258d99
5 changed files with 222 additions and 60 deletions

View file

@ -12,13 +12,18 @@ interface FormCommand {
}
interface FormDataDetail {
id: string;
status: string;
commandNo: string;
commandYear: number | null;
// commandName: string;
detailHeader: string;
detailBody: string;
detailFooter: string;
issue: string | null;
commandAffectDate: Date | null;
commandExcecuteDate: Date | null;
commandSysId: string;
commandTypeName: string;
}
export type { FormQuery, FormCommand, FormDataDetail };