Subversion Repository Public Repository

TransPort_Tracking

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.trastrack.domain;

import java.util.Date;

/**
 *
 * @author sumitHome
 */
public class VehicleMaintenance {
    
    private Long id;
    private Long maintenance_scroll_id;
    private Date maintenance_date;
    private Long vehicle_id;
    private Long maintenance_id;
    private Date next_job_date;
    private Date remind_me_on;
    private String note;
    private Double distance;
    private Task task;
    private Vehicle vehicle;

    public Double getMaintenace_mtr_reading() {
        return maintenace_mtr_reading;
    }

    public void setMaintenace_mtr_reading(Double maintenace_mtr_reading) {
        this.maintenace_mtr_reading = maintenace_mtr_reading;
    }
    private Long maintenance_status;
    private Double maintenace_mtr_reading;

    public void setDistance(Double distance) {
        this.distance = distance;
    }
   
    public void setId(Long id) {
        this.id = id;
    }

    public void setMaintenance_scroll_id(Long maintenance_scroll_id) {
        this.maintenance_scroll_id = maintenance_scroll_id;
    }

    public void setMaintenance_date(Date maintenance_date) {
        this.maintenance_date = maintenance_date;
    }

    public Double getDistance() {
        return distance;
    }

    public void setVehicle_id(Long vehicle_id) {
        this.vehicle_id = vehicle_id;
    }

    public void setMaintenance_id(Long maintenance_id) {
        this.maintenance_id = maintenance_id;
    }

    public void setNext_job_date(Date next_job_date) {
        this.next_job_date = next_job_date;
    }

    /*public void setRemind_me_before(Integer remind_me_before) {
        this.remind_me_before = remind_me_before;
    }*/

    public void setRemind_me_on(Date remind_me_on) {
        this.remind_me_on = remind_me_on;
    }

    public void setNote(String note) {
        this.note = note;
    }

    /*public void setNote2(String note2) {
        this.note2 = note2;
    }*/

    public void setTask(Task task) {
        this.task = task;
    }

    public void setVehicle(Vehicle vehicle) {
        this.vehicle = vehicle;
    }
    
    public void setMaintenance_status(Long maintenance_status) {
        this.maintenance_status = maintenance_status;
    }
    
    public Long getId() {
        return id;
    }

    public Long getMaintenance_scroll_id() {
        return maintenance_scroll_id;
    }

    public Date getMaintenance_date() {
        return maintenance_date;
    }

    public Long getVehicle_id() {
        return vehicle_id;
    }

    public Long getMaintenance_id() {
        return maintenance_id;
    }

    public Date getNext_job_date() {
        return next_job_date;
    }

    /*public Integer getRemind_me_before() {
        return remind_me_before;
    }*/

    public Date getRemind_me_on() {
        return remind_me_on;
    }
    
    public Long getMaintenance_status() {
        return maintenance_status;
    }

    public String getNote() {
        return note;
    }

    /*public String getNote2() {
        return note2;
    }*/

    public Task getTask() {
        return task;
    }

    public Vehicle getVehicle() {
        return vehicle;
    }
     
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/trastrack/domain/VehicleMaintenance.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Sat 28 Jul, 2018 05:29:14 +0000