package cc.mrbird.febs.common.enumerates; import lombok.Getter; /** * * 1-静态收益 2-直推奖 3-代理收益 4-排名收益 5-总监收益 6-社区点补 7-一代收益 8-提现 9-转增 10-支付 11-退款 * @author wzy * @date 2021-09-24 **/ @Getter public enum MoneyFlowTypeNewEnum { STATIC_BONUS(1,"投注"), DYNAMIC_ACHIEVE(2,"中奖"), AGENT_BONUS(3,"充值"), RANK_BONUS(4,"提现"); private final int value; private final String description; MoneyFlowTypeNewEnum(int value,String description) { this.value = value; this.description = description; } }