liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.project.plannedOutput.domain;
 
import com.dingzhuo.energy.framework.web.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * plannedOutput对象 planned_output
 * 
 * @author sys
 * @date 2020-12-16
 */
public class energyMonitoring extends BaseEntity {
    private static final long serialVersionUID = 1L;
    private String peValue;
    private String peWaterValue;
    private String peCoalValue;
    private String peSteamValue;
    private String actualValue;
    private String planValue;
    private String poValue;
    private String poVaterValue;
    private String poCoalValue;
    private String poSteamValue;
    private String productid;
    private String productname;
    private String muid;
 
    public String getPeValue() {
        return peValue;
    }
 
    public void setPeValue(String peValue) {
        this.peValue = peValue;
    }
 
    public String getPeWaterValue() {
        return peWaterValue;
    }
 
    public void setPeWaterValue(String peWaterValue) {
        this.peWaterValue = peWaterValue;
    }
 
    public String getPeCoalValue() {
        return peCoalValue;
    }
 
    public void setPeCoalValue(String peCoalValue) {
        this.peCoalValue = peCoalValue;
    }
 
    public String getPeSteamValue() {
        return peSteamValue;
    }
 
    public void setPeSteamValue(String peSteamValue) {
        this.peSteamValue = peSteamValue;
    }
 
    public String getActualValue() {
        return actualValue;
    }
 
    public void setActualValue(String actualValue) {
        this.actualValue = actualValue;
    }
 
    public String getPlanValue() {
        return planValue;
    }
 
    public void setPlanValue(String planValue) {
        this.planValue = planValue;
    }
 
    public String getPoValue() {
        return poValue;
    }
 
    public void setPoValue(String poValue) {
        this.poValue = poValue;
    }
 
    public String getPoVaterValue() {
        return poVaterValue;
    }
 
    public void setPoVaterValue(String poVaterValue) {
        this.poVaterValue = poVaterValue;
    }
 
    public String getPoCoalValue() {
        return poCoalValue;
    }
 
    public void setPoCoalValue(String poCoalValue) {
        this.poCoalValue = poCoalValue;
    }
 
    public String getPoSteamValue() {
        return poSteamValue;
    }
 
    public void setPoSteamValue(String poSteamValue) {
        this.poSteamValue = poSteamValue;
    }
 
    public String getProductid() {
        return productid;
    }
 
    public void setProductid(String productid) {
        this.productid = productid;
    }
 
    public String getProductname() {
        return productname;
    }
 
    public void setProductname(String productname) {
        this.productname = productname;
    }
 
    public String getMuid() {
        return muid;
    }
 
    public void setMuid(String muid) {
        this.muid = muid;
    }
}