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
package com.dahua.netsdk.lib.enumeration;
 
import com.dahua.netsdk.lib.NetSDKLib;
 
 
/**
 * 加油口盖标示牌状态
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 19:50
 */
public class EM_FIRE_LANE_OILCAP_STATE extends NetSDKLib.SdkStructure {
    /**
     *  未知
     */
    public static final int   EM_FIRE_LANE_OILCAP_STATE_UNKNOWN = 0;
    /**
     *  打开
     */
    public static final int   EM_FIRE_LANE_OILCAP_STATE_OPEN = 1;
    /**
     *  关闭
     */
    public static final int   EM_FIRE_LANE_OILCAP_STATE_CLOSE = 2;
}