dashboard
repositories
filestore
activity
search
login
main
/
multi_system
多体系后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改人员角色绑定
heheng
2025-07-31
826976ff37a83fc8fec64aeb19727d69afc6fcfa
[multi_system.git]
/
multi-common
/
src
/
main
/
java
/
com
/
gkhy
/
exam
/
common
/
api
/
IErrorCode.java
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();
}