|
@@ -26,6 +26,7 @@ import com.fs.course.vo.newfs.FsCourseAnalysisCountVO;
|
|
|
import com.fs.course.vo.newfs.FsCourseAnalysisVO;
|
|
|
import com.fs.course.vo.newfs.FsUserCourseVideoPageListVO;
|
|
|
import com.fs.his.vo.OptionsVO;
|
|
|
+import com.fs.qw.cache.IQwExternalContactCacheService;
|
|
|
import com.fs.qw.param.QwFsUserParam;
|
|
|
import com.fs.qw.vo.QwFsUserVO;
|
|
|
import com.fs.store.domain.*;
|
|
@@ -108,6 +109,9 @@ public class FsUserServiceImpl implements IFsUserService
|
|
|
|
|
|
@Autowired
|
|
|
private ICompanyTagCacheService companyTagCacheService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IQwExternalContactCacheService qwExternalContactCacheService;
|
|
|
/**
|
|
|
* 查询用户
|
|
|
*
|
|
@@ -492,6 +496,12 @@ public class FsUserServiceImpl implements IFsUserService
|
|
|
item.setTagIds(userTagByUserId);
|
|
|
item.setTag(String.join(",",tagNames));
|
|
|
}
|
|
|
+
|
|
|
+ // 是否宠粉
|
|
|
+ Integer isRepeat = qwExternalContactCacheService.selectQwIsRepeat(item.getUserId());
|
|
|
+ if(isRepeat != null) {
|
|
|
+ item.setIsRepeat(isRepeat);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|