提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 291189 |
|
8 |
* @description 回调的温湿度信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/12/02 10:25:56 |
|
11 |
*/ |
|
12 |
public class NET_HYGROTHERMOGRAPH_INFO extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
/ 温度, 单位: ℃ |
|
15 |
*/ |
|
16 |
public float fTemperature; |
|
17 |
/** |
|
18 |
/ 湿度 单位: %rh |
|
19 |
*/ |
|
20 |
public float fHumidity; |
|
21 |
/** |
|
22 |
/ 上报通道号 |
|
23 |
*/ |
|
24 |
public int nChannel; |
|
25 |
/** |
|
26 |
/ 保留字节 |
|
27 |
*/ |
|
28 |
public byte[] szResvered=new byte[1020]; |
|
29 |
|
|
30 |
public NET_HYGROTHERMOGRAPH_INFO(){ |
|
31 |
} |
|
32 |
} |