浏览代码

副本元

xdd 5 天之前
父节点
当前提交
41bfe29f0f

+ 2 - 1
fs-service-system/src/main/java/com/fs/company/cache/impl/CompanyTagCacheServiceImpl.java

@@ -51,7 +51,8 @@ public class CompanyTagCacheServiceImpl implements ICompanyTagCacheService {
     @Override
     public String findUserTagByUserId(Long userId,Long companyUserId) {
         TagConbKey tagConbKey = new TagConbKey();
-
+        tagConbKey.setUserId(userId);
+        tagConbKey.setCompanyUserId(companyUserId);
         return COMPANY_TAG_CACHE.get(tagConbKey,e->
                 companyTagService.findUserTagByUserId(tagConbKey.getUserId(),tagConbKey.getCompanyUserId()));
     }