VisualStatisticsMsg.java
5.85 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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package com.objecteye.entity;
import lombok.AllArgsConstructor;
import java.util.List;
import java.util.Map;
/**
* @Author: ljh
* @Date: 2019/10/10 9:38
* @Version 1.0
* @Message:
*/
@AllArgsConstructor
public class VisualStatisticsMsg {
private String vehicleCount; //处理过车总量
private String monitorTotalDays; //监控总天数
private int deviceCount; //卡口数
private String deployCount; //布控总量
private String alarmCount; //报警总数
private String vehicleCountInMonth; //本月过车总数
private String vehicleCountInWeek; //本周过车总数
/*private List<Map<String,Object>> violationTypeRanking;//违规类型排行
private long muckCarCount; //本日渣土车数量
private long dangerousChemicalsVehicleCount; //本日危化品车
private long vehicleCountInDay; //本日过车总数
private long violateCount; //本日违规总数
private long alarmCountInDay; //本日报警总数
private long plateAlarmCount;//车牌报警数
private long vehicleAlarmCount; //车辆报警数
private long personAlarmCount; //人员报警数*/
private Map<String, Integer> areaEquipmentCount; //点位区域分布
private List<Long> oneWeekVehicleCount; //七日过车总量
private List<long[]> oneWeekSpecialtyVehicleCount; //七日特殊品类车辆走势
private List<Map<String, Object>> vehicleCountByArea;//地图形式的车辆统计
private Map<String, Object> todayData; //今日相关数据
public VisualStatisticsMsg() {
super();
}
public String getVehicleCount() {
return vehicleCount;
}
public void setVehicleCount(String vehicleCount) {
this.vehicleCount = vehicleCount;
}
public String getMonitorTotalDays() {
return monitorTotalDays;
}
public void setMonitorTotalDays(String monitorTotalDays) {
this.monitorTotalDays = monitorTotalDays;
}
public int getDeviceCount() {
return deviceCount;
}
public void setDeviceCount(int deviceCount) {
this.deviceCount = deviceCount;
}
public String getDeployCount() {
return deployCount;
}
public void setDeployCount(String deployCount) {
this.deployCount = deployCount;
}
public String getAlarmCount() {
return alarmCount;
}
public void setAlarmCount(String alarmCount) {
this.alarmCount = alarmCount;
}
public String getVehicleCountInMonth() {
return vehicleCountInMonth;
}
public void setVehicleCountInMonth(String vehicleCountInMonth) {
this.vehicleCountInMonth = vehicleCountInMonth;
}
public String getVehicleCountInWeek() {
return vehicleCountInWeek;
}
public void setVehicleCountInWeek(String vehicleCountInWeek) {
this.vehicleCountInWeek = vehicleCountInWeek;
}
/*public long getMuckCarCount() {
return muckCarCount;
}
public void setMuckCarCount(long muckCarCount) {
this.muckCarCount = muckCarCount;
}
public long getDangerousChemicalsVehicleCount() {
return dangerousChemicalsVehicleCount;
}
public void setDangerousChemicalsVehicleCount(long dangerousChemicalsVehicleCount) {
this.dangerousChemicalsVehicleCount = dangerousChemicalsVehicleCount;
}
public long getVehicleCountInDay() {
return vehicleCountInDay;
}
public void setVehicleCountInDay(long vehicleCountInDay) {
this.vehicleCountInDay = vehicleCountInDay;
}
public long getViolateCount() {
return violateCount;
}
public void setViolateCount(long violateCount) {
this.violateCount = violateCount;
}
public long getAlarmCountInDay() {
return alarmCountInDay;
}
public void setAlarmCountInDay(long alarmCountInDay) {
this.alarmCountInDay = alarmCountInDay;
}
public long getPlateAlarmCount() {
return plateAlarmCount;
}
public void setPlateAlarmCount(long plateAlarmCount) {
this.plateAlarmCount = plateAlarmCount;
}
public long getVehicleAlarmCount() {
return vehicleAlarmCount;
}
public void setVehicleAlarmCount(long vehicleAlarmCount) {
this.vehicleAlarmCount = vehicleAlarmCount;
}
public long getPersonAlarmCount() {
return personAlarmCount;
}
public void setPersonAlarmCount(long personAlarmCount) {
this.personAlarmCount = personAlarmCount;
}*/
public Map<String, Integer> getAreaEquipmentCount() {
return areaEquipmentCount;
}
public void setAreaEquipmentCount(Map<String, Integer> areaEquipmentCount) {
this.areaEquipmentCount = areaEquipmentCount;
}
public List<Long> getOneWeekVehicleCount() {
return oneWeekVehicleCount;
}
public void setOneWeekVehicleCount(List<Long> oneWeekVehicleCount) {
this.oneWeekVehicleCount = oneWeekVehicleCount;
}
public List<long[]> getOneWeekSpecialtyVehicleCount() {
return oneWeekSpecialtyVehicleCount;
}
public void setOneWeekSpecialtyVehicleCount(List<long[]> oneWeekSpecialtyVehicleCount) {
this.oneWeekSpecialtyVehicleCount = oneWeekSpecialtyVehicleCount;
}
public List<Map<String, Object>> getVehicleCountByArea() {
return vehicleCountByArea;
}
public void setVehicleCountByArea(List<Map<String, Object>> vehicleCountByArea) {
this.vehicleCountByArea = vehicleCountByArea;
}
/*public List<Map<String, Object>> getViolationTypeRanking() {
return violationTypeRanking;
}
public void setViolationTypeRanking(List<Map<String, Object>> violationTypeRanking) {
this.violationTypeRanking = violationTypeRanking;
}*/
public Map<String, Object> getTodayData() {
return todayData;
}
public void setTodayData(Map<String, Object> todayData) {
this.todayData = todayData;
}
}