TrafficFlowBaseRequestVo.java
1.72 KB
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
package com.viontech.fanxing.query.model;
public class TrafficFlowBaseRequestVo {
private String[] location_codes;
private String[] vehicle_type;
private String[] device_codes;
private String event_date;
private String start_time;
private String end_time;
private String exportType;
private String start_event_date;
public String[] getLocation_codes() {
return location_codes;
}
public void setLocation_codes(String[] location_codes) {
this.location_codes = location_codes;
}
public String[] getVehicle_type() {
return vehicle_type;
}
public void setVehicle_type(String[] vehicle_type) {
this.vehicle_type = vehicle_type;
}
public String[] getDevice_codes() {
return device_codes;
}
public void setDevice_codes(String[] device_codes) {
this.device_codes = device_codes;
}
public String getEvent_date() {
return event_date;
}
public void setEvent_date(String event_date) {
this.event_date = event_date;
}
public String getStart_time() {
return start_time;
}
public void setStart_time(String start_time) {
this.start_time = start_time;
}
public String getEnd_time() {
return end_time;
}
public void setEnd_time(String end_time) {
this.end_time = end_time;
}
public String getExportType() {
return exportType;
}
public void setExportType(String exportType) {
this.exportType = exportType;
}
public String getStart_event_date() {
return start_event_date;
}
public void setStart_event_date(String start_event_date) {
this.start_event_date = start_event_date;
}
}