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
package com.iailab.netsdk.lib.enumeration;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
 
/**
 * 检测符合要求的厨师服颜色不报警
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 20:18
 */
public class EM_CFG_CHEF_CLOTHES_COLORS extends NetSDKLib.SdkStructure {
 
    /**
     *  未知
     */
    public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_UNKNOWN = 0;
    /**
     *  黑色
     */
    public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_BLACK = 1;
    /**
     *  白色        
     */
    public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_WHITE = 2;
    /**
     *  红色
     */
    public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_RED = 3;
}