| | |
| | | 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; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "指标id") |
| | | private String indexId; |
| | | @ApiModelProperty(value = "指标库id") |
| | | private String indexStorageId; |
| | | @ApiModelProperty(value = "能源品种") |
| | | private String energyType; |
| | | @ApiModelProperty(value = "指标code") |
| | | private String indexCode; |
| | | @ApiModelProperty(value = "指标名称") |
| | |
| | | @ApiModelProperty(value = "时间类型编码") |
| | | private String timeCode; |
| | | @ApiModelProperty(value = "时间类型") |
| | | private TimeType timeType; |
| | | private String timeType; |
| | | @ApiModelProperty(value = "值") |
| | | private Double value; |
| | | @ApiModelProperty(value = "质量") |
| | |
| | | this.indexId = indexId; |
| | | } |
| | | |
| | | public String getIndexStorageId() { |
| | | return indexStorageId; |
| | | public String getEnergyType() { |
| | | return energyType; |
| | | } |
| | | |
| | | public void setIndexStorageId(String indexStorageId) { |
| | | this.indexStorageId = indexStorageId; |
| | | public void setEnergyType(String energyType) { |
| | | this.energyType = energyType; |
| | | } |
| | | |
| | | public String getIndexCode() { |
| | |
| | | this.timeCode = timeCode; |
| | | } |
| | | |
| | | public TimeType getTimeType() { |
| | | public String getTimeType() { |
| | | return timeType; |
| | | } |
| | | |
| | | public void setTimeType(TimeType timeType) { |
| | | public void setTimeType(String timeType) { |
| | | this.timeType = timeType; |
| | | } |
| | | |