dashboard
repositories
filestore
activity
search
login
main
/
hazmat_manage
危化品全生命周期管理后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改
“djh”
2025-10-16
65ca50935315a89e219b7c974caf95dc28895ffc
[hazmat_manage.git]
/
hazmat-common
/
src
/
main
/
java
/
com
/
gkhy
/
hazmat
/
common
/
api
/
IErrorCode.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.hazmat.common.api;
/**
* API返回码接口
*/
public interface IErrorCode {
/**
* 返回码
*/
int getCode();
/**
* 返回信息
*/
String getMessage();
}