提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
|
|
7 |
/** |
|
8 |
* @author 291189 |
|
9 |
* @description 冷(最低的温度)、热(最高的温度)点信息 |
|
10 |
* @origin autoTool |
|
11 |
* @date 2023/08/07 13:51:18 |
|
12 |
*/ |
|
13 |
public class NET_RADIOMETRY_CURRENTHOTCOLDSPOT_INFO extends NetSDKLib.SdkStructure { |
|
14 |
/** |
|
15 |
热点坐标,范围:【0~8191】 |
|
16 |
*/ |
|
17 |
public NetSDKLib.NET_POINT stuHotPoint=new NetSDKLib.NET_POINT(); |
|
18 |
/** |
|
19 |
冷点坐标,范围:【0~8191】 |
|
20 |
*/ |
|
21 |
public NetSDKLib.NET_POINT stuColdPoint=new NetSDKLib.NET_POINT(); |
|
22 |
/** |
|
23 |
热点温度值(最高的温度) |
|
24 |
*/ |
|
25 |
public float fHotSpotValue; |
|
26 |
/** |
|
27 |
冷点温度值(最低的温度) |
|
28 |
*/ |
|
29 |
public float fColdSpotValue; |
|
30 |
/** |
|
31 |
温度单位,0:摄氏度 1:华氏度 |
|
32 |
*/ |
|
33 |
public int nTemperatrueUnit; |
|
34 |
/** |
|
35 |
保留字节 |
|
36 |
*/ |
|
37 |
public byte[] byReserved=new byte[256]; |
|
38 |
|
|
39 |
public NET_RADIOMETRY_CURRENTHOTCOLDSPOT_INFO(){ |
|
40 |
} |
|
41 |
} |