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
package com.dingzhuo.energy.project.electricity.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;
 
/**
 * electricity对象 time_period_price
 * 
 * @author sys
 * @date 2020-02-19
 */
public class TimePeriodPrice extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 生效日期 */
    private Date effectiveDate;
 
    /** 时段 */
    @Excel(name = "时段")
    private String timePeriod;
 
    /** 单价 */
    @Excel(name = "单价")
    private String price;
    private Double prices;
    private String electricityName;
    private String dictType;//字典类型
    private String dictValue;//字典值
    private String dictLabel;//字典名称
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setEffectiveDate(Date effectiveDate) 
    {
        this.effectiveDate = effectiveDate;
    }
 
    public Date getEffectiveDate() 
    {
        return effectiveDate;
    }
    public void setTimePeriod(String timePeriod) 
    {
        this.timePeriod = timePeriod;
    }
 
    public String getTimePeriod() 
    {
        return timePeriod;
    }
    public void setPrice(String price)
    {
        this.price = price;
    }
 
    public String getPrice()
    {
        return price;
    }
 
    public Double getPrices() {
        return prices;
    }
 
    public void setPrices(Double prices) {
        this.prices = prices;
    }
 
    public String getDictType() {
        return dictType;
    }
    public void setDictType(String dictType) {
        this.dictType = dictType;
    }
    public String getDictValue() {
        return dictValue;
    }
    public void setDictValue(String dictValue) {
        this.dictValue = dictValue;
    }
    public String getDictLabel() {
        return dictLabel;
    }
    public void setDictLabel(String dictLabel) {
        this.dictLabel = dictLabel;
    }
 
    public String getElectricityName() {
        return electricityName;
    }
 
    public void setElectricityName(String electricityName) {
        this.electricityName = electricityName;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("effectiveDate", getEffectiveDate())
            .append("timePeriod", getTimePeriod())
            .append("price", getPrice())
            .append("dictType", getDictType())
            .append("dictValue", getDictValue())
            .append("dictLabel", getDictLabel())
            .append("electricityName", getElectricityName())
            .toString();
    }
}