Blame view

src/main/java/com/objecteye/pojo/viid/detail/SubImageInfo.java 1.34 KB
020ea372   Hugiee.Liu   fea: 测试接口添加
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
61
62
63
64
65
66
67
  package com.objecteye.pojo.viid.detail;
  
  import com.fasterxml.jackson.annotation.JsonProperty;
  import lombok.Data;
  
  /**
   * @author: liuhaoyu
   * @date: 2023/7/6
   */
  @Data
  public class SubImageInfo {
      /**
       * 图片IDString(41)
       */
      @JsonProperty("ImageID")
      private String imageId;
      /**
       * 视频图像分析处理事件类型
       */
      @JsonProperty("EventSort")
      private Integer eventSort;
      /**
       * 设备编码【String(20)
       */
      @JsonProperty("DeviceID")
      private String deviceId;
      /**
       * 存储路径
       */
      @JsonProperty("StoragePath")
      private String storagePath;
      /**
       * 图像类型
       */
      @JsonProperty("ImageType")
      private String imageType;
      /**
       * 图片格式
       */
      @JsonProperty("FileFormat")
      private String fileFormat;
      /**
       * 拍摄时间【格式(yyyyMMddHHmmss)
       */
      @JsonProperty("ShotTime")
      private String shotTime;
      /**
       * 水平像素值
       */
      @JsonProperty("Width")
      private Integer width;
      /**
       * 垂直像素值
       */
      @JsonProperty("Height")
      private Integer height;
      /**
       * 图片(base64
       */
      @JsonProperty("Data")
      private String data;
      /**
       * 图像类型(02-车牌彩色小图,11-人脸图)
       */
      @JsonProperty("Type")
      private String type;
  }