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
package com.netsdk.lib.enumeration;
 
import com.netsdk.lib.NetSDKLib;
 
 
/**
 * EM_CLOTHES_TYPE
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 20:21
 */
public class EM_CLOTHES_TYPE extends NetSDKLib.SdkStructure {
 
    /**
     * 未知
     */
    public static final int                    EM_CLOTHES_TYPE_UNKNOWN = 0;
    /**
     * 长袖
     */
    public static final int                    EM_CLOTHES_TYPE_LONG_SLEEVE = 1;
    /**
     * 短袖
     */
    public static final int                    EM_CLOTHES_TYPE_SHORT_SLEEVE = 2;
    /**
     * 长裤
     */
    public static final int                    EM_CLOTHES_TYPE_TROUSERS = 3;
    /**
     * 短裤
     */
    public static final int                    EM_CLOTHES_TYPE_SHORTS = 4;
    /**
     * 裙子
     */
    public static final int                    EM_CLOTHES_TYPE_SKIRT = 5;
    /**
     * 背心
     */
    public static final int                    EM_CLOTHES_TYPE_WAISTCOAT = 6;
    /**
     * 超短裤
     */
    public static final int                    EM_CLOTHES_TYPE_MINIPANTS = 7;
    /**
     * 超短裙
     */
    public static final int                    EM_CLOTHES_TYPE_MINISKIRT = 8;
}