霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-10 dd50418315218979f8d596f34f185ae4a28adc4a
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
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;
    }
}