...
|
...
|
@@ -135,6 +135,8 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
|
|
|
@Autowired
|
|
|
AppYohoCpsNewUidMapper appYohoCpsNewUidMapper;
|
|
|
@Autowired
|
|
|
UnionUicRegisterMapper unionUicRegisterMapper;
|
|
|
|
|
|
@Resource
|
|
|
RedisValueCache redisValueCache;
|
...
|
...
|
@@ -679,9 +681,10 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
* */
|
|
|
public void joinInviteActivity(List<AppYohoCpsNewUid> appYohoCpsNewUids, Set<Integer> uids, List<UnionShareOrdersActivity> activities) {
|
|
|
//过滤掉非新用户(会员提供新用户标识)
|
|
|
// Set<Integer> newUids = unionUicRegisterMapper.selectByUids(uids);
|
|
|
Set<Integer> newUids = uids;//TODO 测试环境绕过
|
|
|
Set<Integer> newUids = unionUicRegisterMapper.selectByUids(uids);
|
|
|
// Set<Integer> newUids = uids;//TODO 测试环境绕过
|
|
|
|
|
|
logger.info("joinInviteActivity.uids size is {}.newUids size is {}.",uids.size(),newUids.size());
|
|
|
if (CollectionUtils.isEmpty(newUids)||CollectionUtils.isEmpty(appYohoCpsNewUids)||CollectionUtils.isEmpty(activities)) {
|
|
|
return;
|
|
|
}
|
...
|
...
|
|