¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yssh.entity; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @ApiModel(value = "溯æºçæµæ°æ®",description = "溯æºçæµæ°æ®") |
| | | public class SuYuanMonitorData implements Serializable{ |
| | | |
| | | private static final long serialVersionUID = -7472189043893753483L; |
| | | @ApiModelProperty(value = "主é®") |
| | | private String id; |
| | | @ApiModelProperty(value = "æ°å¼") |
| | | private Double value; |
| | | @ApiModelProperty(value = "æ¶é´") |
| | | private Integer time; |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Double getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setValue(Double value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | public Integer getTime() { |
| | | return time; |
| | | } |
| | | |
| | | public void setTime(Integer time) { |
| | | this.time = time; |
| | | } |
| | | } |