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