package com.terra.coal.entity;
|
|
/**
|
* CountEntity
|
* @author WWW
|
*/
|
public class CountEntity {
|
private String ctype;
|
|
private Double volume;
|
|
private Double coalProd;
|
|
private Double gangueProd;
|
|
private Double soilProd;
|
|
public CountEntity() {
|
}
|
|
public String getCtype() {
|
return ctype;
|
}
|
|
public void setCtype(String ctype) {
|
this.ctype = ctype;
|
}
|
|
public Double getVolume() {
|
return volume;
|
}
|
|
public void setVolume(Double volume) {
|
this.volume = volume;
|
}
|
|
public Double getCoalProd() {
|
return coalProd;
|
}
|
|
public void setCoalProd(Double coalProd) {
|
this.coalProd = coalProd;
|
}
|
|
public Double getGangueProd() {
|
return gangueProd;
|
}
|
|
public void setGangueProd(Double gangueProd) {
|
this.gangueProd = gangueProd;
|
}
|
|
public Double getSoilProd() {
|
return soilProd;
|
}
|
|
public void setSoilProd(Double soilProd) {
|
this.soilProd = soilProd;
|
}
|
}
|