Blame view

src/main/java/com/objecteye/pojo/RabbitMQInfo.java 2.37 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
50
51
52
53
54
55
56
57
  package com.objecteye.pojo;
  
  import lombok.AllArgsConstructor;
  import lombok.Data;
  import lombok.NoArgsConstructor;
  import lombok.ToString;
  
  @Data
  @AllArgsConstructor
  @NoArgsConstructor
  @ToString
  public class RabbitMQInfo {
      private String id; //车辆id
      private String equipmentName;  //设备名称
      private String longitude;       //经度
      private String latitude;   //纬度
      private String picurl;  //图片的路径
      private Integer recordid;  //车辆档案id
      private String pictime;  //抓拍时间
      private String flag;  //是否报警
      private String tag;   //是否确认
      private String personid;  //人像id
      private String vehicleplatetype;  //车牌类型
      private Float vehicle_plate_numScore;  //号牌可信度
      private String vehicle_color_index;  //车辆颜色;
      private String vehicle_special_type;   //特殊品类车类型
      private String vehicle_illegal_driver_smoke_status;   //主驾驶吸烟
      private String vehicle_illegal_driver_belt_status;  //主驾驶安全带
      private String vehicle_illegal_driver_phone_status; //主驾驶打电话
      private String vehicle_illegal_driver_person_status;    //主驾驶是否有人
      private String vehicle_illegal_copilot_smoke_status;    //副驾驶吸烟
      private String vehicle_illegal_copilot_belt_status; //副驾驶安全带
      private String vehicle_illegal_copilot_phone_status;    //副驾驶打电话
      private String vehicle_illegal_copilot_person_status;   //副驾驶有人
      private String vehicle_recg_type;  //车辆类型
      private String vehicle_recg_freight_ton;  //吨数
      private Float vehicle_recg_name_score;   //品牌可信度
      private String vehicle_plate_hphm;  //车辆号牌
      private Integer vehicle_pendant_detect_njbnumber;  //年检标数量
      private String vehicle_pendant_detect_gjexis;  //是否存在挂件  0表示不存在   1表示存在
      //1.主驾驶遮阳板
      private String vehicle_pendant_driver_zyb;
      //2.副驾遮阳板
      private String vehicle_pendant_copilot_zyb;
      //3.是否有纸巾盒
      private String vehicle_pendant_detect_zjh;
      //4.是否有转经筒
      private String vehicle_pendant_detect_zjt;
      //车牌状态
      private String vehicle_plate_status;
      //车辆型号
      private String clxh;
      //增加该车辆的抓拍图(为避免IO,此处使用base64)
      private String snapshot;
  
  
  }