1
zj
2024-07-21 5c1e682edc2bc6c89cf0f34f93a438d1da274e64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.example.enums;
 
public enum Bourse {
 
    MEXC("mexc"),
 
    GATE("gate"),
 
    BITGET("bitget"),
 
    KUCOIN("kucoin");
 
    private String code;
 
    Bourse(String code) {
        this.code = code;
    }
}