add additional fields
This commit is contained in:
parent
43f46c0fad
commit
b83b22d806
16 changed files with 97 additions and 3 deletions
|
@ -6,6 +6,8 @@ export interface EquipmentViewModel {
|
|||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
commissioned: Date;
|
||||
decommissioned?: Date;
|
||||
equipmentTypeId: string;
|
||||
equipmentType: EquipmentTypeViewModel;
|
||||
inspections: Array<InspectionViewModel>;
|
||||
|
@ -15,6 +17,7 @@ export interface CreateEquipmentViewModel {
|
|||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
commissioned: Date;
|
||||
equipmentTypeId: string;
|
||||
}
|
||||
|
||||
|
@ -23,4 +26,6 @@ export interface UpdateEquipmentViewModel {
|
|||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
commissioned: Date;
|
||||
decommissioned?: Date;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue