燕山石化溯源三维电子沙盘-【后端】-服务
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
package com.yssh.entity;
 
import lombok.Data;
import lombok.ToString;
 
@Data
@ToString
public class Stratum {
    private Long id;
    private String expSiteNumber;
    private Integer primaryLayerNumber;
    private Integer sublayerNumber;
    private String geologicalEra;
    private String geologicalGenesis;
    private Double layerDepth;
    private String geotechnicalName;
    private String geotechnicalCategory;
    private String description;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getExpSiteNumber() {
        return expSiteNumber;
    }
 
    public void setExpSiteNumber(String expSiteNumber) {
        this.expSiteNumber = expSiteNumber;
    }
 
    public Integer getPrimaryLayerNumber() {
        return primaryLayerNumber;
    }
 
    public void setPrimaryLayerNumber(Integer primaryLayerNumber) {
        this.primaryLayerNumber = primaryLayerNumber;
    }
 
    public Integer getSublayerNumber() {
        return sublayerNumber;
    }
 
    public void setSublayerNumber(Integer sublayerNumber) {
        this.sublayerNumber = sublayerNumber;
    }
 
    public String getGeologicalEra() {
        return geologicalEra;
    }
 
    public void setGeologicalEra(String geologicalEra) {
        this.geologicalEra = geologicalEra;
    }
 
    public String getGeologicalGenesis() {
        return geologicalGenesis;
    }
 
    public void setGeologicalGenesis(String geologicalGenesis) {
        this.geologicalGenesis = geologicalGenesis;
    }
 
    public Double getLayerDepth() {
        return layerDepth;
    }
 
    public void setLayerDepth(Double layerDepth) {
        this.layerDepth = layerDepth;
    }
 
    public String getGeotechnicalName() {
        return geotechnicalName;
    }
 
    public void setGeotechnicalName(String geotechnicalName) {
        this.geotechnicalName = geotechnicalName;
    }
 
    public String getGeotechnicalCategory() {
        return geotechnicalCategory;
    }
 
    public void setGeotechnicalCategory(String geotechnicalCategory) {
        this.geotechnicalCategory = geotechnicalCategory;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
}