霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-07 51dd6f6129fec5a8301efafcb28d01a3d5734bea
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
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;
 
/**
 * Coal2000Entity
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("public.coal2000")
@EqualsAndHashCode(callSuper = false)
public class Coal2000Entity implements Serializable {
    private static final long serialVersionUID = 5660360983928368364L;
 
    private Integer gid;
 
    private Double top;
 
    private Double bottom;
 
    private Double clong;
 
    private Double width;
 
    private Double height;
 
    private String ctype;
 
    private Double density;
 
    private Double gangue;
 
    private Double volume;
 
    @TableField(value = "ST_AsText(geom)", updateStrategy = FieldStrategy.NEVER, insertStrategy = FieldStrategy.NEVER)
    private String geom;
 
    public Coal2000Entity() {
    }
 
    public Integer getGid() {
        return gid;
    }
 
    public void setGid(Integer gid) {
        this.gid = gid;
    }
 
    public Double getTop() {
        return top;
    }
 
    public void setTop(Double top) {
        this.top = top;
    }
 
    public Double getBottom() {
        return bottom;
    }
 
    public void setBottom(Double bottom) {
        this.bottom = bottom;
    }
 
    public Double getClong() {
        return clong;
    }
 
    public void setClong(Double clong) {
        this.clong = clong;
    }
 
    public Double getWidth() {
        return width;
    }
 
    public void setWidth(Double width) {
        this.width = width;
    }
 
    public Double getHeight() {
        return height;
    }
 
    public void setHeight(Double height) {
        this.height = height;
    }
 
    public String getCtype() {
        return ctype;
    }
 
    public void setCtype(String ctype) {
        this.ctype = ctype;
    }
 
    public Double getDensity() {
        return density;
    }
 
    public void setDensity(Double density) {
        this.density = density;
    }
 
    public Double getGangue() {
        return gangue;
    }
 
    public void setGangue(Double gangue) {
        this.gangue = gangue;
    }
 
    public Double getVolume() {
        return volume;
    }
 
    public void setVolume(Double volume) {
        this.volume = volume;
    }
 
    public String getGeom() {
        return geom;
    }
 
    public void setGeom(String geom) {
        this.geom = geom;
    }
}