package com.example.utils; /** * @Description 封装API的错误码 * @Author JacksonTu * @Date 2020/3/28 16:26 */ public interface IErrorCode { Integer getCode(); String getMessage(); }