Administrator
2024-02-29 454b5a4b87b5c2ffe34f67a53797d6aeb7941995
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
package com.ruoyi.device.tower.domain;
 
import io.swagger.annotations.ApiModelProperty;
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;
 
/**
 * 塔管理对象 ard_towers
 *
 * @author 刘苏义
 * @date 2023-03-09
 */
@Data
public class ArdTowers extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
 
    /**
     * id
     */
    private String id;
 
    /**
     * 名称
     */
    @Excel(name = "名称")
    private String name;
 
    /**
     * 经度
     */
    @Excel(name = "经度")
    private Double longitude;
 
    /**
     * 纬度
     */
    @Excel(name = "纬度")
    private Double latitude;
 
    /**
     * 高程
     */
    @Excel(name = "高程")
    private Double altitude;
 
    /**
     * 用户id
     */
    @ApiModelProperty(hidden = true)
    private String userId;
 
    /**
     * 部门id
     */
    private Long deptId;
 
 
    private String direction; // 塔方位角
    private String towerScale; // 塔比例
    private String towerPath;// 塔模型
 
    private String peOffset; // 光电偏移
    private String peScale; // 光电比例
    private String pePath; // 光电模型
 
    private String radarOffset; // 雷达偏移
    private String radarScale; // 雷达缩放
    private String radarPath; // 雷达模型
 
}