ui command tab 2/3/5

This commit is contained in:
STW_TTTY\stwtt 2024-09-24 10:50:42 +07:00
parent fc9f22ba2b
commit df4cb61671
6 changed files with 396 additions and 62 deletions

View file

@ -12,8 +12,8 @@ interface FormCommand {
}
interface FormDataDetail {
id: string;
status: string;
id?: string;
status?: string;
commandNo: string;
commandYear: number | null;
detailHeader: string;
@ -22,8 +22,17 @@ interface FormDataDetail {
issue: string | null;
commandAffectDate: Date | null;
commandExcecuteDate: Date | null;
commandSysId: string;
commandTypeName: string;
commandSysId?: string;
commandTypeName?: string;
}
export type { FormQuery, FormCommand, FormDataDetail };
interface ListCommandSalaryType {
id: string;
createdAt: Date|null;
lastUpdatedAt: Date|null;
createdFullName: string;
lastUpdateFullName: string;
name: string;
commandSysId: string;
}
export type { FormQuery, FormCommand, FormDataDetail,ListCommandSalaryType };