package com.syzb.common.constant; public enum RecommendOption { RECOMMEND(1, "添加推荐"), UN_RECOMMEND(2, "取消推荐"), ; public final Integer value; public final String name; RecommendOption(Integer value, String name) { this.value = value; this.name = name; } }