baizonghao
2023-03-04 5e07f160bb34e72186607556fff8841688a1f47a
1
2
3
4
5
6
7
8
9
10
package com.ycl.api;
 
/**
 * 封装API的错误码
 */
public interface IErrorCode {
    long getCode();
 
    String getMessage();
}