package com.jg.common; /** *

* REST API 错误码接口 *

* * @author lxp * @version V1.0 * @since 2022/7/19 23:53 */ public interface ErrorCode { /** * 错误编码 -1、失败 0、成功 */ long getCode(); /** * 错误描述 */ String getMessage(); }