|
@@ -451,15 +451,15 @@ public class KuaiShouGroupTemplateServiceImpl extends ServiceImpl<KuaiShouGroupT
|
|
|
}
|
|
|
|
|
|
if (!Check.isNull(templateTarget.getPopulation())) {
|
|
|
- target.put("population", templateTarget.getPopulation());
|
|
|
+ target.put("population", JSONArray.parseArray(templateTarget.getPopulation()));
|
|
|
}
|
|
|
|
|
|
if (!Check.isNull(templateTarget.getExcludePopulation())) {
|
|
|
- target.put("exclude_population", templateTarget.getExcludePopulation());
|
|
|
+ target.put("exclude_population", JSONArray.parseArray(templateTarget.getExcludePopulation()));
|
|
|
}
|
|
|
|
|
|
if (!Check.isNull(templateTarget.getPaidAudience())) {
|
|
|
- target.put("paid_audience", templateTarget.getPaidAudience());
|
|
|
+ target.put("paid_audience", JSONArray.parseArray(templateTarget.getPaidAudience()));
|
|
|
}
|
|
|
returnJson.put("target", target);
|
|
|
returnJson.put("code", 0);
|