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 Map areaEquipmentCount; /** * 七日过车总量 */ private List oneWeekVehicleCount; /** * 七日特殊品类车辆走势 */ private List oneWeekSpecialtyVehicleCount; /** * 地图形式的车辆统计 */ private List> vehicleCountByArea; /** * 今日相关数据 */ private Map 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 Map getAreaEquipmentCount() { return areaEquipmentCount; } public void setAreaEquipmentCount(Map areaEquipmentCount) { this.areaEquipmentCount = areaEquipmentCount; } public List getOneWeekVehicleCount() { return oneWeekVehicleCount; } public void setOneWeekVehicleCount(List oneWeekVehicleCount) { this.oneWeekVehicleCount = oneWeekVehicleCount; } public List getOneWeekSpecialtyVehicleCount() { return oneWeekSpecialtyVehicleCount; } public void setOneWeekSpecialtyVehicleCount(List oneWeekSpecialtyVehicleCount) { this.oneWeekSpecialtyVehicleCount = oneWeekSpecialtyVehicleCount; } public List> getVehicleCountByArea() { return vehicleCountByArea; } public void setVehicleCountByArea(List> vehicleCountByArea) { this.vehicleCountByArea = vehicleCountByArea; } /*public List> getViolationTypeRanking() { return violationTypeRanking; } public void setViolationTypeRanking(List> violationTypeRanking) { this.violationTypeRanking = violationTypeRanking; }*/ public Map getTodayData() { return todayData; } public void setTodayData(Map todayData) { this.todayData = todayData; } }