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;
}
}
-
zp authoredf9a4de2a