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
33
34
35
36
37
38
package com.netsdk.lib.enumeration;
 
import com.netsdk.lib.NetSDKLib;
 
 
/**
 * 工装检测报警规则类型
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 19:21
 */
public class EM_EVENT_WORKCLOTHES_RULE_TYPE extends NetSDKLib.SdkStructure {
 
    /**
     *  未知
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_UNKNWON = 0;
    /**
     *  安全帽
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_HELMET = 1;
    /**
     *  工作服
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_CLOTHES = 2;
    /**
     *  工作裤
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_PANTS = 3;
    /**
     *  防护服
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_PROTECTIVESUIT = 4;
    /**
     *  鞋套
     */
    public static final int                    EM_EVENT_WORKCLOTHES_RULE_SHOESCOVER = 5;
}