VehicleData.java
743 Bytes
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
package com.objecteye.pojo;
public class VehicleData {
private Integer total;
private VehiclePhotoInfo data;
public VehicleData() {
}
public VehicleData(Integer total, VehiclePhotoInfo data) {
this.total = total;
this.data = data;
}
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
public VehiclePhotoInfo getData() {
return data;
}
public void setData(VehiclePhotoInfo data) {
this.data = data;
}
@Override
public String toString() {
return "VehicleData{" +
"total=" + total +
", data=" + data +
'}';
}
}