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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package com.dingzhuo.energy.project.plannedOutput.domain;
 
import com.dingzhuo.energy.common.utils.time.TimeType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.dingzhuo.energy.framework.aspectj.lang.annotation.Excel;
import com.dingzhuo.energy.framework.web.domain.BaseEntity;
import java.util.Date;
 
/**
 * 【请填写功能名称】对象 plan_energy
 * 
 * @author sys
 * @date 2020-12-17
 */
public class PlanEnergy extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @Excel(name = "产品ID")
    private Integer productId;
    @Excel(name = "产品名称")
    private String productname;
    @Excel(name = "单位")
    private String muid;
    @Excel(name = "计划值")
    private String planValue;
    @Excel(name = "实际值")
    private String actualValue;
    /** 电能耗量 */
    @Excel(name = "电能耗量")
    private String value;
    /** 电单位产品能耗量 */
    @Excel(name = "电单位产品能耗量")
    private String energyValue;
 
    /** 类型 */
    @Excel(name = "类型")
    private TimeType timeType;
 
    /** 蒸汽单位产品能耗量 */
    @Excel(name = "蒸汽单位产品能耗量")
    private String steamEnereyValue;
 
    /** 电单位产品能耗量 */
    @Excel(name = "水单位产品能耗量")
    private String waterValue;
 
    /** 水单位产品能耗量 */
    @Excel(name = "水单位产品能耗量")
    private String waterEnergyValue;
 
    /** 煤气能耗量 */
    @Excel(name = "煤气能耗量")
    private String coalValue;
 
    /** 煤气单位产品能耗量 */
    @Excel(name = "煤气单位产品能耗量")
    private String coalEnergyValue;
 
    /** 蒸汽能耗量 */
    @Excel(name = "蒸汽能耗量")
    private String steamValue;
 
    /** 日期 */
    @Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date dataTime;
    private String indexCode;
    private String timeCode;
    private String type;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public void setProductId(Integer productId)
    {
        this.productId = productId;
    }
 
    public Integer getProductId()
    {
        return 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;
    }
 
    public String getPlanValue() {
        return planValue;
    }
 
    public void setPlanValue(String planValue) {
        this.planValue = planValue;
    }
 
    public String getActualValue() {
        return actualValue;
    }
 
    public void setActualValue(String actualValue) {
        this.actualValue = actualValue;
    }
 
    public void setValue(String value)
    {
        this.value = value;
    }
 
    public String getValue() 
    {
        return value;
    }
    public void setEnergyValue(String energyValue) 
    {
        this.energyValue = energyValue;
    }
 
    public String getEnergyValue() 
    {
        return energyValue;
    }
 
    public String getSteamEnereyValue() {
        return steamEnereyValue;
    }
 
    public void setSteamEnereyValue(String steamEnereyValue) {
        this.steamEnereyValue = steamEnereyValue;
    }
 
    public String getWaterValue() {
        return waterValue;
    }
 
    public void setWaterValue(String waterValue) {
        this.waterValue = waterValue;
    }
 
    public String getWaterEnergyValue() {
        return waterEnergyValue;
    }
 
    public void setWaterEnergyValue(String waterEnergyValue) {
        this.waterEnergyValue = waterEnergyValue;
    }
 
    public String getCoalValue() {
        return coalValue;
    }
 
    public void setCoalValue(String coalValue) {
        this.coalValue = coalValue;
    }
 
    public String getCoalEnergyValue() {
        return coalEnergyValue;
    }
 
    public void setCoalEnergyValue(String coalEnergyValue) {
        this.coalEnergyValue = coalEnergyValue;
    }
 
    public String getSteamValue() {
        return steamValue;
    }
 
    public void setSteamValue(String steamValue) {
        this.steamValue = steamValue;
    }
 
    public void setDataTime(Date dataTime)
    {
        this.dataTime = dataTime;
    }
 
    public Date getDataTime() 
    {
        return dataTime;
    }
    public void setTimeType(TimeType timeType)
    {
        this.timeType = timeType;
    }
 
    public TimeType getTimeType()
    {
        return timeType;
    }
 
    public String getIndexCode() {
        return indexCode;
    }
 
    public void setIndexCode(String indexCode) {
        this.indexCode = indexCode;
    }
 
    public String getTimeCode() {
        return timeCode;
    }
 
    public void setTimeCode(String timeCode) {
        this.timeCode = timeCode;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("productId", getProductId())
            .append("productname", getProductname())
            .append("muid", getMuid())
            .append("planValue", getPlanValue())
            .append("value", getValue())
            .append("energyValue", getEnergyValue())
            .append("steamEnereyValue", getSteamEnereyValue())
            .append("waterValue", getWaterValue())
            .append("waterEnergyValue", getWaterEnergyValue())
            .append("coalValue", getCoalValue())
            .append("coalEnergyValue", getCoalEnergyValue())
            .append("steamValue", getSteamValue())
            .append("dataTime", getDataTime())
            .append("timeType", getTimeType())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}