| | |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * Coal2000Entity |
| | |
| | | |
| | | private Integer gid; |
| | | |
| | | private BigDecimal top; |
| | | private Double top; |
| | | |
| | | private BigDecimal bottom; |
| | | private Double bottom; |
| | | |
| | | private BigDecimal clong; |
| | | private Double clong; |
| | | |
| | | private BigDecimal width; |
| | | private Double width; |
| | | |
| | | private BigDecimal height; |
| | | private Double height; |
| | | |
| | | private String ctype; |
| | | |
| | | private BigDecimal density; |
| | | private Double density; |
| | | |
| | | private BigDecimal gangue; |
| | | private Double gangue; |
| | | |
| | | private BigDecimal volume; |
| | | private Double volume; |
| | | |
| | | @TableField(value = "ST_AsText(geom)", updateStrategy = FieldStrategy.NEVER, insertStrategy = FieldStrategy.NEVER) |
| | | private String geom; |
| | |
| | | this.gid = gid; |
| | | } |
| | | |
| | | public BigDecimal getTop() { |
| | | public Double getTop() { |
| | | return top; |
| | | } |
| | | |
| | | public void setTop(BigDecimal top) { |
| | | public void setTop(Double top) { |
| | | this.top = top; |
| | | } |
| | | |
| | | public BigDecimal getBottom() { |
| | | public Double getBottom() { |
| | | return bottom; |
| | | } |
| | | |
| | | public void setBottom(BigDecimal bottom) { |
| | | public void setBottom(Double bottom) { |
| | | this.bottom = bottom; |
| | | } |
| | | |
| | | public BigDecimal getClong() { |
| | | public Double getClong() { |
| | | return clong; |
| | | } |
| | | |
| | | public void setClong(BigDecimal clong) { |
| | | public void setClong(Double clong) { |
| | | this.clong = clong; |
| | | } |
| | | |
| | | public BigDecimal getWidth() { |
| | | public Double getWidth() { |
| | | return width; |
| | | } |
| | | |
| | | public void setWidth(BigDecimal width) { |
| | | public void setWidth(Double width) { |
| | | this.width = width; |
| | | } |
| | | |
| | | public BigDecimal getHeight() { |
| | | public Double getHeight() { |
| | | return height; |
| | | } |
| | | |
| | | public void setHeight(BigDecimal height) { |
| | | public void setHeight(Double height) { |
| | | this.height = height; |
| | | } |
| | | |
| | |
| | | this.ctype = ctype; |
| | | } |
| | | |
| | | public BigDecimal getDensity() { |
| | | public Double getDensity() { |
| | | return density; |
| | | } |
| | | |
| | | public void setDensity(BigDecimal density) { |
| | | public void setDensity(Double density) { |
| | | this.density = density; |
| | | } |
| | | |
| | | public BigDecimal getGangue() { |
| | | public Double getGangue() { |
| | | return gangue; |
| | | } |
| | | |
| | | public void setGangue(BigDecimal gangue) { |
| | | public void setGangue(Double gangue) { |
| | | this.gangue = gangue; |
| | | } |
| | | |
| | | public BigDecimal getVolume() { |
| | | public Double getVolume() { |
| | | return volume; |
| | | } |
| | | |
| | | public void setVolume(BigDecimal volume) { |
| | | public void setVolume(Double volume) { |
| | | this.volume = volume; |
| | | } |
| | | |