PoolEnum.java 528 Bytes
package com.xmh.es.match;

/**
 * .
 *
 * @author 谢明辉
 * @date 2020/11/25
 */
public enum PoolEnum {
    /**  */
    POOL_2K("test_pool_2k", 2000),
    POOL_5K("test_pool_5k", 5000),
    POOL_2W("test_pool_2w", 20000),
    POOL_10W("test_pool_10w", 100000),
    POOL_50W("test_pool_50w", 500000),
    POOL_100W("test_pool_100w", 1000000),
    POOL_200W("test_pool_200w", 2000000);

    public String name;
    public int num;

    PoolEnum(String name, int num) {
        this.name = name;
        this.num = num;
    }
}