peter
2025-07-08 83f9014a75f572154ae7732f0fc78d6467edde93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.yami.trading.huobi.data.websocket.constant.enums;
 
public enum ExchangeEnum {
 
    HUOBI("huobi");
 
    private final String code;
 
    ExchangeEnum(String code) {
        this.code = code;
    }
 
    public String getCode() {
        return code;
    }
 
}