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