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 19:35
11  */
12 public class EM_CLOTHES_COLOR extends NetSDKLib.SdkStructure {
13
14     /**
15      *  未知
16      */
17     public static final int                    EM_CLOTHES_COLOR_UNKNOWN = 0;
18     /**
19      *  白色
20      */
21     public static final int                    EM_CLOTHES_COLOR_WHITE = 1;
22     /**
23      *  橙色
24      */
25     public static final int                    EM_CLOTHES_COLOR_ORANGE = 2;
26     /**
27      *  粉色
28      */
29     public static final int                    EM_CLOTHES_COLOR_PINK = 3;
30     /**
31      *  黑色
32      */
33     public static final int                    EM_CLOTHES_COLOR_BLACK = 4;
34     /**
35      *  红色
36      */
37     public static final int                    EM_CLOTHES_COLOR_RED = 5;
38     /**
39      *  黄色
40      */
41     public static final int                    EM_CLOTHES_COLOR_YELLOW = 6;
42     /**
43      *  灰色
44      */
45     public static final int                    EM_CLOTHES_COLOR_GRAY = 7;
46     /**
47      *  蓝色
48      */
49     public static final int                    EM_CLOTHES_COLOR_BLUE = 8;
50     /**
51      *  绿色 
52      */
53     public static final int                    EM_CLOTHES_COLOR_GREEN = 9;
54     /**
55      *  紫色
56      */
57     public static final int                    EM_CLOTHES_COLOR_PURPLE = 10;
58     /**
59      *  棕色
60      */
61     public static final int                    EM_CLOTHES_COLOR_BROWN = 11;
62     /**
63      *  深橙色
64      */
65     public static final int                    EM_CLOTHES_COLOR_DARKORANGE = 12;
66     /**
67      *  其他颜色(该选项设备协议已不支持, 此处为了兼容保留)
68      */
69     public static final int                    EM_CLOTHES_COLOR_OTHER = 13;
70     /**
71      *  银色
72      */
73     public static final int                    EM_CLOTHES_COLOR_SILVER = 14;
74     /**
75      *  暗紫罗兰色
76      */
77     public static final int                    EM_CLOTHES_COLOR_DARKVIOLET = 15;
78     /**
79      *  栗色
80      */
81     public static final int                    EM_CLOTHES_COLOR_MARRON = 16;
82     /**
83      *  暗灰色
84      */
85     public static final int                    EM_CLOTHES_COLOR_DIMGRAY = 17;
86     /**
87      *  白烟色
88      */
89     public static final int                    EM_CLOTHES_COLOR_WHITESMOKE = 18;
90     /**
91      *  浅玫瑰色
92      */
93     public static final int                    EM_CLOTHES_COLOR_MISTYROSE = 19;
94     /**
95      *  番茄红色
96      */
97     public static final int                    EM_CLOTHES_COLOR_TOMATO = 20;
98     /**
99      *  橄榄色
100      */
101     public static final int                    EM_CLOTHES_COLOR_OLIVE = 21;
102     /**
103      *  金色
104      */
105     public static final int                    EM_CLOTHES_COLOR_GLOD = 22;
106     /**
107      *  暗橄榄绿色
108      */
109     public static final int                    EM_CLOTHES_COLOR_DARKOLIVEGREEN = 23;
110     /**
111      *  黄绿色
112      */
113     public static final int                    EM_CLOTHES_COLOR_CHARTREUSE = 24;
114     /**
115      *  绿黄色
116      */
117     public static final int                    EM_CLOTHES_COLOR_GREENYELLOW = 25;
118     /**
119      *  森林绿色
120      */
121     public static final int                    EM_CLOTHES_COLOR_FORESTGREEN = 26;
122     /**
123      *  海洋绿色
124      */
125     public static final int                    EM_CLOTHES_COLOR_SEAGREEN = 27;
126     /**
127      *  深天蓝色
128      */
129     public static final int                    EM_CLOTHES_COLOR_DEEPSKYBLUE = 28;
130     /**
131      *  青色
132      */
133     public static final int                    EM_CLOTHES_COLOR_CYAN = 29;
134     /**
135      *  浅绿色
136      */
137     public static final int                    EM_CLOTHES_COLOR_LIGHTGREEN = 30;
138 }