|
@@ -459,9 +459,10 @@ public class AiBytedanceAdvertiserStrategyController {
|
|
|
Result resultDefault = aiBytedanceAdvertiserStrategyService.getAdAudiencePackage(accountId,landingType,"DEFAULT");
|
|
|
//穿山甲定向包
|
|
|
Result resultUnion = aiBytedanceAdvertiserStrategyService.getAdAudiencePackage(accountId,landingType,"UNION");
|
|
|
- List list = (List) resultDefault.getResult();
|
|
|
- list.add(resultUnion);
|
|
|
- return Result.successMsg("获取定向包成功。",list);
|
|
|
+ List listDefault = (List) resultDefault.getResult();
|
|
|
+ List listUnion = (List) resultUnion.getResult();
|
|
|
+ listDefault.addAll(listUnion);
|
|
|
+ return Result.successMsg("获取定向包成功。",listDefault);
|
|
|
}catch (Exception e){
|
|
|
log.error("获取定向包异常",e);
|
|
|
return Result.error("请求失败,请联系开发人员!");
|