package com.gkhy.labRiskManage.infra.cache.service; import com.gkhy.labRiskManage.infra.cache.domain.CacheUserInfo; public interface UserCacheInfraService { CacheUserInfo getCacheUser(String userId); boolean putCacheUser(CacheUserInfo cacheUserInfo,String userId); boolean removeCacheUser(String userId); }