艾金辉
2023-07-22 64c7668818aa8272c0aae206a3c0f7007ca38e5d
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
package com.ruoyi.app.position.domain;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * app位置对象 ard_app_position
 * 
 * @author ard
 * @date 2023-07-18
 */
@Data
public class ArdAppPosition extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private String id;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 高层 */
    @Excel(name = "高层")
    private Double altitude;
 
    /** 速度 */
    @Excel(name = "速度")
    private Double speed;
 
    /** 方向角 */
    @Excel(name = "方向角")
    private Double bearing;
 
}