燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-01 99042da077ad98e38340f96cb03ffcf4d249ab87
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
package com.yssh.entity;
 
import java.io.Serializable;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import com.github.biyanwen.annotation.CsvProperty;
 
@Data
@NoArgsConstructor
@AllArgsConstructor
public class SuYuan implements Serializable {
 
    private static final long serialVersionUID = 2004641202487367361L;
    private String id;
    @CsvProperty(index = 0)
    private Integer x;
    @CsvProperty(index = 1)
    private Integer y;
    @CsvProperty(index = 2)
    private Integer z;
    @CsvProperty(index = 3)
    private Double u;
    @CsvProperty(index = 4)
    private Double v;
    @CsvProperty(index = 5)
    private Double w;
    @CsvProperty(index = 6)
    private Double c;
    /*private Double lon;
    private Double lat;
    private Date time;*/
 
    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 Integer getZ() {
        return z;
    }
 
    public void setZ(Integer z) {
        this.z = z;
    }
 
    public Double getU() {
        return u;
    }
 
    public void setU(Double u) {
        this.u = u;
    }
 
    public Double getV() {
        return v;
    }
 
    public void setV(Double v) {
        this.v = v;
    }
 
    public Double getW() {
        return w;
    }
 
    public void setW(Double w) {
        this.w = w;
    }
 
    public Double getC() {
        return c;
    }
 
    public void setC(Double c) {
        this.c = c;
    }
}