Blame view

src/main/java/com/objecteye/entity/VisualStatisticsMsg.java 3.99 KB
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  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 {
40c853a1   Liu Haoyu   去掉MySQL相关内容, 去掉my...
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
      /**
       * 处理过车总量
       */
      private String vehicleCount;
      /**
       * 监控总天数
       */
      private String monitorTotalDays;
      /**
       * 卡口数
       */
      private int deviceCount;
      /**
       * 布控总量
       */
      private String deployCount;
      /**
       * 报警总数
       */
      private String alarmCount;
      /**
       * 本月过车总数
       */
      private String vehicleCountInMonth;
      /**
       * 本周过车总数
       */
      private String vehicleCountInWeek;
  
      /**
       * 点位区域分布
       */
      private Map<String, Integer> areaEquipmentCount;
      /**
       * 七日过车总量
       */
      private List<Long> oneWeekVehicleCount;
      /**
       * 七日特殊品类车辆走势
       */
      private List<long[]> oneWeekSpecialtyVehicleCount;
      /**
       * 地图形式的车辆统计
       */
      private List<Map<String, Object>> vehicleCountByArea;
      /**
       * 今日相关数据
       */
      private Map<String, Object> todayData;
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
  
      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;
      }
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
  
      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;
      }
  }