소스 검색

副本元

xdd 5 일 전
부모
커밋
41bfe29f0f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      fs-service-system/src/main/java/com/fs/company/cache/impl/CompanyTagCacheServiceImpl.java

+ 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()));
     }