|  |  |  | 
|---|
|  |  |  | package com.zy.acs.manager.core.cache; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.zy.acs.manager.core.domain.CodeStepDto; | 
|---|
|  |  |  | import com.zy.acs.manager.core.domain.type.JobType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  | import java.util.concurrent.ConcurrentHashMap; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public class CoreCache { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final Map<Long, Integer> AGV_BACKPACK_CACHE = new ConcurrentHashMap<>(); | 
|---|
|  |  |  | public static final Map<Long, Integer> AGV_BACKPACK_USED_CACHE = new ConcurrentHashMap<>(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final Map<String, JobType> AGV_MOCK_JOB_CACHE = new ConcurrentHashMap<>(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final Map<Long, CodeStepDto> AGV_MOCK_STEP_CACHE = new ConcurrentHashMap<>(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|