燕山石化溯源三维电子沙盘-【后端】-服务
13693261870
2023-06-05 e273d890983912fb4220fc8f89745a61db275119
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
package com.yssh.entity;
 
import cn.hutool.core.date.DateTime;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
 
public class VocVals implements Serializable {
    private static final long serialVersionUID = -20230605145412000L;
 
    @ApiModelProperty(value = "主键")
    private int id;
 
    @ApiModelProperty(value = "X")
    private int x;
 
    @ApiModelProperty(value = "Y")
    private int y;
 
    @ApiModelProperty(value = "值")
    private double val;
 
    @ApiModelProperty(value = "创建时间")
    private DateTime createTime;
 
    public VocVals() {
    }
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public int getX() {
        return x;
    }
 
    public void setX(int x) {
        this.x = x;
    }
 
    public int getY() {
        return y;
    }
 
    public void setY(int y) {
        this.y = y;
    }
 
    public double getVal() {
        return val;
    }
 
    public void setVal(double val) {
        this.val = val;
    }
 
    public DateTime getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(DateTime createTime) {
        this.createTime = createTime;
    }
}