From 5438937ca4979ebbd2d00c7fe45ebbf90be6d72b Mon Sep 17 00:00:00 2001 From: huangguancheng Date: Thu, 23 Jan 2025 15:40:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20=20campaign=20adset=20ad?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=9A=84=E6=95=B0=E6=8D=AE=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/AdsInsightService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/service/AdsInsightService.php b/app/service/AdsInsightService.php index 673a9c2..936c0b8 100644 --- a/app/service/AdsInsightService.php +++ b/app/service/AdsInsightService.php @@ -220,7 +220,7 @@ class AdsInsightService $query->where('c.platform_type', '=', $platformType); } }); - + $query->order('c.platform_type, c.status', 'asc'); // 获取所有符合条件的数据(不分页) $allCampaigns = $query->select()->toArray(); @@ -922,7 +922,7 @@ class AdsInsightService $query->where('s.platform_type', '=', $platformType); } }); - + $query->order('s.platform_type, s.status', 'asc'); // 获取所有符合条件的数据(不分页) $allAdsets = $query->select()->toArray(); @@ -1389,7 +1389,7 @@ class AdsInsightService $query->where('a.platform_type', '=', $platformType); } }); - + $query->order('a.platform_type, a.status', 'asc'); // 获取所有符合条件的数据(不分页) $allAds = $query->select()->toArray();