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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package com.dingzhuo.energy.basic.data.enerInfoManage.domain;
 
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;
 
/**
 * energy对象 sys_energy
 *
 * @author ruoyi
 * @date 2020-02-12
 */
public class SysEnergy extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 操作人 */
    @Excel(name = "操作人")
    private String oprMan;
 
    /** 操作时间 */
    @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date oprTime;
 
    /** 修改人 */
    @Excel(name = "修改人")
    private String modMan;
 
    /** 修改时间 */
    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date modTime;
 
    /** 能源ID */
    private Integer enerid;
 
    /** 能源名称 */
    @Excel(name = "能源名称")
    private String enername;
 
    /** 计量单位ID */
    private Integer muid;
 
    /** 能源类别ID */
    private Integer enerclassid;
 
    /** 能源编号 */
    @Excel(name = "能源编号")
    private String enersno;
 
    /** 是否存储 */
    @Excel(name = "是否存储")
    private Integer isstorage;
 
    /** 备注 */
    @Excel(name = "备注")
    private String note;
 
    /** 能源类型 */
    @Excel(name = "能源类型")
    private String enerclassname;
 
    /** 是否储存(字符串) */
    private String isstorageString;
 
    /** 单价*/
    private double price;
 
    /** 执行日期 */
    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date execdate;
 
    /** 价格备注 */
    private String pricenote;
 
    private Integer muidString;
 
    public String getMuidName() {
        return muidName;
    }
 
    public void setMuidName(String muidName) {
        this.muidName = muidName;
    }
 
    private String muidName;
 
    //等价折标系数
    private double coefficient;
 
    //当量折标系数
    private double coefficient2;
 
    //折标系数note
    private String coefficientnote;
 
    /** 折标系数执行日期 */
    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date coefficientexecdate;
 
    public double getCoefficient() {
        return coefficient;
    }
 
    public void setCoefficient(double coefficient) {
        this.coefficient = coefficient;
    }
 
    public double getCoefficient2() {
        return coefficient2;
    }
 
    public void setCoefficient2(double coefficient2) {
        this.coefficient2 = coefficient2;
    }
 
    public String getCoefficientnote() {
        return coefficientnote;
    }
 
    public void setCoefficientnote(String coefficientnote) {
        this.coefficientnote = coefficientnote;
    }
 
    public Date getCoefficientexecdate() {
        return coefficientexecdate;
    }
 
    public void setCoefficientexecdate(Date coefficientexecdate) {
        this.coefficientexecdate = coefficientexecdate;
    }
 
    public Integer getMuidString() {
        return muidString;
    }
 
    public void setMuidString(Integer muidString) {
        this.muidString = muidString;
    }
 
    public double getPrice() {
        return price;
    }
 
    public void setPrice(double price) {
        this.price = price;
    }
 
    public Date getExecdate() {
        return execdate;
    }
 
    public void setExecdate(Date execdate) {
        this.execdate = execdate;
    }
 
    public String getPricenote() {
        return pricenote;
    }
 
    public void setPricenote(String pricenote) {
        this.pricenote = pricenote;
    }
 
    public String getIsstorageString() {
        return isstorageString;
    }
 
    public void setIsstorageString(String isstorageString) {
        this.isstorageString = isstorageString;
    }
 
    public String getEnerclassname() {
        return enerclassname;
    }
 
    public void setEnerclassname(String enerclassname) {
        this.enerclassname = enerclassname;
    }
 
    public void setOprMan(String oprMan)
    {
        this.oprMan = oprMan;
    }
 
    public String getOprMan()
    {
        return oprMan;
    }
    public void setOprTime(Date oprTime)
    {
        this.oprTime = oprTime;
    }
 
    public Date getOprTime()
    {
        return oprTime;
    }
    public void setModMan(String modMan)
    {
        this.modMan = modMan;
    }
 
    public String getModMan()
    {
        return modMan;
    }
    public void setModTime(Date modTime)
    {
        this.modTime = modTime;
    }
 
    public Date getModTime()
    {
        return modTime;
    }
    public void setEnerid(Integer enerid)
    {
        this.enerid = enerid;
    }
 
    public Integer getEnerid()
    {
        return enerid;
    }
    public void setEnername(String enername)
    {
        this.enername = enername;
    }
 
    public String getEnername()
    {
        return enername;
    }
    public void setMuid(Integer muid)
    {
        this.muid = muid;
    }
 
    public Integer getMuid()
    {
        return muid;
    }
    public void setEnerclassid(Integer enerclassid)
    {
        this.enerclassid = enerclassid;
    }
 
    public Integer getEnerclassid()
    {
        return enerclassid;
    }
    public void setEnersno(String enersno)
    {
        this.enersno = enersno;
    }
 
    public String getEnersno()
    {
        return enersno;
    }
    public void setIsstorage(Integer isstorage)
    {
        this.isstorage = isstorage;
    }
 
    public Integer getIsstorage()
    {
        return isstorage;
    }
    public void setNote(String note)
    {
        this.note = note;
    }
 
    public String getNote()
    {
        return note;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("oprMan", getOprMan())
            .append("oprTime", getOprTime())
            .append("modMan", getModMan())
            .append("modTime", getModTime())
            .append("enerid", getEnerid())
            .append("enername", getEnername())
            .append("muid", getMuid())
            .append("enerclassid", getEnerclassid())
            .append("enersno", getEnersno())
            .append("isstorage", getIsstorage())
            .append("note", getNote())
            .toString();
    }
}