1234567891011121314151617181920212223 |
- package com.jg.common;
- /**
- * <p>
- * REST API 错误码接口
- * </p>
- *
- * @author lxp
- * @version V1.0
- * @since 2022/7/19 23:53
- */
- public interface ErrorCode {
- /**
- * 错误编码 -1、失败 0、成功
- */
- long getCode();
- /**
- * 错误描述
- */
- String getMessage();
- }
|