git init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
export class CreateRepairOrderDto {
|
||||
number: string;
|
||||
equipmentId: string;
|
||||
repairKind: string;
|
||||
status?: string;
|
||||
plannedAt: string;
|
||||
startedAt?: string;
|
||||
completedAt?: string;
|
||||
contractor?: string;
|
||||
engineHoursAtRepair?: string;
|
||||
description?: string;
|
||||
notes?: string;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
export class UpdateRepairOrderDto {
|
||||
number?: string;
|
||||
equipmentId?: string;
|
||||
repairKind?: string;
|
||||
status?: string;
|
||||
plannedAt?: string;
|
||||
startedAt?: string;
|
||||
completedAt?: string;
|
||||
contractor?: string;
|
||||
engineHoursAtRepair?: string;
|
||||
description?: string;
|
||||
notes?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user