Pu Zhibing
2025-02-19 81e2eb4dd2e27da3c4cc447d6aeb9150a5ff7464
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.web.tool;
 
 
import java.util.*;
 
/**
 * 缓存工具类
 */
public class CacheUtil {
 
    public static Map<String, String> markets = new HashMap<>();
 
    public static Set<Integer> securitiesIds = new HashSet<>();
 
    public static Map<String, Thread> threads = new HashMap<>();
 
 
    public static boolean tradingDay = false;
}