liukangdong
2024-12-13 0c51ea5f39e11279ccebbad241cbb09aa74ee1a2
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
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 = "类型:temp 温度  humidity 湿度")
 private String  sensorType    ;//String    false
 
 private String  parentIndexCode    ;//String    false
 
 @ApiModelProperty(value = "单位")
 private String  unit    ;//String    false 单位
 
   
}