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
/
ExchangeEnum.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 ExchangeEnum {
HUOBI("huobi");
private final String code;
ExchangeEnum(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}