ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
package com.zhitan.basicdata.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 【请填写功能名称】对象 sys_energy
 *
 * @author ZhiTan
 * @date 2024-10-15
 */
@TableName("sys_energy")
public class SysEnergy extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 能源名称 */
    @Excel(name = "能源名称")
    private String enername;
 
    /** 计量单位 */
    @Excel(name = "计量单位")
    private String muid;
 
    @TableField(exist = false)
    private String muidString;
 
    /** 能源类别ID */
    @Excel(name = "能源类别ID")
    private Integer enerclassid;
 
    /** 能源编号 */
    @Excel(name = "能源编号")
    private String enersno;
 
    /** 是否存储、0为是、1为否 */
    @Excel(name = "是否存储、0为是、1为否")
    private String isstorage;
 
    /** 能源类型 */
    @Excel(name = "能源类型")
    @TableField(exist = false)
    private String enerclassname;
 
    /** 是否储存(字符串) */
    @TableField(exist = false)
    private String isstorageString;
 
    /** 操作人 */
    @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;
 
    /** 备注 */
    @Excel(name = "备注")
    private String note;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private Integer enerid;
 
    /** 等价折标系数 */
    @Excel(name = "等价折标系数")
    private BigDecimal coefficient;
 
    //折标系数note
    @TableField(exist = false)
    private String coefficientnote;
 
    /** 折标系数执行日期 */
    @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
    @TableField(exist = false)
    private Date coefficientexecdate;
 
    /** 执行日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "执行日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date execdate;
 
    /** 单价 */
    @Excel(name = "单价")
    private BigDecimal price;
 
    /** 排放因子 */
    @Excel(name = "排放因子")
    private BigDecimal emissionFactors;
 
        
    public void setEnername(String enername)
    {
        this.enername = enername;
    }
 
    public String getEnername()
    {
        return enername;
    }
        
    public void setMuid(String muid)
    {
        this.muid = muid;
    }
 
    public String 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(String isstorage)
    {
        this.isstorage = isstorage;
    }
 
    public String getIsstorage()
    {
        return isstorage;
    }
        
    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 setNote(String note)
    {
        this.note = note;
    }
 
    public String getNote()
    {
        return note;
    }
        
    public void setEnerid(Integer enerid)
    {
        this.enerid = enerid;
    }
 
    public Integer getEnerid()
    {
        return enerid;
    }
        
    public void setCoefficient(BigDecimal coefficient)
    {
        this.coefficient = coefficient;
    }
 
    public BigDecimal getCoefficient()
    {
        return coefficient;
    }
        
    public void setExecdate(Date execdate)
    {
        this.execdate = execdate;
    }
 
    public Date getExecdate()
    {
        return execdate;
    }
        
    public void setPrice(BigDecimal price)
    {
        this.price = price;
    }
 
    public BigDecimal getPrice()
    {
        return price;
    }
        
    public void setEmissionFactors(BigDecimal emissionFactors)
    {
        this.emissionFactors = emissionFactors;
    }
 
    public BigDecimal getEmissionFactors()
    {
        return emissionFactors;
    }
 
    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 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 String getMuidString() {
        return muidString;
    }
 
    public void setMuidString(String muidString) {
        this.muidString = muidString;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("enername", getEnername())
            .append("muid", getMuid())
            .append("enerclassid", getEnerclassid())
            .append("enersno", getEnersno())
            .append("isstorage", getIsstorage())
            .append("oprMan", getOprMan())
            .append("oprTime", getOprTime())
            .append("modMan", getModMan())
            .append("modTime", getModTime())
            .append("note", getNote())
            .append("enerid", getEnerid())
            .append("coefficient", getCoefficient())
            .append("execdate", getExecdate())
            .append("price", getPrice())
            .append("emissionFactors", getEmissionFactors())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
        .toString();
    }
}