|
@@ -45,7 +45,12 @@ public class AdsOrderDetailServiceImpl implements IAdsOrderDetailService {
|
|
|
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> 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);
|
|
|
+ }
|
|
|
Criteria cri = Cnd.cri();
|
|
|
if (StringUtils.isNotBlank(dto.getSourceSystem())) {
|
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|