houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5
6 /**
7  * EM_CLOTHES_TYPE
8  * 
9  * @author : 260611
10  * @since : Created in 2021/10/19 20:21
11  */
12 public class EM_CLOTHES_TYPE extends NetSDKLib.SdkStructure {
13
14     /**
15      * 未知
16      */
17     public static final int                    EM_CLOTHES_TYPE_UNKNOWN = 0;
18     /**
19      * 长袖
20      */
21     public static final int                    EM_CLOTHES_TYPE_LONG_SLEEVE = 1;
22     /**
23      * 短袖
24      */
25     public static final int                    EM_CLOTHES_TYPE_SHORT_SLEEVE = 2;
26     /**
27      * 长裤
28      */
29     public static final int                    EM_CLOTHES_TYPE_TROUSERS = 3;
30     /**
31      * 短裤
32      */
33     public static final int                    EM_CLOTHES_TYPE_SHORTS = 4;
34     /**
35      * 裙子
36      */
37     public static final int                    EM_CLOTHES_TYPE_SKIRT = 5;
38     /**
39      * 背心
40      */
41     public static final int                    EM_CLOTHES_TYPE_WAISTCOAT = 6;
42     /**
43      * 超短裤
44      */
45     public static final int                    EM_CLOTHES_TYPE_MINIPANTS = 7;
46     /**
47      * 超短裙
48      */
49     public static final int                    EM_CLOTHES_TYPE_MINISKIRT = 8;
50 }