Quellcode durchsuchen

修改数组结构

15313670163 vor 1 Monat
Ursprung
Commit
2634f064f0
4 geänderte Dateien mit 398 neuen und 11 gelöschten Zeilen
  1. 28 10
      app/JsonRpc/NewsService.php
  2. 0 0
      runtime/container/scan.cache
  3. 1 1
      runtime/hyperf.pid
  4. 369 0
      runtime/logs/hyperf.log

+ 28 - 10
app/JsonRpc/NewsService.php

@@ -654,24 +654,42 @@ class NewsService implements NewsServiceInterface
     {
         if(isset($data['sur_id']) &&!empty($data['sur_id'])){
             $where = [ 'sur_id'=>$data['sur_id']];
-            $result['survey'] =  ArticleSurvey::where($where)->where('is_other',0)
+            $choose =  ArticleSurvey::where($where)->where('is_other',0)
             ->leftJoin('article','article_survey.art_id','article.id')
             ->select('article_survey.*','article.survey_type')
             ->get()->all();
-            if(empty($result)){
+            if(empty($choose)){
                 return Result::error("此调查问卷不存在",0);
             }
-            $resultsArray  = array_column($result['survey'], 'results');
+            $resultsArray  = array_column($choose, 'results');
             $total = array_sum($resultsArray);
-            // $total = $result['survey']->sum('results');
-            $result['other'] = ArticleSurvey::where($where)->where('is_other',1)->where('other_id',0)->first();
-            $result['others'] = ArticleSurvey::where($where)->where('is_other',1)->where('other_id','!=',0)->orderByDesc('created_at')->first();
-            
+            $other = ArticleSurvey::where($where)->where('is_other',1)->where('other_id',0)->first();
+            $others = ArticleSurvey::where($where)->where('is_other',1)->where('other_id','!=',0)->orderByDesc('created_at')->get()->all();
             // $total = 0;
-            if(!empty($result['other'])){
-                $total = $total + $result['other']['results'];
+            if(!empty($other)){
+                $total = $total + $other['results'];
+                if(!empty($others)){
+                    $other['hasChildren'] = true;
+                    // array_push($other,['hasChildren','=',true]);
+                    $other['children'] = $others;
+                    $other_choices = [$other->toArray()];
+                    $mer_choice = array_merge($choose,$other_choices);
+                    $value_choice = array_values($mer_choice);
+                }
+                else{
+                    // return Result::error('1111');
+                    $other_choices = [$other->toArray()];
+                    $other_choices = array_merge($choose,$other_choices);
+                    $value_choice = array_values($other_choices);
+                    // return Result::success($result);
+                }
+            }else{
+                $value_choice = $choose;
             }
-            $result['total'] = $total;
+            $result = [
+                'choose'=>$value_choice,
+                'total'=>$total 
+            ];
         }
         return Result::success($result);
     }

Datei-Diff unterdrückt, da er zu groß ist
+ 0 - 0
runtime/container/scan.cache


+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-34601
+37818

+ 369 - 0
runtime/logs/hyperf.log

@@ -2604,3 +2604,372 @@
 [2025-02-27T15:07:34.149735+08:00] sql.INFO: [18.21] select * from `article` where (`survey_type` = '0') and `survey_name` is not null order by `id` desc limit 10 offset 0 [] []
 [2025-02-27T15:07:38.981890+08:00] sql.INFO: [12.04] select count(*) as aggregate from `article` where (`survey_type` = '1') and `survey_name` is not null [] []
 [2025-02-27T15:07:38.998977+08:00] sql.INFO: [16.51] select * from `article` where (`survey_type` = '1') and `survey_name` is not null order by `id` desc limit 10 offset 0 [] []
+[2025-02-27T16:11:29.860808+08:00] sql.INFO: [15.28] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022408561179511685') and `is_other` = '0' [] []
+[2025-02-27T16:11:29.885713+08:00] sql.INFO: [3.58] select * from `article_survey` where (`sur_id` = '2025022408561179511685') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-27T16:11:29.889502+08:00] sql.INFO: [3.01] select * from `article_survey` where (`sur_id` = '2025022408561179511685') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-27T16:13:26.526197+08:00] sql.INFO: [15.88] select count(*) as aggregate from `article` where (`survey_type` = '2') and `survey_name` is not null [] []
+[2025-02-27T16:13:26.540073+08:00] sql.INFO: [13.33] select * from `article` where (`survey_type` = '2') and `survey_name` is not null order by `id` desc limit 10 offset 0 [] []
+[2025-02-27T16:13:39.486478+08:00] sql.INFO: [13.72] select count(*) as aggregate from `article` where `survey_name` is not null [] []
+[2025-02-27T16:13:39.490491+08:00] sql.INFO: [3.51] select * from `article` where `survey_name` is not null order by `id` desc limit 10 offset 0 [] []
+[2025-02-28T13:27:32.659344+08:00] sql.INFO: [14.65] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022512070358177870') and `is_other` = '0' [] []
+[2025-02-28T13:27:41.579065+08:00] sql.INFO: [15.27] select count(*) as aggregate from `article` where `survey_name` is not null [] []
+[2025-02-28T13:27:41.582979+08:00] sql.INFO: [3.42] select * from `article` where `survey_name` is not null order by `id` desc limit 10 offset 0 [] []
+[2025-02-28T13:28:05.788593+08:00] sql.INFO: [3.92] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:07.194810+08:00] sql.INFO: [4.41] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:08.082218+08:00] sql.INFO: [3.12] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:08.968571+08:00] sql.INFO: [6.05] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:10.050908+08:00] sql.INFO: [3.46] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:10.853136+08:00] sql.INFO: [3.34] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:11.610659+08:00] sql.INFO: [3] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:16.684097+08:00] sql.INFO: [3.37] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:17.481605+08:00] sql.INFO: [3.33] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:28:18.105960+08:00] sql.INFO: [3.64] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:30:38.355296+08:00] sql.INFO: [12.99] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:30:38.374908+08:00] sql.INFO: [2.64] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:30:38.378158+08:00] sql.INFO: [2.56] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:32:33.648033+08:00] sql.INFO: [12.64] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:32:33.668037+08:00] sql.INFO: [2.89] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:32:33.671430+08:00] sql.INFO: [2.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:34:14.409397+08:00] sql.INFO: [12.8] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:34:14.426208+08:00] sql.INFO: [2.36] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:34:14.428948+08:00] sql.INFO: [2.15] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:35:46.906617+08:00] sql.INFO: [17.66] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:35:46.931715+08:00] sql.INFO: [2.77] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:35:46.935252+08:00] sql.INFO: [2.77] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:36:37.107091+08:00] sql.INFO: [15.42] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:36:37.126327+08:00] sql.INFO: [2.36] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:36:37.129418+08:00] sql.INFO: [2.39] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:36:38.253983+08:00] sql.INFO: [3.48] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:36:38.258013+08:00] sql.INFO: [2.7] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:36:38.261321+08:00] sql.INFO: [2.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:36:39.329897+08:00] sql.INFO: [3.5] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:36:39.334335+08:00] sql.INFO: [3.11] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:36:39.338457+08:00] sql.INFO: [3.03] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:36:40.024688+08:00] sql.INFO: [3.18] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:36:40.028742+08:00] sql.INFO: [2.86] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:36:40.031578+08:00] sql.INFO: [2.19] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:37:14.456123+08:00] sql.INFO: [11.92] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:37:14.475825+08:00] sql.INFO: [2.53] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:37:14.478986+08:00] sql.INFO: [2.43] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:37:15.321661+08:00] sql.INFO: [3.21] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:37:15.325422+08:00] sql.INFO: [2.5] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:37:15.328753+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:37:48.552970+08:00] sql.INFO: [3.73] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:37:48.557793+08:00] sql.INFO: [3.26] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:37:48.561743+08:00] sql.INFO: [3.03] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:37:53.246488+08:00] sql.INFO: [17.63] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:37:53.270409+08:00] sql.INFO: [2.76] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:37:53.273823+08:00] sql.INFO: [2.49] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:38:50.801150+08:00] sql.INFO: [16.04] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:38:50.824743+08:00] sql.INFO: [2.76] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:38:50.827800+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:41:40.057778+08:00] sql.INFO: [12.84] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:41:40.078940+08:00] sql.INFO: [2.52] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:41:40.081761+08:00] sql.INFO: [2.1] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:42:18.591258+08:00] sql.INFO: [3.16] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:42:18.595091+08:00] sql.INFO: [2.6] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:42:18.598115+08:00] sql.INFO: [2.4] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:42:29.076758+08:00] sql.INFO: [12.36] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:42:29.098325+08:00] sql.INFO: [2.21] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:42:29.101196+08:00] sql.INFO: [2.15] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:42:30.266969+08:00] sql.INFO: [3.02] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:42:30.271053+08:00] sql.INFO: [2.51] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:42:30.274323+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:42:31.091774+08:00] sql.INFO: [3.14] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:42:31.095782+08:00] sql.INFO: [2.72] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:42:31.099031+08:00] sql.INFO: [2.34] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:43:45.336433+08:00] sql.INFO: [15.23] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:43:45.359432+08:00] sql.INFO: [2.58] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:43:45.362516+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:43:46.337094+08:00] sql.INFO: [4.09] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:43:46.342790+08:00] sql.INFO: [4.15] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:43:46.347733+08:00] sql.INFO: [3.91] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:43:52.480118+08:00] sql.INFO: [16.11] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:43:52.503031+08:00] sql.INFO: [3.05] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:43:52.506478+08:00] sql.INFO: [2.74] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:43:57.464894+08:00] sql.INFO: [13.42] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:43:57.485354+08:00] sql.INFO: [2.8] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:43:57.488721+08:00] sql.INFO: [2.61] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:45:54.573241+08:00] sql.INFO: [7.98] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:45:54.577131+08:00] sql.INFO: [2.61] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:45:54.580459+08:00] sql.INFO: [2.62] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:45:55.498658+08:00] sql.INFO: [3.08] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:45:55.502380+08:00] sql.INFO: [2.66] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:45:55.505735+08:00] sql.INFO: [2.59] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:46:00.054252+08:00] sql.INFO: [14.37] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:46:00.076371+08:00] sql.INFO: [2.74] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:46:00.079680+08:00] sql.INFO: [2.62] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:46:22.111490+08:00] sql.INFO: [6.45] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:46:22.115315+08:00] sql.INFO: [2.4] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:46:22.118706+08:00] sql.INFO: [2.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:46:54.910209+08:00] sql.INFO: [13.35] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:46:54.931240+08:00] sql.INFO: [2.77] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:46:54.934912+08:00] sql.INFO: [2.79] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T13:46:59.199610+08:00] sql.INFO: [17.24] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T13:46:59.223048+08:00] sql.INFO: [2.67] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T13:46:59.226296+08:00] sql.INFO: [2.55] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:02:45.083689+08:00] sql.INFO: [13.82] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:02:45.103975+08:00] sql.INFO: [3.07] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:02:45.107755+08:00] sql.INFO: [2.89] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:04:22.782836+08:00] sql.INFO: [12.43] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:04:22.799761+08:00] sql.INFO: [2.59] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:04:22.802841+08:00] sql.INFO: [2.43] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:04:46.620838+08:00] sql.INFO: [3.47] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:04:46.624554+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:04:46.627705+08:00] sql.INFO: [2.39] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:04:51.408493+08:00] sql.INFO: [15.23] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:04:51.431058+08:00] sql.INFO: [2.65] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:04:51.437449+08:00] sql.INFO: [5.71] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:05:35.296018+08:00] sql.INFO: [17.77] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:05:35.315168+08:00] sql.INFO: [2.58] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:05:35.318389+08:00] sql.INFO: [2.62] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:05:47.463333+08:00] sql.INFO: [3.27] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:05:47.466839+08:00] sql.INFO: [2.35] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:05:47.469908+08:00] sql.INFO: [2.4] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:05:51.930202+08:00] sql.INFO: [14.54] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:05:51.949674+08:00] sql.INFO: [2.31] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:05:51.952386+08:00] sql.INFO: [2.08] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc limit 1 [] []
+[2025-02-28T14:06:50.628191+08:00] sql.INFO: [14.59] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:50.647577+08:00] sql.INFO: [2.37] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:50.650398+08:00] sql.INFO: [2.21] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:06:51.660421+08:00] sql.INFO: [3.35] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:51.664004+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:51.667209+08:00] sql.INFO: [2.57] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:06:52.239759+08:00] sql.INFO: [2.89] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:52.244030+08:00] sql.INFO: [2.77] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:52.247360+08:00] sql.INFO: [2.49] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:06:52.754892+08:00] sql.INFO: [3.31] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:52.758729+08:00] sql.INFO: [2.63] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:52.761937+08:00] sql.INFO: [2.41] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:06:53.679116+08:00] sql.INFO: [3.27] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:53.682597+08:00] sql.INFO: [2.31] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:53.685739+08:00] sql.INFO: [2.52] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:06:54.464388+08:00] sql.INFO: [3.25] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:06:54.468277+08:00] sql.INFO: [2.6] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:06:54.471991+08:00] sql.INFO: [3.07] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:07:23.316959+08:00] sql.INFO: [12.32] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:07:23.336189+08:00] sql.INFO: [2.33] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:07:23.339307+08:00] sql.INFO: [2.25] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:09:43.711019+08:00] sql.INFO: [14.47] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:09:43.729693+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:09:43.978354+08:00] sql.INFO: [3.57] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:10:01.107074+08:00] sql.INFO: [3.58] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:10:01.111266+08:00] sql.INFO: [2.8] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:10:01.114510+08:00] sql.INFO: [2.51] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:10:02.020366+08:00] sql.INFO: [3.22] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:10:02.025283+08:00] sql.INFO: [3.4] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:10:02.029120+08:00] sql.INFO: [2.68] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:10:06.680563+08:00] sql.INFO: [11.89] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:10:06.698116+08:00] sql.INFO: [2.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:10:06.855128+08:00] sql.INFO: [2.82] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:10:39.263227+08:00] sql.INFO: [12.31] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:10:39.284338+08:00] sql.INFO: [2.69] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:10:39.518126+08:00] sql.INFO: [2.82] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:09.536818+08:00] sql.INFO: [3.12] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:09.540773+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:09.544096+08:00] sql.INFO: [2.39] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:14.193482+08:00] sql.INFO: [15.4] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:14.214038+08:00] sql.INFO: [2.64] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:14.376306+08:00] sql.INFO: [12.97] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:24.473544+08:00] sql.INFO: [3.06] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:24.477388+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:24.480661+08:00] sql.INFO: [2.38] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:25.318725+08:00] sql.INFO: [3.31] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:25.322792+08:00] sql.INFO: [2.86] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:25.326464+08:00] sql.INFO: [2.69] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:29.749670+08:00] sql.INFO: [15.52] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:29.771677+08:00] sql.INFO: [2.92] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:29.963089+08:00] sql.INFO: [2.85] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:11:55.687314+08:00] sql.INFO: [14.04] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:11:55.708657+08:00] sql.INFO: [2.68] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:11:55.891278+08:00] sql.INFO: [2.87] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:12:29.731532+08:00] sql.INFO: [3.79] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:12:29.735847+08:00] sql.INFO: [3.11] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:12:29.739667+08:00] sql.INFO: [2.91] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:12:30.658411+08:00] sql.INFO: [3.5] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:12:30.663183+08:00] sql.INFO: [3.11] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:12:30.667401+08:00] sql.INFO: [3.13] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:12:34.744763+08:00] sql.INFO: [15.54] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:12:34.766378+08:00] sql.INFO: [2.79] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:12:34.937359+08:00] sql.INFO: [2.89] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:13:51.282126+08:00] sql.INFO: [7.94] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:13:51.285808+08:00] sql.INFO: [2.56] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:13:51.289395+08:00] sql.INFO: [2.53] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:13:55.379343+08:00] sql.INFO: [15.78] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:13:55.399573+08:00] sql.INFO: [2.73] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:13:55.554018+08:00] sql.INFO: [2.67] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:14:49.019494+08:00] sql.INFO: [3.7] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:14:49.023538+08:00] sql.INFO: [2.9] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:14:49.027079+08:00] sql.INFO: [2.6] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:14:49.824188+08:00] sql.INFO: [3.14] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:14:49.828155+08:00] sql.INFO: [2.59] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:14:49.831717+08:00] sql.INFO: [2.74] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:14:53.401860+08:00] sql.INFO: [14.49] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:14:53.424362+08:00] sql.INFO: [2.79] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:14:53.607177+08:00] sql.INFO: [2.98] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:14:56.343405+08:00] sql.INFO: [3.37] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:14:56.347082+08:00] sql.INFO: [2.47] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:14:56.350359+08:00] sql.INFO: [2.52] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:15:13.232386+08:00] sql.INFO: [14.9] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:15:13.258511+08:00] sql.INFO: [6.83] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:15:13.446440+08:00] sql.INFO: [3.05] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:15:34.999415+08:00] sql.INFO: [13.5] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:15:35.017852+08:00] sql.INFO: [2.71] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' [] []
+[2025-02-28T14:15:35.021247+08:00] sql.INFO: [2.69] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:15:52.998489+08:00] sql.INFO: [16.07] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:15:53.020198+08:00] sql.INFO: [2.66] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:15:53.024093+08:00] sql.INFO: [3.17] select * from `article_survey` [] []
+[2025-02-28T14:15:53.039253+08:00] sql.INFO: [2.67] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:16:27.868418+08:00] sql.INFO: [13.06] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:16:27.887441+08:00] sql.INFO: [2.4] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:16:27.891400+08:00] sql.INFO: [3.32] select * from `article_survey` [] []
+[2025-02-28T14:16:27.906714+08:00] sql.INFO: [2.69] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:02.725960+08:00] sql.INFO: [7.84] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:02.729958+08:00] sql.INFO: [2.7] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:02.734251+08:00] sql.INFO: [3.41] select * from `article_survey` [] []
+[2025-02-28T14:18:02.749445+08:00] sql.INFO: [2.86] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:03.617500+08:00] sql.INFO: [3.05] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:03.622308+08:00] sql.INFO: [3.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:03.626725+08:00] sql.INFO: [3.61] select * from `article_survey` [] []
+[2025-02-28T14:18:03.644093+08:00] sql.INFO: [2.76] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:07.843826+08:00] sql.INFO: [13.74] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:07.863564+08:00] sql.INFO: [2.49] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:07.866455+08:00] sql.INFO: [2.29] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:35.645648+08:00] sql.INFO: [3.09] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:35.649202+08:00] sql.INFO: [2.3] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:35.652379+08:00] sql.INFO: [2.39] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:36.516165+08:00] sql.INFO: [3.35] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:36.520727+08:00] sql.INFO: [3.16] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:36.524694+08:00] sql.INFO: [2.91] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:37.199956+08:00] sql.INFO: [3.07] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:37.203714+08:00] sql.INFO: [2.78] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:37.207180+08:00] sql.INFO: [2.69] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:18:41.625237+08:00] sql.INFO: [18.39] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:18:41.649421+08:00] sql.INFO: [2.56] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:18:41.652634+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:19:47.750628+08:00] sql.INFO: [13.72] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:19:47.767839+08:00] sql.INFO: [2.77] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:19:47.771237+08:00] sql.INFO: [2.76] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:20:25.024103+08:00] sql.INFO: [3.27] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:20:25.027979+08:00] sql.INFO: [2.64] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:20:25.031706+08:00] sql.INFO: [2.96] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:20:29.502167+08:00] sql.INFO: [15.94] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:20:29.527334+08:00] sql.INFO: [2.93] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:20:29.530669+08:00] sql.INFO: [2.55] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:21:02.926008+08:00] sql.INFO: [13.9] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:21:02.944038+08:00] sql.INFO: [2.86] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:21:02.947327+08:00] sql.INFO: [2.39] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:21:37.229584+08:00] sql.INFO: [16.16] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:21:37.251759+08:00] sql.INFO: [2.63] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:21:37.255179+08:00] sql.INFO: [2.67] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:21:41.512430+08:00] sql.INFO: [13.83] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:21:41.543666+08:00] sql.INFO: [2.93] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:21:41.547397+08:00] sql.INFO: [2.97] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:22:22.973289+08:00] sql.INFO: [3.77] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:22:22.977456+08:00] sql.INFO: [2.66] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:22:22.980916+08:00] sql.INFO: [2.59] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:22:27.935717+08:00] sql.INFO: [18.16] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:22:27.954739+08:00] sql.INFO: [2.53] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:22:27.958300+08:00] sql.INFO: [2.75] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:22:46.398390+08:00] sql.INFO: [3.41] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:22:46.401928+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:22:46.405592+08:00] sql.INFO: [3.04] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:22:47.245043+08:00] sql.INFO: [3.52] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:22:47.249374+08:00] sql.INFO: [2.75] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:22:47.253228+08:00] sql.INFO: [2.96] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:22:51.723172+08:00] sql.INFO: [12.13] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:22:51.745826+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:22:51.749004+08:00] sql.INFO: [2.49] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:24:19.318803+08:00] sql.INFO: [14.45] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:24:19.337496+08:00] sql.INFO: [2.48] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:24:19.340674+08:00] sql.INFO: [2.47] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:25:20.180233+08:00] sql.INFO: [15.57] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:25:20.202274+08:00] sql.INFO: [2.49] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:25:20.205342+08:00] sql.INFO: [2.41] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:25:41.463030+08:00] sql.INFO: [14.16] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:25:41.485103+08:00] sql.INFO: [2.57] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:25:41.488690+08:00] sql.INFO: [2.8] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:25:46.530088+08:00] sql.INFO: [16.24] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:25:46.554476+08:00] sql.INFO: [2.8] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:25:46.557977+08:00] sql.INFO: [2.59] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:26:08.172171+08:00] sql.INFO: [14.36] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:26:08.191984+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:26:08.194958+08:00] sql.INFO: [2.27] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:26:31.763389+08:00] sql.INFO: [2.9] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:26:31.766798+08:00] sql.INFO: [2.27] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:26:31.770159+08:00] sql.INFO: [2.7] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:26:32.656812+08:00] sql.INFO: [3.27] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:26:32.660855+08:00] sql.INFO: [2.74] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:26:32.664157+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:26:37.219253+08:00] sql.INFO: [14.15] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022802202819818043') and `is_other` = '0' [] []
+[2025-02-28T14:26:37.241205+08:00] sql.INFO: [2.75] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:26:37.244335+08:00] sql.INFO: [2.37] select * from `article_survey` where (`sur_id` = '2025022802202819818043') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:29:16.838549+08:00] sql.INFO: [15.79] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:29:16.863432+08:00] sql.INFO: [2.65] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:29:16.866612+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:29:42.187421+08:00] sql.INFO: [3.77] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:29:42.192365+08:00] sql.INFO: [2.92] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:29:42.196507+08:00] sql.INFO: [3.14] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:29:46.462306+08:00] sql.INFO: [15.54] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:29:46.485145+08:00] sql.INFO: [2.58] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:29:46.488678+08:00] sql.INFO: [2.91] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:29:48.945632+08:00] sql.INFO: [3.24] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:29:48.949445+08:00] sql.INFO: [2.38] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:29:48.952531+08:00] sql.INFO: [2.32] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:30:06.163456+08:00] sql.INFO: [3.28] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:30:06.167649+08:00] sql.INFO: [2.46] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:30:06.171214+08:00] sql.INFO: [2.73] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:30:07.106869+08:00] sql.INFO: [4.17] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:30:07.111851+08:00] sql.INFO: [2.97] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:30:07.115209+08:00] sql.INFO: [2.57] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:30:07.967435+08:00] sql.INFO: [2.77] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:30:07.971787+08:00] sql.INFO: [2.82] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:30:07.975357+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:30:08.941549+08:00] sql.INFO: [3.11] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:30:08.945949+08:00] sql.INFO: [2.65] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:30:08.949104+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:30:10.727445+08:00] sql.INFO: [3.63] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:30:10.731615+08:00] sql.INFO: [2.53] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:30:10.734876+08:00] sql.INFO: [2.54] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:00.960190+08:00] sql.INFO: [3.53] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:00.964398+08:00] sql.INFO: [2.71] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:00.967329+08:00] sql.INFO: [2.35] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:01.799227+08:00] sql.INFO: [3.16] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:01.803545+08:00] sql.INFO: [2.78] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:01.807412+08:00] sql.INFO: [2.93] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:02.390392+08:00] sql.INFO: [2.75] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:02.394517+08:00] sql.INFO: [2.6] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:02.397660+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:03.098664+08:00] sql.INFO: [3.19] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:03.102716+08:00] sql.INFO: [2.57] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:03.106081+08:00] sql.INFO: [2.6] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:03.797851+08:00] sql.INFO: [3.09] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:03.801550+08:00] sql.INFO: [2.28] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:03.804753+08:00] sql.INFO: [2.65] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:04.902952+08:00] sql.INFO: [3.34] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:04.907367+08:00] sql.INFO: [2.86] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:04.910691+08:00] sql.INFO: [2.53] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:38.146668+08:00] sql.INFO: [13.2] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:38.167889+08:00] sql.INFO: [2.29] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:38.170981+08:00] sql.INFO: [2.36] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:31:57.028718+08:00] sql.INFO: [13.62] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:31:57.048417+08:00] sql.INFO: [2.73] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:31:57.051525+08:00] sql.INFO: [2.51] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:32:07.345974+08:00] sql.INFO: [3.4] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:32:07.349954+08:00] sql.INFO: [2.52] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:32:07.353467+08:00] sql.INFO: [2.71] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:32:08.314930+08:00] sql.INFO: [2.88] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:32:08.318350+08:00] sql.INFO: [2.21] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:32:08.321550+08:00] sql.INFO: [2.63] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:32:09.198278+08:00] sql.INFO: [3.22] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:32:09.202107+08:00] sql.INFO: [2.45] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:32:09.205383+08:00] sql.INFO: [2.44] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:32:13.093068+08:00] sql.INFO: [14.96] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:32:13.114382+08:00] sql.INFO: [2.85] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:32:13.117205+08:00] sql.INFO: [2.19] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:34:19.087678+08:00] sql.INFO: [14.52] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:34:19.106424+08:00] sql.INFO: [2.62] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:34:19.110170+08:00] sql.INFO: [2.93] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []
+[2025-02-28T14:34:50.512939+08:00] sql.INFO: [536.85] select `article_survey`.*, `article`.`survey_type` from `article_survey` left join `article` on `article_survey`.`art_id` = `article`.`id` where (`sur_id` = '2025022605404813386794') and `is_other` = '0' [] []
+[2025-02-28T14:34:51.095873+08:00] sql.INFO: [568.63] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` = '0' limit 1 [] []
+[2025-02-28T14:34:51.099559+08:00] sql.INFO: [2.79] select * from `article_survey` where (`sur_id` = '2025022605404813386794') and `is_other` = '1' and `other_id` != '0' order by `created_at` desc [] []

Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden.