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 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; } }