jiazx0107@163.com
2023-05-17 620eab6cca2bc9ef9ea6d3067a0a5ba1deadbd1c
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
package com.ld.igds.oa.dto;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * GPS位置数据封装
 * 
 * @author:
 * @description:
 * @version:
 * @data:
 *
 */
@Data
public class GpsLocationData implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @PropertyDef(label = "经度")
    private String longitude;
 
    @PropertyDef(label = "纬度")
    private String latitude;
 
    @PropertyDef(label = "位置数据id")
    private String recordId;
 
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @PropertyDef(label = "IP地址")
    private String ip;
 
    @PropertyDef(label = "端口号")
    private Integer port;
 
    @PropertyDef(label = "更新时间")
    private Date updateTime;
 
    @PropertyDef(label = "设备手机号")
    private String phone;
 
    @PropertyDef(label = "鉴权码")
    private String sn;
}