package com.doumee.core.haikang.model.param.respose; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
@Data 
 | 
public class TemperatureHumidityDataResponse { 
 | 
  
 | 
 @ApiModelProperty(value = "名称") 
 | 
 private String  name    ;//String    false    设备名称 
 | 
  
 | 
 @ApiModelProperty(value = "最低温度") 
 | 
 private String  alarmLow    ;//String    false    最低温度 
 | 
  
 | 
 @ApiModelProperty(value = "最高温度") 
 | 
 private String  alarmHigh    ;//String    false    最高温度 
 | 
  
 | 
 @ApiModelProperty(value = "当前值") 
 | 
 private String  latestValue    ;//String    false 当前值 
 | 
  
 | 
 private String  indexCode    ;//String    false 
 | 
  
 | 
 @ApiModelProperty(value = "类型:currTemperature 温度  currHumidity 湿度") 
 | 
 private String  sensorType    ;//String    false 
 | 
  
 | 
 private String  parentIndexCode    ;//String    false 
 | 
  
 | 
 @ApiModelProperty(value = "单位") 
 | 
 private String  unit    ;//String    false 单位 
 | 
  
 | 
    
 | 
} 
 |