燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-13 2f55cebbad3dea187a5f91d16ec80a9677dab699
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.yssh.entity;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.yssh.utils.CalculateUtils;
 
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
@NoArgsConstructor
@AllArgsConstructor
@ToString
@ApiModel(value = "3d数据",description = "3d数据")
public class SuYuan3d implements Serializable{
 
    /**
     * @Fields field:field:{todo}(用一句话描述这个变量表示什么)
     */
    private static final long serialVersionUID = 5955771070977977633L;
    @ApiModelProperty(value = "主键")
    private String id;
    @JsonIgnore
    private Integer x;
    @JsonIgnore
    private Integer y;
    @ApiModelProperty(value = "经度")
    private double lon;
    @ApiModelProperty(value = "纬度")
    private double lat;
    private double height0 = 0.0;
    private double height10 = 0.0;
    private double height20 = 0.0;
    private double height30 = 0.0;
    private double height40 = 0.0;
    private double height50 = 0.0;
    private double height60 = 0.0;
    private double height70 = 0.0;
    private double height80 = 0.0;
    private double height90 = 0.0;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public Integer getX() {
        return x;
    }
    public void setX(Integer x) {
        this.x = x;
    }
    public Integer getY() {
        return y;
    }
    public void setY(Integer y) {
        this.y = y;
    }
    public double getLon() {
        return CalculateUtils.getLon(x, y);
    }
    
    public double getLat() {
        return CalculateUtils.getLat(x, y);
    }
    public double getHeight0() {
        return height0;
    }
    public void setHeight0(double height0) {
        this.height0 = height0;
    }
    public double getHeight10() {
        return height10;
    }
    public void setHeight10(double height10) {
        this.height10 = height10;
    }
    public double getHeight20() {
        return height20;
    }
    public void setHeight20(double height20) {
        this.height20 = height20;
    }
    public double getHeight30() {
        return height30;
    }
    public void setHeight30(double height30) {
        this.height30 = height30;
    }
    public double getHeight40() {
        return height40;
    }
    public void setHeight40(double height40) {
        this.height40 = height40;
    }
    public double getHeight50() {
        return height50;
    }
    public void setHeight50(double height50) {
        this.height50 = height50;
    }
    public double getHeight60() {
        return height60;
    }
    public void setHeight60(double height60) {
        this.height60 = height60;
    }
    public double getHeight70() {
        return height70;
    }
    public void setHeight70(double height70) {
        this.height70 = height70;
    }
    public double getHeight80() {
        return height80;
    }
    public void setHeight80(double height80) {
        this.height80 = height80;
    }
    public double getHeight90() {
        return height90;
    }
    public void setHeight90(double height90) {
        this.height90 = height90;
    }
}