仪表盘
版本库
文件存储
活动
搜索
登录
jt
/
jt808-server
jt808协议服务器
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
init
18045010223
2025-07-07
0d3a683a0c97154b1f2e6657398664537e4e3e82
[jt/jt808-server.git]
/
commons
/
src
/
main
/
java
/
org
/
yzh
/
commons
/
model
/
APICode.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.yzh.commons.model;
/**
* 响应状态枚举类接口
* @author yezhihao
* https://gitee.com/yezhihao/jt808-server
*/
public interface APICode {
/** 状态码 */
int getCode();
/** 状态信息 */
String getMessage();
}