|
@@ -45,11 +45,8 @@ public class AdsOrderDetailServiceImpl implements IAdsOrderDetailService {
|
|
Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo(dto.getSourceSystem());
|
|
Tuple2<List<Long>, List<Long>> poerInfo = dataPowerComponent.getPowerInfo(dto.getSourceSystem());
|
|
List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(Long.parseLong(dto.getPitcherId()));
|
|
List<Long> userIds = dto.getPitcherId() == null ? poerInfo.first : Collections.singletonList(Long.parseLong(dto.getPitcherId()));
|
|
List<Long> gameIds = CollectionUtils.isEmpty(dto.getGameId()) ? poerInfo.second : dto.getGameId();
|
|
List<Long> gameIds = CollectionUtils.isEmpty(dto.getGameId()) ? poerInfo.second : dto.getGameId();
|
|
- for (Long userId : userIds) {
|
|
|
|
- log.error("拥有权限的userId:{}", userId);
|
|
|
|
- }
|
|
|
|
- for (Long gameId : gameIds) {
|
|
|
|
- log.error("拥有权限gameId:{}", gameId);
|
|
|
|
|
|
+ for (Long id : gameIds) {
|
|
|
|
+ log.error("最终查询出的游戏{}",id);
|
|
}
|
|
}
|
|
Criteria cri = Cnd.cri();
|
|
Criteria cri = Cnd.cri();
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|