燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-06-06 4a4179b19501059168bd2d725bf6294708c99ec3
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
package com.yssh.entity;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.github.biyanwen.annotation.CsvProperty;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.math.BigInteger;
import java.util.Date;
 
public class VocVals implements Serializable {
    private static final long serialVersionUID = -20230605145412000L;
 
    @JsonIgnore
    @ApiModelProperty(value = "主键")
    private BigInteger id;
 
    @CsvProperty(index = 0)
    @ApiModelProperty(value = "X")
    private Integer x;
 
    @CsvProperty(index = 1)
    @ApiModelProperty(value = "Y")
    private Integer y;
 
    @CsvProperty(index = 2)
    @ApiModelProperty(value = "值")
    private Double val;
 
    @JsonIgnore
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
 
    @ApiModelProperty(value = "地址")
    private String addr;
 
    public VocVals() {
    }
 
    public BigInteger getId() {
        return id;
    }
 
    public void setId(BigInteger 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 getVal() {
        return val;
    }
 
    public void setVal(Double val) {
        this.val = val;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getAddr() {
        return addr;
    }
 
    public void setAddr(String addr) {
        this.addr = addr;
    }
}