Helius
2021-05-25 1dbf829953a2bbca1522a48440223fde45518b46
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xcong.excoin.rabbit.pricequeue.whole;
 
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
 
/**
 * @author wzy
 * @date 2021-01-27
 **/
public class WholeDataQueue {
 
    public static Map<String, WholePriceDataModel> MAP = new ConcurrentHashMap<String, WholePriceDataModel>();
}