heheng
2 days ago a3d63a4a7199d346e63039a8fd6490b12387fa4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.exam.common.api;
 
/**
 * API返回码接口
 */
public interface IErrorCode {
    /**
     * 返回码
     */
    int getCode();
 
    /**
     * 返回信息
     */
    String getMessage();
}