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
package com.zhitan.realtimedata.domain;
 
import com.zhitan.common.enums.Quality;
import com.zhitan.common.enums.TimeType;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 周期数据项.
 */
@ApiModel(value = "dataItem对象")
public class DataItem implements Serializable {
  private static final long serialVersionUID = -2777479013884125925L;
 
  @ApiModelProperty(value = "指标id")
  private String indexId;
  @ApiModelProperty(value = "指标库id")
  private String indexStorageId;
  @ApiModelProperty(value = "指标code")
  private String indexCode;
  @ApiModelProperty(value = "指标名称")
  private String indexName;
  @ApiModelProperty(value = "开始时间")
  private Date beginTime;
  @ApiModelProperty(value = "结束时间")
  private Date endTime;
  @ApiModelProperty(value = "日期")
  private Date dataTime;
  @ApiModelProperty(value = "时间类型编码")
  private String timeCode;
  @ApiModelProperty(value = "时间类型")
  private TimeType timeType;
  @ApiModelProperty(value = "值")
  private Double value;
  @ApiModelProperty(value = "质量")
  private Quality quality;
  @ApiModelProperty(value = "")
  private String unitId;
  @ApiModelProperty(value = "创建时间")
  private Date createTime;
  @ApiModelProperty(value = "更新时间")
  private Date updateTime;
  @ApiModelProperty(value = "备注")
  private String remark;
 
  public String getIndexId() {
    return indexId;
  }
 
  public void setIndexId(String indexId) {
    this.indexId = indexId;
  }
 
  public String getIndexStorageId() {
    return indexStorageId;
  }
 
  public void setIndexStorageId(String indexStorageId) {
    this.indexStorageId = indexStorageId;
  }
 
  public String getIndexCode() {
    return indexCode;
  }
 
  public void setIndexCode(String indexCode) {
    this.indexCode = indexCode;
  }
 
  public String getIndexName() {
    return indexName;
  }
 
  public void setIndexName(String indexName) {
    this.indexName = indexName;
  }
 
  public Date getBeginTime() {
    return beginTime;
  }
 
  public void setBeginTime(Date beginTime) {
    this.beginTime = beginTime;
  }
 
  public Date getEndTime() {
    return endTime;
  }
 
  public void setEndTime(Date endTime) {
    this.endTime = endTime;
  }
 
  public Date getDataTime() {
    return dataTime;
  }
 
  public void setDataTime(Date dataTime) {
    this.dataTime = dataTime;
  }
 
  public String getTimeCode() {
    return timeCode;
  }
 
  public void setTimeCode(String timeCode) {
    this.timeCode = timeCode;
  }
 
  public TimeType getTimeType() {
    return timeType;
  }
 
  public void setTimeType(TimeType timeType) {
    this.timeType = timeType;
  }
 
  public Double getValue() {
    return value;
  }
 
  public void setValue(Double value) {
    this.value = value;
  }
 
  public Quality getQuality() {
    return quality;
  }
 
  public void setQuality(Quality quality) {
    this.quality = quality;
  }
 
  public String getUnitId() {
    return unitId;
  }
 
  public void setUnitId(String unitId) {
    this.unitId = unitId;
  }
 
  public Date getCreateTime() {
    return createTime;
  }
 
  public void setCreateTime(Date createTime) {
    this.createTime = createTime;
  }
 
  public Date getUpdateTime() {
    return updateTime;
  }
 
  public void setUpdateTime(Date updateTime) {
    this.updateTime = updateTime;
  }
 
  public String getRemark() {
    return remark;
  }
 
  public void setRemark(String remark) {
    this.remark = remark;
  }
}