提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.enumeration; |
H |
2 |
|
|
3 |
import com.iailab.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_PATTERN extends NetSDKLib.SdkStructure { |
|
13 |
|
|
14 |
/** |
|
15 |
* 未知 |
|
16 |
*/ |
|
17 |
public static final int EM_CLOTHES_PATTERN_UNKNOWN = 0; |
|
18 |
/** |
|
19 |
* 纯色 |
|
20 |
*/ |
|
21 |
public static final int EM_CLOTHES_PATTERN_PURE = 1; |
|
22 |
/** |
|
23 |
* 条纹 |
|
24 |
*/ |
|
25 |
public static final int EM_CLOTHES_PATTERN_STRIPE = 2; |
|
26 |
/** |
|
27 |
* 图案 |
|
28 |
*/ |
|
29 |
public static final int EM_CLOTHES_PATTERN_PATTERN = 3; |
|
30 |
/** |
|
31 |
* 缝隙 |
|
32 |
*/ |
|
33 |
public static final int EM_CLOTHES_PATTERN_GAP = 4; |
|
34 |
/** |
|
35 |
* 格子 |
|
36 |
*/ |
|
37 |
public static final int EM_CLOTHES_PATTERN_LATTICE = 5; |
|
38 |
/** |
|
39 |
* 拼接 |
|
40 |
*/ |
|
41 |
public static final int EM_CLOTHES_PATTERN_SPLITJOIN = 6; |
|
42 |
/** |
|
43 |
* 碎花 |
|
44 |
*/ |
|
45 |
public static final int EM_CLOTHES_PATTERN_FLORAL = 7; |
|
46 |
} |