|
@@ -500,13 +500,21 @@ public class AiBytedanceAdvertiserStrategyController {
|
|
|
Result resultDefault = aiBytedanceAdvertiserStrategyService.getAdAudiencePackage(accountId,null,"DEFAULT");
|
|
|
//穿山甲定向包
|
|
|
Result resultUnion = aiBytedanceAdvertiserStrategyService.getAdAudiencePackage(accountId,null,"UNION");
|
|
|
+ //通投智选
|
|
|
+ Result resultUniversal = aiBytedanceAdvertiserStrategyService.getAdAudiencePackage(accountId,null,"UNIVERSAL");
|
|
|
List listDefault = (List) resultDefault.getResult();
|
|
|
List listUnion = (List) resultUnion.getResult();
|
|
|
-
|
|
|
+ List listUniversal = (List) resultUniversal.getResult();
|
|
|
if (!Check.isNull(listDefault)){
|
|
|
listDefault.addAll(listUnion);
|
|
|
+ if (!Check.isNull(listUniversal)){
|
|
|
+ listDefault.addAll(listUniversal);
|
|
|
+ }
|
|
|
}else {
|
|
|
listDefault = listUnion;
|
|
|
+ if (!Check.isNull(listUniversal)){
|
|
|
+ listDefault.addAll(listUniversal);
|
|
|
+ }
|
|
|
}
|
|
|
return Result.successMsg("获取定向包成功。",listDefault);
|
|
|
}catch (Exception e){
|