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
package com.zhitan.dataitem.domain;
 
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.util.Date;
 
/**
 * stagseDataEntry对象 data_item
 * 
 * @author sys
 * @date 2020-03-25
 */
public class DataEntry extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    @Excel(name = "指标id")
    private String indexId;
 
    @Excel(name = "指标code")
    private String timeCode;
 
    @Excel(name = "值")
    private String value;
 
    @Excel(name = "开始时间")
    private Date beginTime;
 
    @Excel(name = "结束时间")
    private Date endTime;
 
    private String quality;
 
    @Excel(name = "时间类型")
    private String timeType;
 
    @Excel(name = "数据时间")
    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 setBeginTime(Date beginTime) 
    {
        this.beginTime = beginTime;
    }
 
    public String getValue() {return value;}
 
    public void setValue(String value) {this.value = value;}
 
    public void setQuality(String quality)
    {
        this.quality = quality;
    }
 
    public String getQuality() 
    {
        return quality;
    }
    public void setTimeType(String timeType) 
    {
        this.timeType = timeType;
    }
 
    public String getTimeType() 
    {
        return timeType;
    }
    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("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("indexId", getIndexId())
            .append("timeCode", getTimeCode())
            .append("beginTime", getBeginTime())
            .append("endTime", getEndTime())
            .append("quality", getQuality())
            .append("timeType", getTimeType())
            .append("value", getValue())
            .append("dataTime", getDataTime())
            .toString();
    }
}