Blame view

src/main/java/com/objecteye/entity/PersonMsg.java 558 Bytes
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
1
2
3
4
5
6
7
8
9
10
11
12
13
  package com.objecteye.entity;
  
  
  import lombok.*;
  
  import java.io.Serializable;
  
  @Data
  @Getter
  @Setter
  @NoArgsConstructor
  @AllArgsConstructor
  public class PersonMsg implements Serializable {
40c853a1   Liu Haoyu   去掉MySQL相关内容, 去掉my...
14
15
16
  
      private static final long serialVersionUID = 594655270956188373L;
  
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
17
18
      private String id;
  
40c853a1   Liu Haoyu   去掉MySQL相关内容, 去掉my...
19
      private Integer deviceId;
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  
      private String imageUrl;
  
      private long captureTime;
  
      private String equipmentName;
  
      private String longitude;
  
      private String latitude;
  
      private String url;
  
      private String personId;
  
      private float[] fea;
  
  
  }