|
@@ -1007,15 +1007,15 @@ public class AiKuaishouCreateCreativeServiceImpl implements IAiKuaishouCreateCre
|
|
if(null!=appInfo){
|
|
if(null!=appInfo){
|
|
appName = appInfo.getAppName();
|
|
appName = appInfo.getAppName();
|
|
}
|
|
}
|
|
- wildcard = wildcard.replace("{{应用包名}}","-"+appName+"-");
|
|
|
|
|
|
+ wildcard = wildcard.replace("{{应用包名}}",appName);
|
|
}
|
|
}
|
|
if(wildcard.contains("{{创意制作方式}}")){
|
|
if(wildcard.contains("{{创意制作方式}}")){
|
|
String creatype = KuaishouCreativeCreateTypeEnum.getNameByType(strategy.getOpenProgramCreate());
|
|
String creatype = KuaishouCreativeCreateTypeEnum.getNameByType(strategy.getOpenProgramCreate());
|
|
- wildcard = wildcard.replace("{{创意制作方式}}","-"+creatype+"-");
|
|
|
|
|
|
+ wildcard = wildcard.replace("{{创意制作方式}}",creatype);
|
|
}
|
|
}
|
|
if(wildcard.contains("{{广告位置}}")){
|
|
if(wildcard.contains("{{广告位置}}")){
|
|
String adsence = getAdSenceByParams(strategy.getSceneId());
|
|
String adsence = getAdSenceByParams(strategy.getSceneId());
|
|
- wildcard = wildcard.replace("{{广告位置}}","-"+adsence+"-");
|
|
|
|
|
|
+ wildcard = wildcard.replace("{{广告位置}}",adsence);
|
|
}
|
|
}
|
|
if(!wildcard.contains("{{自定义}}")){
|
|
if(!wildcard.contains("{{自定义}}")){
|
|
wildcard = wildcard+"{{自定义}}";
|
|
wildcard = wildcard+"{{自定义}}";
|
|
@@ -1023,7 +1023,7 @@ public class AiKuaishouCreateCreativeServiceImpl implements IAiKuaishouCreateCre
|
|
if(null!=appInfo){
|
|
if(null!=appInfo){
|
|
targetName = appInfo.getAppVersion()+"-"+targetName;
|
|
targetName = appInfo.getAppVersion()+"-"+targetName;
|
|
}
|
|
}
|
|
- wildcard = wildcard.replace("{{自定义}}","-"+targetName+"-");
|
|
|
|
|
|
+ wildcard = wildcard.replace("{{自定义}}",targetName);
|
|
}
|
|
}
|
|
if(null!=timestamp&&!"".equals(timestamp.trim())){
|
|
if(null!=timestamp&&!"".equals(timestamp.trim())){
|
|
wildcard = wildcard+"-"+timestamp;
|
|
wildcard = wildcard+"-"+timestamp;
|