package com.yiboshi.science.base; /** * 基础枚举类 * * @author NEGI * @version 2019-04 */ public interface BaseEnum<T> { T getValue(); }