package com.objecteye.entity; import java.io.Serializable; /** * @Author: ljh * @Date: 2019/9/19 15:26 * @Version 1.0 * @Message: */ public class CountMsg implements Serializable { private static final long serialVersionUID = 7718751591479620478L; /** * 卡口经过车辆数 */ private String vehicleCount; /** * 一天的车流量 */ private String vehicleCountInHours; /** * 违规车辆数 */ private String violateCount; public CountMsg() { super(); } public String getVehicleCount() { return vehicleCount; } public void setVehicleCount(String vehicleCount) { this.vehicleCount = vehicleCount; } public String getVehicleCountInHours() { return vehicleCountInHours; } public void setVehicleCountInHours(String vehicleCountInHours) { this.vehicleCountInHours = vehicleCountInHours; } public String getViolateCount() { return violateCount; } public void setViolateCount(String violateCount) { this.violateCount = violateCount; } public CountMsg(String vehicleCount, String vehicleCountInHours, String violateCount) { this.vehicleCount = vehicleCount; this.vehicleCountInHours = vehicleCountInHours; this.violateCount = violateCount; } }