燕山石化溯源三维电子沙盘-【后端】-服务
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
package com.yssh.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "Qxsh",description = "Qxsh")
public class Qxsh {
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "经度")
    private Double lon;
 
    @ApiModelProperty(value = "纬度")
    private Double lat;
 
    @ApiModelProperty(value = "数值")
    private Double value;
 
    @ApiModelProperty(value = "时间")
    private String time;
 
    @ApiModelProperty(value = "是否存在溯源")
    private Integer isSuYuan;
 
    @ApiModelProperty(value = "是否存在快速溯源")
    private Integer isFast;
 
    public Qxsh() {
        this.isSuYuan = 0;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Double getLon() {
        return lon;
    }
 
    public void setLon(Double lon) {
        this.lon = lon;
    }
 
    public Double getLat() {
        return lat;
    }
 
    public void setLat(Double lat) {
        this.lat = lat;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public Integer getIsSuYuan() {
        return isSuYuan;
    }
 
    public void setIsSuYuan(Integer isSuYuan) {
        this.isSuYuan = isSuYuan;
    }
 
    public Integer getIsFast() {
        return isFast;
    }
 
    public void setIsFast(Integer isFast) {
        this.isFast = isFast;
    }
}