zhanghua
2024-09-28 7873c6f56380d28e1ae6958f77a84081797c817f
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
package com.dahua.netsdk.lib.enumeration;
 
import com.dahua.netsdk.lib.NetSDKLib;
 
 
/**
 * 温度单位
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 20:21
 */
public class EM_TEMPERATURE_UNIT extends NetSDKLib.SdkStructure {
    /**
     *  未知
     */
    public static final int   EM_TEMPERATURE_UNKNOWN = -1;
    /**
     *  摄氏度
     */
    public static final int   EM_TEMPERATURE_CENTIGRADE = 0;
    /**
     *  华氏度
     */
    public static final int   EM_TEMPERATURE_FAHRENHEIT = 1;
    /**
     *  开尔文
     */
    public static final int   EM_TEMPERATURE_KELVIN = 2;
}