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
| package com.terra.lfdcexp.entity;
|
| import lombok.Data;
|
| /**
| * "alitude":"1.4",
| * "email":"90000637@chnenergy.com.cn",
| * "events":[{ "code":"28"},{ "code":"24"},{ "code":"22"}],
| * "latitude":"39.4798550098179",
| * "longitude":"116.769277949769",
| * "mobile":"12000000633",
| * "shopId":"197",
| * "time":"1.692342566166E12",
| * "type":"UWB",
| * "userId":"09484ad1452e482b8b52f0ad7c7e96bd",
| * "userName":"刘晶"}
| */
| @Data
| public class FenceEntity {
| private String alitude ;
| private String email ;
| private String events;
| private String latitude ;
| private String longitude ;
| private String mobile ;
| private String shopId ;
| private String time ;
| private String type ;
| private String userId ;
| private String userName ;
| }
|
|