Blame view

src/main/java/com/objecteye/entity/CountMsg.java 1.2 KB
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
  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;
      }
  }