fuliqi
2025-02-06 7c23177f6a10c43479e0fb77ac53664ba0c0f9f3
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
package com.ycl.api.DH.lib.enumeration;
 
public enum EM_SUPPORT_FAST_IMPORT_TYPE {
    /**
     * 未知
     */
    EM_SUPPORT_FAST_IMPORT_UNKNOWN(-1),
    /**
     * 不支持
     */
    EM_SUPPORT_FAST_IMPORT_NONSUPPORT(0),
    /**
     * 支持
     */
    EM_SUPPORT_FAST_IMPORT_SUPPORT(1);
 
    private int type;
 
    EM_SUPPORT_FAST_IMPORT_TYPE(int type) {
        this.type=type;
    }
 
    public int getType(){
        return type;
    }
}