霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-07 6fa0ffc3a98467cc81634f585210e3335c91a264
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.terra.coal.entity;
 
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * Coal54Entity
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("public.coal54")
@EqualsAndHashCode(callSuper = false)
public class Coal54Entity implements Serializable {
    private static final long serialVersionUID = 5660360983928368364L;
 
    private Integer gid;
 
    private BigDecimal top;
 
    private BigDecimal bottom;
 
    private BigDecimal clong;
 
    private BigDecimal width;
 
    private BigDecimal height;
 
    private String ctype;
 
    private BigDecimal density;
 
    private BigDecimal gangue;
 
    private BigDecimal volume;
 
    @TableField(value = "ST_AsText(geom)", updateStrategy = FieldStrategy.NEVER, insertStrategy = FieldStrategy.NEVER)
    private String geom;
 
    public Coal54Entity() {
    }
 
    public Integer getGid() {
        return gid;
    }
 
    public void setGid(Integer gid) {
        this.gid = gid;
    }
 
    public BigDecimal getTop() {
        return top;
    }
 
    public void setTop(BigDecimal top) {
        this.top = top;
    }
 
    public BigDecimal getBottom() {
        return bottom;
    }
 
    public void setBottom(BigDecimal bottom) {
        this.bottom = bottom;
    }
 
    public BigDecimal getClong() {
        return clong;
    }
 
    public void setClong(BigDecimal clong) {
        this.clong = clong;
    }
 
    public BigDecimal getWidth() {
        return width;
    }
 
    public void setWidth(BigDecimal width) {
        this.width = width;
    }
 
    public BigDecimal getHeight() {
        return height;
    }
 
    public void setHeight(BigDecimal height) {
        this.height = height;
    }
 
    public String getCtype() {
        return ctype;
    }
 
    public void setCtype(String ctype) {
        this.ctype = ctype;
    }
 
    public BigDecimal getDensity() {
        return density;
    }
 
    public void setDensity(BigDecimal density) {
        this.density = density;
    }
 
    public BigDecimal getGangue() {
        return gangue;
    }
 
    public void setGangue(BigDecimal gangue) {
        this.gangue = gangue;
    }
 
    public BigDecimal getVolume() {
        return volume;
    }
 
    public void setVolume(BigDecimal volume) {
        this.volume = volume;
    }
 
    public String getGeom() {
        return geom;
    }
 
    public void setGeom(String geom) {
        this.geom = geom;
    }
}