package com.iailab.netsdk.lib.enumeration;

import com.iailab.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;
}