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
package com.dingzhuo.energy.project.benchmarking.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;
 
/**
 * 对标对象 phase_benchmarking
 * 
 * @author sys
 * @date 2020-12-22
 */
public class PhaseBenchmarking extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private String indexId;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private String timeCode;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private String timeType;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private String value;
 
    /** $column.columnComment */
    @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
    private Date dataTime;
 
    public void setIndexId(String indexId) 
    {
        this.indexId = indexId;
    }
 
    public String getIndexId() 
    {
        return indexId;
    }
    public void setTimeCode(String timeCode) 
    {
        this.timeCode = timeCode;
    }
 
    public String getTimeCode() 
    {
        return timeCode;
    }
    public void setTimeType(String timeType) 
    {
        this.timeType = timeType;
    }
 
    public String getTimeType() 
    {
        return timeType;
    }
    public void setValue(String value) 
    {
        this.value = value;
    }
 
    public String getValue() 
    {
        return value;
    }
    public void setDataTime(Date dataTime) 
    {
        this.dataTime = dataTime;
    }
 
    public Date getDataTime() 
    {
        return dataTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("indexId", getIndexId())
            .append("timeCode", getTimeCode())
            .append("timeType", getTimeType())
            .append("value", getValue())
            .append("dataTime", getDataTime())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}