|
@@ -167,6 +167,9 @@ public class AdsCreativeDayServiceImpl implements IAdsCreativeDayService {
|
|
|
if (StringUtils.isNotBlank(dto.getStatus())) {
|
|
|
cri.where().andEquals("status", dto.getStatus());
|
|
|
}
|
|
|
+ if(StringUtils.isNotEmpty(dto.getCreativeStatus())){
|
|
|
+ cri.where().andEquals("configured_status", dto.getCreativeStatus());
|
|
|
+ }
|
|
|
if (StringUtils.isNotBlank(dto.getDynamicCreativeName())) {
|
|
|
cri.where().andLike("dynamic_creative_name", dto.getDynamicCreativeName());
|
|
|
}
|
|
@@ -698,6 +701,10 @@ public class AdsCreativeDayServiceImpl implements IAdsCreativeDayService {
|
|
|
if (StringUtils.isNotBlank(dto.getStatus())) {
|
|
|
cri.where().andEquals("status", dto.getStatus());
|
|
|
}
|
|
|
+ if(StringUtils.isNotBlank(dto.getCreativeStatus())){
|
|
|
+ cri.where().andEquals("configured_status", dto.getCreativeStatus());
|
|
|
+ }
|
|
|
+
|
|
|
if (StringUtils.isNotBlank(dto.getDynamicCreativeName())) {
|
|
|
cri.where().andLike("dynamic_creative_name", dto.getDynamicCreativeName());
|
|
|
}
|