上饶市公安局wvp平台
zhongrj
2023-06-27 2e98b20bea4463e4465e3c19059d0744a09aec06
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.genersoft.iot.vmp.netty.business.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 对接设备信息表 实体类
 *
 * @author zhongrj
 * @since 2023-02-23
 */
@Data
public class TalkBackEquipment implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    private Long id;
 
    /**
     * 设备名称
     */
    private String name;
 
    /**
     * 设备编号
     */
    private String code;
 
    /**
     * 设备状态 0:离线  1:在线
     */
    private Integer status;
 
    /**
     * 终端编号
     */
    private String terminalNumber;
 
    /**
     * 经度
     */
    private String longitude;
 
    /**
     * 纬度
     */
    private String latitude;
 
    /**
     * 速度,单位 米/秒
     */
    private String speed;
 
    /**
     * 方向,以正北方向为 0 角度,顺时针方向偏转
     */
    private String direction;
 
    /**
     * 高程,单位:米
     */
    private String elevation;
 
    /**
     * 精度
     */
    private String precisions;
 
    /**
     * 日期
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date receiveTime;
 
    /**
     * 创建时间
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    /**
     * 说明
     */
//    @ApiModelProperty(value = "说明")
//    private String remark;
}