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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.trastrack.domain;

import java.util.Date;

/**
 *
 * @author Girija Sahu
 */
public class OilChange {
       private Long id;
       private Date date;
       private Long vehicleId;
       private String partyId;
       private Double meterReading;
       private double oilQuantity;
       private Double literPrice;
       private Double totalPrice;        
       private Vehicle vehicle;
       private Party party;
       private String clientId;
       private ClientUser client;
       private Double milagePerLiter;
       private Long recievePersonId;
       private Vehicle vmaster;
       private String oilEntryId;

    public Double getMilagePerLiter() {
        return milagePerLiter;
    }

    public void setMilagePerLiter(Double milagePerLiter) {
        this.milagePerLiter = milagePerLiter;
    }

       
       
    public String getOilEntryId() {
        return oilEntryId;
    }

    public void setOilEntryId(String oilEntryId) {
        this.oilEntryId = oilEntryId;
    }
       
       
       

    public Vehicle getVmaster() {
        return vmaster;
    }

    public void setVmaster(Vehicle vmaster) {
        this.vmaster = vmaster;
    }
       
       
       

    public Long getRecievePersonId() {
        return recievePersonId;
    }

    public void setRecievePersonId(Long recievePersonId) {
        this.recievePersonId = recievePersonId;
    }
   
    public String getClientId() {
        return clientId;
    }

    public void setClientId(String clientId) {
        this.clientId = clientId;
    }
       
       
       
    public Double getLiterPrice() {
        return literPrice;
    }

    public void setLiterPrice(Double literPrice) {
        this.literPrice = literPrice;
    }

    public Double getTotalPrice() {
        return totalPrice;
    }

    public void setTotalPrice(Double totalPrice) {
        this.totalPrice = totalPrice;
    }
     

    public Long getId() {
        return id;
    }

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

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

  
    public Long getVehicleId() {
        return vehicleId;
    }

    public void setVehicleId(Long vehicleId) {
        this.vehicleId = vehicleId;
    }

    public String getPartyId() {
        return partyId;
    }

    public void setPartyId(String partyId) {
        this.partyId = partyId;
    }

    public Double getMeterReading() {
        return meterReading;
    }

    public void setMeterReading(Double meterReading) {
        this.meterReading = meterReading;
    }

    public double getOilQuantity() {
        return oilQuantity;
    }

    public void setOilQuantity(double oilQuantity) {
        this.oilQuantity = oilQuantity;
    }

    public Vehicle getVehicle() {
        return vehicle;
    }

    public void setVehicle(Vehicle vehicle) {
        this.vehicle = vehicle;
    }

    public Party getParty() {
        return party;
    }

    public void setParty(Party party) {
        this.party = party;
    }

    public ClientUser getClient() {
        return client;
    }

    public void setClient(ClientUser client) {
        this.client = client;
    }
       
       
       
    
}

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

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