vehicle update and code
This commit is contained in:
parent
8766bbce08
commit
0ea9601ea3
8 changed files with 135 additions and 112 deletions
|
@ -3,7 +3,7 @@ import type { InspectionViewMoel } from "../inspectionPlan/inspectionPlan.models
|
|||
|
||||
export interface EquipmentViewModel {
|
||||
id: string;
|
||||
code: string;
|
||||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
equipmentTypeId: string;
|
||||
|
@ -12,7 +12,7 @@ export interface EquipmentViewModel {
|
|||
}
|
||||
|
||||
export interface CreateEquipmentViewModel {
|
||||
code: string;
|
||||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
equipmentTypeId: string;
|
||||
|
@ -20,7 +20,7 @@ export interface CreateEquipmentViewModel {
|
|||
|
||||
export interface UpdateEquipmentViewModel {
|
||||
id: string;
|
||||
code: string;
|
||||
code?: string;
|
||||
name: string;
|
||||
location: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue