dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
谷歌验证码
zj
2024-11-06
6f0c22dd9de33c38bb2c536937026e51b0b91b6e
[xinbi-new.git]
/
src
/
main
/
java
/
project
/
data
/
websocket
/
constant
/
enums
/
DepthStepEnum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package project.data.websocket.constant.enums;
public enum DepthStepEnum {
STEP0("step0"), STEP1("step1"), STEP2("step2"), STEP3("step3"), STEP4("step4"), STEP5("step5"),;
private final String step;
DepthStepEnum(String step) {
this.step = step;
}
public String getStep() {
return step;
}
}