不要忽视了BaseEnum在工程中的优势 cx_ 2025-03-26 4 阅读1分钟 public interface BaseEnum { /** * 获取编码 * @return 编码 */ Integer getCode(); /** * 获取描述 * * @return 描述 */ String getDesc(); }