CaputureMsg.java 1.65 KB
package com.objecteye.entity;

import java.io.Serializable;

/**
 * @Author: ljh
 * @Date: 2019/9/18 11:53
 * @Version 1.0
 * @Message:
 */
public class CaputureMsg implements Serializable {
    private int vehicleCount;
    private int vehicleCountInHours;
    private int violateCount;
    private String imageUrl;

    public CaputureMsg() {
        super();
    }

    public int getVehicleCount() {
        return vehicleCount;
    }

    public void setVehicleCount(int vehicleCount) {
        this.vehicleCount = vehicleCount;
    }

    public int getVehicleCountInHours() {
        return vehicleCountInHours;
    }

    public void setVehicleCountInHours(int vehicleCountInHours) {
        this.vehicleCountInHours = vehicleCountInHours;
    }

    public int getViolateCount() {
        return violateCount;
    }

    public void setViolateCount(int violateCount) {
        this.violateCount = violateCount;
    }

    public String getImageUrl() {
        return imageUrl;
    }

    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }

    public CaputureMsg(int vehicleCount, int vehicleCountInHours, int violateCount, String imageUrl) {
        this.vehicleCount = vehicleCount;
        this.vehicleCountInHours = vehicleCountInHours;
        this.violateCount = violateCount;
        this.imageUrl = imageUrl;
    }

    @Override
    public String toString() {
        return "CaputureMsg{" +
                "vehicleCount=" + vehicleCount +
                ", vehicleCountInHours=" + vehicleCountInHours +
                ", violateCount=" + violateCount +
                ", imageUrl='" + imageUrl + '\'' +
                '}';
    }
}