aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/reports/model/SummaryReport.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/reports/model/SummaryReport.java')
-rw-r--r--src/org/traccar/reports/model/SummaryReport.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/org/traccar/reports/model/SummaryReport.java b/src/org/traccar/reports/model/SummaryReport.java
index e42727eaf..01006558f 100644
--- a/src/org/traccar/reports/model/SummaryReport.java
+++ b/src/org/traccar/reports/model/SummaryReport.java
@@ -47,4 +47,15 @@ public class SummaryReport {
this.maxSpeed = maxSpeed;
}
}
+
+ private long motorHours;
+ public long getMotorHours() {
+ return motorHours;
+ }
+ public void setMotorHours(long motorHours) {
+ this.motorHours = motorHours;
+ }
+ public void addMotorHours(long motorHours) {
+ this.motorHours += motorHours;
+ }
}