CountMsg.java
1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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;
}
}