DataSourcesEnum.java 354 Bytes
Newer Older
zp's avatar
zp committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.tanpu.fund.enums;

/**
 * @author: zhoupeng
 * @email: zhoupeng_08@163.com
 */
public enum DataSourcesEnum {
    TANPU(1, "探普产品"),
    PAIPAI(2, "私募排排"),
    ;
    private Integer code;

    private String value;

    DataSourcesEnum(Integer code, String value) {
        this.code = code;
        this.value = value;
    }
}