修改静态名称

This commit is contained in:
wanggeng888 2021-06-15 17:39:59 +08:00
parent 14157edb96
commit 3651261bcd

View File

@ -35,7 +35,7 @@ public class CheckDetailTable {
* 保存网格员内容结构为 {year:{areaId:{具体内容}}}
*/
public Map<String, Map<String, Map<String, Object>>> gridDetailTableMap = new ConcurrentHashMap<>();
private static CheckDetailTable checkDetailTable = CheckDetailTableBuilder.checkDetailTable;
private static CheckDetailTable checkDetailTable = CheckDetailTableBuilder.CHECK_DETAIL_TABLE;
private ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(2, 10, 1L, TimeUnit.MINUTES, new LinkedBlockingQueue<>());
private ICountService countService;
@ -169,6 +169,6 @@ public class CheckDetailTable {
}
private static class CheckDetailTableBuilder {
public final static CheckDetailTable checkDetailTable = new CheckDetailTable();
public final static CheckDetailTable CHECK_DETAIL_TABLE = new CheckDetailTable();
}
}