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
package com.dingzhuo.energy.project.electricity.domain;
 
import com.dingzhuo.energy.framework.aspectj.lang.annotation.Excel;
import com.dingzhuo.energy.framework.web.domain.BaseEntity;
import com.dingzhuo.energy.project.energyStatistics.domain.EnergyConsumption;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * electricityPrice对象 electricity_price
 *
 * @author sys
 * @date 2020-02-18
 */
public class electricity implements Serializable {
    private static final long serialVersionUID = -2777479013884125925L;
    private String lable;
    private String prop;
    private String maxValue;
    private String minValue;
    private String dataTime;
    private  String value;
    private  String price;
    private String valueProp;
    private String priceProp;
    private String name;
    private List<electricity> childNodes =new ArrayList<>();
 
    public List<electricity> getChildNodes() {
        return childNodes;
    }
 
    public void setChildNodes(List<electricity> childNodes) {
        this.childNodes = childNodes;
    }
 
    public void addChildNode(electricity childNode){
        this.childNodes.add(childNode);
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getLable() {
        return lable;
    }
 
    public void setLable(String lable) {
        this.lable = lable;
    }
 
    public String getProp() {
        return prop;
    }
 
    public void setProp(String prop) {
        this.prop = prop;
    }
 
    public String getMaxValue() {
        return maxValue;
    }
 
    public void setMaxValue(String maxValue) {
        this.maxValue = maxValue;
    }
 
    public String getMinValue() {
        return minValue;
    }
 
    public void setMinValue(String minValue) {
        this.minValue = minValue;
    }
 
    public String getDataTime() {
        return dataTime;
    }
 
    public void setDataTime(String dataTime) {
        this.dataTime = dataTime;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getValueProp() {
        return valueProp;
    }
 
    public void setValueProp(String valueProp) {
        this.valueProp = valueProp;
    }
 
    public String getPriceProp() {
        return priceProp;
    }
 
    public void setPriceProp(String priceProp) {
        this.priceProp = priceProp;
    }
}