ui command tab 2/3/5
This commit is contained in:
parent
fc9f22ba2b
commit
df4cb61671
6 changed files with 396 additions and 62 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue