houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
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
package com.netsdk.lib.enumeration;
 
import com.netsdk.lib.NetSDKLib;
 
 
/**
 * 衣服图案
 * 
 * @author : 260611
 * @since : Created in 2021/10/19 19:35
 */
public class EM_CLOTHES_PATTERN extends NetSDKLib.SdkStructure {
 
    /**
     *  未知
     */
    public static final int                    EM_CLOTHES_PATTERN_UNKNOWN = 0;
    /**
     *  纯色
     */
    public static final int                    EM_CLOTHES_PATTERN_PURE = 1;
    /**
     *  条纹
     */
    public static final int                    EM_CLOTHES_PATTERN_STRIPE = 2;
    /**
     *  图案
     */
    public static final int                    EM_CLOTHES_PATTERN_PATTERN = 3;
    /**
     *  缝隙
     */
    public static final int                    EM_CLOTHES_PATTERN_GAP = 4;
    /**
     *  格子
     */
    public static final int                    EM_CLOTHES_PATTERN_LATTICE = 5;
    /**
     *  拼接
     */
    public static final int                    EM_CLOTHES_PATTERN_SPLITJOIN = 6;
    /**
     *  碎花
     */
    public static final int                    EM_CLOTHES_PATTERN_FLORAL = 7;
}