dashboard
repositories
filestore
activity
search
login
main
/
multi_system
多体系后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
恢复日志展示
“djh”
2026-02-10
9d9f582738123dbbfc6a7b91bb16ff4e4bf9f8f2
[multi_system.git]
/
multi-common
/
src
/
main
/
java
/
com
/
gkhy
/
exam
/
common
/
enums
/
BusinessStatus.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.gkhy.exam.common.enums;
/**
* 操作状态
*
*
*/
public enum BusinessStatus
{
/**
* 成功
*/
SUCCESS,
/**
* 失败
*/
FAIL,
}