VisualStatisticsMsg.java 5.85 KB
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;
    }
}