houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5
6 /**
7  * 检测符合要求的厨师服颜色不报警
8  * 
9  * @author : 260611
10  * @since : Created in 2021/10/19 20:18
11  */
12 public class EM_CFG_CHEF_CLOTHES_COLORS extends NetSDKLib.SdkStructure {
13
14     /**
15      *  未知
16      */
17     public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_UNKNOWN = 0;
18     /**
19      *  黑色
20      */
21     public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_BLACK = 1;
22     /**
23      *  白色        
24      */
25     public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_WHITE = 2;
26     /**
27      *  红色
28      */
29     public static final int                    EM_CFG_CHEF_CLOTHES_COLORS_RED = 3;
30 }