Browse Source

前端-三农资讯网修改获取新闻详情

15313670163 2 months ago
parent
commit
56723ae881
3 changed files with 16 additions and 1930 deletions
  1. 15 7
      app/JsonRpc/NewsService.php
  2. 1 1
      runtime/hyperf.pid
  3. 0 1922
      runtime/logs/hyperf.log

+ 15 - 7
app/JsonRpc/NewsService.php

@@ -4,6 +4,7 @@ namespace App\JsonRpc;
 use App\Model\Article;
 use App\Model\ArticleData;
 use App\Model\Category;
+use App\Model\Website;
 use App\Model\WebsiteCategory;
 use Hyperf\DbConnection\Db;
 use Hyperf\RpcServer\Annotation\RpcService;
@@ -305,23 +306,30 @@ class NewsService implements NewsServiceInterface
         }
     }
     /**
+     * 获取新闻详情
      * @param array $data
      * @return array
      */
     public function getArticleInfo(array $data): array
     {
         $where = [
-            'article.id' => $data['id'],
+            'article.id'=>$data['id'],
+            'article.status'=>1
         ];
-        $result = Article::where($where)->leftJoin("article_data", "article.id", "article_data.article_id")->first();
-        if ($result) {
-            return Result::success($result->toArray());
-        } else {
-            return Result::error("查询失败", 0);
+        $result = Article::where($where)->leftJoin("article_data","article.id","article_data.article_id")->first();
+        if(empty($result)){
+            return Result::error("查询失败",0);
         }
+        $category = WebsiteCategory::where('website_id',$data['website_id'])->where(['category_id'=>$result['catid']])->first();
+        if(empty($category)){
+            return Result::error("查询失败",0);
+        }
+        $result['category_id'] = $category['category_id'];
+        $result['cat_name'] = $category['name'];
+        return Result::success($result);
     }
     /**
-     *  获取新闻
+     *  获取头条新闻
      * @param array $data
      * @return array
      */

+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-65376
+65376

+ 0 - 1922
runtime/logs/hyperf.log

@@ -1,1922 +0,0 @@
-[2024-10-28T09:19:22.425365+00:00] sql.INFO: [8.16] select * from `category` where (`pid` = '0' and `category`.`name` like '%sa%') [] []
-[2024-10-28T09:19:23.932164+00:00] sql.INFO: [3.85] select * from `category` where (`pid` = '0' and `category`.`name` like '%san%') [] []
-[2024-10-28T09:19:25.594721+00:00] sql.INFO: [5.64] select * from `category` where (`pid` = '0' and `category`.`name` like '%san%') [] []
-[2024-10-28T09:19:26.302275+00:00] sql.INFO: [2.31] select * from `category` where (`pid` = '0' and `category`.`name` like '%sannong %') [] []
-[2024-10-28T09:19:26.955566+00:00] sql.INFO: [14.88] select * from `category` where (`pid` = '0' and `category`.`name` like '%sannon%') [] []
-[2024-10-28T09:19:30.277954+00:00] sql.INFO: [3.66] select * from `category` where (`pid` = '0' and `category`.`name` like '%三农%') [] []
-[2024-10-28T09:20:42.957341+00:00] sql.INFO: [16.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:20:42.960700+00:00] sql.INFO: [1.35] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:20:50.061214+00:00] sql.INFO: [18.99] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-10-28T09:20:50.066286+00:00] sql.INFO: [2.05] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:21:30.505188+00:00] sql.INFO: [7.85] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-28T09:21:30.508374+00:00] sql.INFO: [1.28] select count(*) as aggregate from `category` [] []
-[2024-10-28T09:21:31.723785+00:00] sql.INFO: [2.1] select * from `category` where (`pid` = '0') [] []
-[2024-10-28T09:22:14.520423+00:00] sql.INFO: [6.66] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:22:14.523783+00:00] sql.INFO: [1.18] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:23:41.330394+00:00] sql.INFO: [92.39] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:23:41.346166+00:00] sql.INFO: [1.79] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:30:05.455611+00:00] sql.INFO: [15.11] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-28T09:30:05.458772+00:00] sql.INFO: [1.08] select count(*) as aggregate from `category` [] []
-[2024-10-28T09:30:31.187444+00:00] sql.INFO: [25.53] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-28T09:30:31.191557+00:00] sql.INFO: [1.12] select count(*) as aggregate from `category` [] []
-[2024-10-28T09:35:56.762161+00:00] sql.INFO: [12.17] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:35:56.765863+00:00] sql.INFO: [1.44] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:36:40.526749+00:00] sql.INFO: [11.29] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-10-28T09:36:40.530191+00:00] sql.INFO: [1.21] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:44:00.034063+00:00] sql.INFO: [12.58] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:44:00.037791+00:00] sql.INFO: [1.5] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:44:19.228731+00:00] sql.INFO: [6.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:44:19.232045+00:00] sql.INFO: [1.36] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:44:28.172028+00:00] sql.INFO: [13.78] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:44:28.177518+00:00] sql.INFO: [1.86] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:47:12.603134+00:00] sql.INFO: [26.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:47:12.609128+00:00] sql.INFO: [2.02] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:47:56.180069+00:00] sql.INFO: [6.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:47:56.183781+00:00] sql.INFO: [1.14] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:48:47.552614+00:00] sql.INFO: [11.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:48:47.558361+00:00] sql.INFO: [2.06] select count(*) as aggregate from `article` [] []
-[2024-10-28T09:59:31.273413+00:00] sql.INFO: [8.26] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T09:59:31.276597+00:00] sql.INFO: [1.21] select count(*) as aggregate from `article` [] []
-[2024-10-28T10:01:41.907784+00:00] sql.INFO: [16.13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T10:01:41.913900+00:00] sql.INFO: [2.31] select count(*) as aggregate from `article` [] []
-[2024-10-28T10:01:56.976205+00:00] sql.INFO: [6.23] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-28T10:01:56.979928+00:00] sql.INFO: [1.39] select count(*) as aggregate from `article` [] []
-[2024-10-28T10:11:01.574355+00:00] sql.INFO: [5.79] select * from `category` where (`pid` = '0') [] []
-[2024-10-28T10:12:33.978283+00:00] sql.INFO: [6.73] select * from `category` where (`pid` = '0') [] []
-[2024-10-28T10:15:45.796213+00:00] sql.INFO: [6.69] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T00:45:12.074297+00:00] sql.INFO: [12.16] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T00:45:12.077776+00:00] sql.INFO: [1.12] select count(*) as aggregate from `article` [] []
-[2024-10-29T00:45:17.287355+00:00] sql.INFO: [10.05] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-29T00:45:17.291775+00:00] sql.INFO: [2.26] select count(*) as aggregate from `category` [] []
-[2024-10-29T00:45:19.787894+00:00] sql.INFO: [11.3] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T00:45:19.792318+00:00] sql.INFO: [1.57] select count(*) as aggregate from `article` [] []
-[2024-10-29T01:48:07.980493+00:00] sql.INFO: [14.03] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T01:48:07.983844+00:00] sql.INFO: [1.17] select count(*) as aggregate from `article` [] []
-[2024-10-29T09:00:41.948762+00:00] sql.INFO: [9.86] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:00:41.948145+00:00] sql.INFO: [7.31] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '46') limit 1 [] []
-[2024-10-29T09:00:48.280668+00:00] sql.INFO: [12.19] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:00:48.284793+00:00] sql.INFO: [1.62] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:00:55.555995+00:00] sql.INFO: [17.27] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:00:55.559668+00:00] sql.INFO: [1.42] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:01:07.960431+00:00] sql.INFO: [3.12] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:01:07.978925+00:00] sql.INFO: [25.18] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '26') limit 1 [] []
-[2024-10-29T09:01:08.063541+00:00] sql.INFO: [3.72] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:01:14.868187+00:00] sql.INFO: [8.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:01:14.871654+00:00] sql.INFO: [1.45] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:01:23.482052+00:00] sql.INFO: [7.03] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:01:23.485541+00:00] sql.INFO: [1.45] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:01:30.954322+00:00] sql.INFO: [17.56] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:01:30.957828+00:00] sql.INFO: [1.39] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:01:56.232084+00:00] sql.INFO: [7.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:01:56.236473+00:00] sql.INFO: [1.9] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:03.346836+00:00] sql.INFO: [12.25] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:03.350330+00:00] sql.INFO: [1.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:09.223098+00:00] sql.INFO: [15.54] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = 'ttt') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:09.225073+00:00] sql.INFO: [1.52] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = 'ttt') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:14.769084+00:00] sql.INFO: [2.54] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` = '政策') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:14.771333+00:00] sql.INFO: [1.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` = '政策') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:16.896859+00:00] sql.INFO: [18.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:16.902299+00:00] sql.INFO: [2.68] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:22.169010+00:00] sql.INFO: [15.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:22.175594+00:00] sql.INFO: [2.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:28.224924+00:00] sql.INFO: [2.55] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:28.227198+00:00] sql.INFO: [1.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:29.990221+00:00] sql.INFO: [3.75] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试标题333%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:29.993495+00:00] sql.INFO: [2.22] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试标题333%') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:31.911679+00:00] sql.INFO: [15.5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:31.915234+00:00] sql.INFO: [1.41] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:41.051071+00:00] sql.INFO: [22.24] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:41.055845+00:00] sql.INFO: [3.04] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:42.468662+00:00] sql.INFO: [2.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` = '政策法规') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:42.471011+00:00] sql.INFO: [1.72] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` = '政策法规') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:48.003280+00:00] sql.INFO: [14.42] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:48.007027+00:00] sql.INFO: [2.34] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:02:51.066200+00:00] sql.INFO: [16.33] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:02:51.071712+00:00] sql.INFO: [3.6] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:03:22.196688+00:00] sql.INFO: [20.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:03:22.200740+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` = '政策法规') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:03:30.618198+00:00] sql.INFO: [11.54] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:03:30.622462+00:00] sql.INFO: [1.74] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:12:12.676217+00:00] sql.INFO: [11.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:12:12.688168+00:00] sql.INFO: [1.37] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:11.806411+00:00] sql.INFO: [13.16] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:11.809954+00:00] sql.INFO: [1.51] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:23.421594+00:00] sql.INFO: [7.61] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:23.425170+00:00] sql.INFO: [1.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:41.661876+00:00] sql.INFO: [13.52] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:41.666116+00:00] sql.INFO: [2.54] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:48.719811+00:00] sql.INFO: [2.64] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:48.722608+00:00] sql.INFO: [2.11] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:51.192995+00:00] sql.INFO: [19.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:51.196531+00:00] sql.INFO: [1.37] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:54.033088+00:00] sql.INFO: [2.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:54.035501+00:00] sql.INFO: [1.81] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:20:58.900658+00:00] sql.INFO: [19.76] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%三农之窗%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:20:58.908323+00:00] sql.INFO: [4.17] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%三农之窗%') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:01.231370+00:00] sql.INFO: [2.44] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:01.233705+00:00] sql.INFO: [1.74] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:10.798102+00:00] sql.INFO: [2.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:10.800554+00:00] sql.INFO: [1.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:12.145609+00:00] sql.INFO: [21.44] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:12.152764+00:00] sql.INFO: [2.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:13.845599+00:00] sql.INFO: [2.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:13.848228+00:00] sql.INFO: [1.9] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:16.218120+00:00] sql.INFO: [21.32] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:16.221336+00:00] sql.INFO: [1.3] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:24.512045+00:00] sql.INFO: [10.39] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:24.515673+00:00] sql.INFO: [1.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:33.293708+00:00] sql.INFO: [19.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:33.301073+00:00] sql.INFO: [2.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:47.526636+00:00] sql.INFO: [2.85] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:47.529162+00:00] sql.INFO: [1.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:21:51.260291+00:00] sql.INFO: [17.32] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:21:51.268266+00:00] sql.INFO: [2.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:22:12.733192+00:00] sql.INFO: [2.22] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:22:12.759196+00:00] sql.INFO: [2.25] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '27') limit 1 [] []
-[2024-10-29T09:22:12.790151+00:00] sql.INFO: [1.88] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:22:14.857522+00:00] sql.INFO: [9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:22:14.862267+00:00] sql.INFO: [1.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:22:25.824271+00:00] sql.INFO: [2.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:22:25.826248+00:00] sql.INFO: [1.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:22:29.366043+00:00] sql.INFO: [2.43] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:22:29.368309+00:00] sql.INFO: [1.66] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:23:07.261730+00:00] sql.INFO: [11.85] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:23:07.265793+00:00] sql.INFO: [1.87] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:23:44.047946+00:00] sql.INFO: [20.27] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:23:44.140840+00:00] sql.INFO: [1.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:23:48.566358+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '0') [] []
-[2024-10-29T09:23:52.279250+00:00] sql.INFO: [2.41] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:23:52.281932+00:00] sql.INFO: [2.01] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:30.093008+00:00] sql.INFO: [11.71] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:30.105191+00:00] sql.INFO: [1.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:36.738753+00:00] sql.INFO: [6.91] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:36.741449+00:00] sql.INFO: [1.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:41.301885+00:00] sql.INFO: [15.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:41.306200+00:00] sql.INFO: [1.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:46.675499+00:00] sql.INFO: [8.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '404') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:46.681374+00:00] sql.INFO: [4.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '404') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:49.549899+00:00] sql.INFO: [14.1] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:49.554894+00:00] sql.INFO: [2.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:53.077221+00:00] sql.INFO: [55.52] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:53.080866+00:00] sql.INFO: [1.49] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:56.794524+00:00] sql.INFO: [8.76] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:56.799155+00:00] sql.INFO: [2.51] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:24:58.980471+00:00] sql.INFO: [5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:24:58.982697+00:00] sql.INFO: [1.29] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:25:03.527973+00:00] sql.INFO: [8.39] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:25:03.533152+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:26:13.708584+00:00] sql.INFO: [9.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:26:13.718880+00:00] sql.INFO: [1.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:27:00.157389+00:00] sql.INFO: [11.5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:27:00.170016+00:00] sql.INFO: [2.18] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `category`.`name` like '%政策%' and `article`.`author` = '刘佳伟') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:27:32.565812+00:00] sql.INFO: [10.27] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:27:32.570833+00:00] sql.INFO: [2.3] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:27:52.861929+00:00] sql.INFO: [7.26] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:27:52.865368+00:00] sql.INFO: [1.32] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:27:58.082385+00:00] sql.INFO: [6.64] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:27:58.086077+00:00] sql.INFO: [1.52] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:28:55.645367+00:00] sql.INFO: [12.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:28:55.653581+00:00] sql.INFO: [1.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:29:02.340079+00:00] sql.INFO: [6.03] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:29:02.347505+00:00] sql.INFO: [2.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%刘佳伟%' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:39:11.661687+00:00] sql.INFO: [13.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:39:11.673337+00:00] sql.INFO: [1.59] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-29T09:39:11.692313+00:00] sql.INFO: [8.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:39:11.696252+00:00] sql.INFO: [1.56] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:39:15.846649+00:00] sql.INFO: [4.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:39:15.849241+00:00] sql.INFO: [1.41] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:39:17.599638+00:00] sql.INFO: [16.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:39:17.605614+00:00] sql.INFO: [2.49] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-10-29T09:39:20.280648+00:00] sql.INFO: [16.42] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-29T09:39:20.284206+00:00] sql.INFO: [1.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:09:06.623377+00:00] sql.INFO: [11.73] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:06.626861+00:00] sql.INFO: [1.33] select count(*) as aggregate from `category` [] []
-[2024-10-30T00:09:30.625978+00:00] sql.INFO: [15.51] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:30.631583+00:00] sql.INFO: [3.51] select count(*) as aggregate from `category` [] []
-[2024-10-30T00:09:35.747428+00:00] sql.INFO: [20.29] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:35.751857+00:00] sql.INFO: [1.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:09:40.744498+00:00] sql.INFO: [12.17] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:40.748500+00:00] sql.INFO: [1.52] select count(*) as aggregate from `category` [] []
-[2024-10-30T00:09:43.127078+00:00] sql.INFO: [15.89] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:43.139747+00:00] sql.INFO: [4] select count(*) as aggregate from `category` [] []
-[2024-10-30T00:09:50.321264+00:00] sql.INFO: [9.7] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`name` like '%权重预告排序越靠前%') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T00:09:50.325079+00:00] sql.INFO: [2.65] select count(*) as aggregate from `category` where (`category`.`name` like '%权重预告排序越靠前%') [] []
-[2024-10-30T00:10:05.338668+00:00] sql.INFO: [12.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:10:05.342081+00:00] sql.INFO: [1.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:10:17.686753+00:00] sql.INFO: [2.57] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:17.693984+00:00] sql.INFO: [8.38] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '27') limit 1 [] []
-[2024-10-30T00:10:17.735638+00:00] sql.INFO: [1.99] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:27.040940+00:00] sql.INFO: [15.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:10:27.045229+00:00] sql.INFO: [1.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:10:32.542411+00:00] sql.INFO: [33.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-10-30T00:10:32.549458+00:00] sql.INFO: [2.45] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:10:36.647997+00:00] sql.INFO: [2.3] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:36.665963+00:00] sql.INFO: [18.54] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '7') limit 1 [] []
-[2024-10-30T00:10:36.692234+00:00] sql.INFO: [1.97] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:36.704681+00:00] sql.INFO: [1.75] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:36.716417+00:00] sql.INFO: [1.71] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:10:36.732958+00:00] sql.INFO: [1.6] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:10:36.740724+00:00] sql.INFO: [1.55] select * from `category` where (`pid` = '7') [] []
-[2024-10-30T00:10:36.776397+00:00] sql.INFO: [2.49] select * from `category` where (`pid` = '8') [] []
-[2024-10-30T00:10:36.799406+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:10:36.830159+00:00] sql.INFO: [2.22] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:10:47.432151+00:00] sql.INFO: [27.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:10:47.435691+00:00] sql.INFO: [1.54] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:11:25.880476+00:00] sql.INFO: [4.58] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:11:25.902344+00:00] sql.INFO: [28.26] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '27') limit 1 [] []
-[2024-10-30T00:11:25.926521+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:12:41.273803+00:00] sql.INFO: [29.22] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:12:41.278227+00:00] sql.INFO: [2.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:12:45.581283+00:00] sql.INFO: [24.81] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-10-30T00:12:45.585490+00:00] sql.INFO: [1.28] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:12:54.101680+00:00] sql.INFO: [4.06] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:12:54.108562+00:00] sql.INFO: [10.91] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '7') limit 1 [] []
-[2024-10-30T00:12:54.141440+00:00] sql.INFO: [2] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:12:54.153456+00:00] sql.INFO: [1.61] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:12:54.164255+00:00] sql.INFO: [1.73] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:12:54.194092+00:00] sql.INFO: [1.74] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:12:54.205888+00:00] sql.INFO: [1.6] select * from `category` where (`pid` = '7') [] []
-[2024-10-30T00:12:54.264767+00:00] sql.INFO: [1.72] select * from `category` where (`pid` = '8') [] []
-[2024-10-30T00:12:54.303127+00:00] sql.INFO: [1.92] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:12:54.335225+00:00] sql.INFO: [3.25] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:13:55.144706+00:00] sql.INFO: [13.25] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:13:55.147359+00:00] sql.INFO: [8.64] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '7') limit 1 [] []
-[2024-10-30T00:13:55.193861+00:00] sql.INFO: [3.91] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:13:55.210035+00:00] sql.INFO: [1.78] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:13:55.221220+00:00] sql.INFO: [1.55] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:13:55.271170+00:00] sql.INFO: [3.69] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:13:55.280873+00:00] sql.INFO: [1.88] select * from `category` where (`pid` = '7') [] []
-[2024-10-30T00:13:55.389145+00:00] sql.INFO: [4.35] select * from `category` where (`pid` = '8') [] []
-[2024-10-30T00:13:55.414083+00:00] sql.INFO: [1.93] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:13:55.454015+00:00] sql.INFO: [1.84] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:16:48.599232+00:00] sql.INFO: [16.1] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:16:48.601634+00:00] sql.INFO: [18.46] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '7') limit 1 [] []
-[2024-10-30T00:16:48.686207+00:00] sql.INFO: [2.03] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:16:48.699417+00:00] sql.INFO: [1.75] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:16:48.716567+00:00] sql.INFO: [1.73] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:16:48.748125+00:00] sql.INFO: [1.77] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:16:48.758689+00:00] sql.INFO: [1.58] select * from `category` where (`pid` = '7') [] []
-[2024-10-30T00:16:48.843899+00:00] sql.INFO: [1.84] select * from `category` where (`pid` = '8') [] []
-[2024-10-30T00:16:48.890927+00:00] sql.INFO: [4.15] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:16:48.935566+00:00] sql.INFO: [4.08] select * from `category` where (`pid` = '5') [] []
-[2024-10-30T00:16:56.728313+00:00] sql.INFO: [18.71] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:16:56.734373+00:00] sql.INFO: [2.66] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:16:59.315396+00:00] sql.INFO: [2.59] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:16:59.315884+00:00] sql.INFO: [3.11] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '26') limit 1 [] []
-[2024-10-30T00:16:59.352598+00:00] sql.INFO: [1.92] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:17:03.350997+00:00] sql.INFO: [15.24] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:17:03.356078+00:00] sql.INFO: [2.29] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:17:05.891220+00:00] sql.INFO: [4.57] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:18:24.597322+00:00] sql.INFO: [13.43] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:18:44.786522+00:00] sql.INFO: [5.8] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:19:27.686182+00:00] sql.INFO: [9.71] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('刘佳伟外号三重刘德华', '1', 'www.baidu.com', '[2]', '0', '', '', '', 'admin', '0', '0', '', '', '0', '2', '172.17.0.1', '73') [] []
-[2024-10-30T00:19:27.700794+00:00] sql.INFO: [8.53] insert into `article_data` (`article_id`, `content`) values ('28', '') [] []
-[2024-10-30T00:19:28.364036+00:00] sql.INFO: [16.4] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:19:28.369095+00:00] sql.INFO: [2.45] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:19:39.720622+00:00] sql.INFO: [5.14] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:19:39.739805+00:00] sql.INFO: [21.56] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '28') limit 1 [] []
-[2024-10-30T00:19:39.798839+00:00] sql.INFO: [4.73] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:19:52.993409+00:00] sql.INFO: [14.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:19:52.999461+00:00] sql.INFO: [2.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:20:34.759367+00:00] sql.INFO: [3.63] update `article` set `status` = '404', `article`.`updated_at` = '2024-10-30 00:20:34' where (`id` = '28') [] []
-[2024-10-30T00:20:34.795103+00:00] sql.INFO: [8.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:20:34.802122+00:00] sql.INFO: [2.75] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:20:39.831932+00:00] sql.INFO: [11.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:20:39.835801+00:00] sql.INFO: [1.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:20:41.948349+00:00] sql.INFO: [2.84] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:16.801924+00:00] sql.INFO: [4.49] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('刘佳伟外号是三重刘德华', '1', 'https://www.baidu.com/liujiawei/news', '[1]', '0', '', '', '', 'admin', '0', '0', '', '', '0', '1', '172.17.0.1', '73') [] []
-[2024-10-30T00:21:16.805417+00:00] sql.INFO: [2.86] insert into `article_data` (`article_id`, `content`) values ('29', '') [] []
-[2024-10-30T00:21:17.432229+00:00] sql.INFO: [12.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:21:17.437067+00:00] sql.INFO: [2.3] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:21:28.767505+00:00] sql.INFO: [2.9] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:28.783050+00:00] sql.INFO: [16.24] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-10-30T00:21:28.814073+00:00] sql.INFO: [1.87] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:34.492910+00:00] sql.INFO: [6.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:21:34.497178+00:00] sql.INFO: [1.93] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:21:37.245485+00:00] sql.INFO: [2.52] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:37.245752+00:00] sql.INFO: [2.84] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '27') limit 1 [] []
-[2024-10-30T00:21:37.269215+00:00] sql.INFO: [2.41] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:39.400639+00:00] sql.INFO: [8.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:21:39.404302+00:00] sql.INFO: [1.63] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T00:21:43.069998+00:00] sql.INFO: [2.31] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:43.070347+00:00] sql.INFO: [2.8] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '26') limit 1 [] []
-[2024-10-30T00:21:43.106693+00:00] sql.INFO: [2.26] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T00:21:46.485783+00:00] sql.INFO: [5.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T00:21:46.489422+00:00] sql.INFO: [1.62] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T01:15:56.540664+00:00] sql.INFO: [10.48] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T01:15:56.543897+00:00] sql.INFO: [1.21] select count(*) as aggregate from `category` [] []
-[2024-10-30T01:16:04.804836+00:00] sql.INFO: [23.68] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T01:16:04.808532+00:00] sql.INFO: [1.58] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T01:16:44.123312+00:00] sql.INFO: [7.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T01:16:44.129030+00:00] sql.INFO: [2.84] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T01:18:36.885507+00:00] sql.INFO: [10.37] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T01:18:36.888559+00:00] sql.INFO: [1.3] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T01:19:46.243684+00:00] sql.INFO: [27.71] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T01:19:46.249561+00:00] sql.INFO: [2.39] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T01:19:48.010593+00:00] sql.INFO: [3.25] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-10-30T01:19:48.014129+00:00] sql.INFO: [6.59] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:19:48.036435+00:00] sql.INFO: [2.22] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:19:59.460281+00:00] sql.INFO: [10.05] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T01:19:59.465441+00:00] sql.INFO: [2.3] select count(*) as aggregate from `category` [] []
-[2024-10-30T01:20:00.378143+00:00] sql.INFO: [2.25] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-10-30T01:20:00.378646+00:00] sql.INFO: [2.33] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:20:00.412073+00:00] sql.INFO: [1.96] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:20:20.172112+00:00] sql.INFO: [3.79] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-10-30T01:20:20.219895+00:00] sql.INFO: [2.77] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:20:36.088016+00:00] sql.INFO: [10.11] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T01:20:36.091375+00:00] sql.INFO: [1.14] select count(*) as aggregate from `category` [] []
-[2024-10-30T01:20:36.985340+00:00] sql.INFO: [2.87] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:20:36.985366+00:00] sql.INFO: [2.91] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-10-30T01:20:37.021038+00:00] sql.INFO: [1.91] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T01:20:53.227956+00:00] sql.INFO: [14.22] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T01:20:53.233127+00:00] sql.INFO: [2.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T02:03:14.517994+00:00] sql.INFO: [15.19] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T02:03:14.521979+00:00] sql.INFO: [1.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T02:03:16.800688+00:00] sql.INFO: [4.69] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:19.247539+00:00] sql.INFO: [7.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T02:03:19.251659+00:00] sql.INFO: [1.94] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T02:03:21.706459+00:00] sql.INFO: [3.7] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:21.719412+00:00] sql.INFO: [8.12] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-10-30T02:03:21.749370+00:00] sql.INFO: [2] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:31.965266+00:00] sql.INFO: [9.34] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T02:03:31.968361+00:00] sql.INFO: [1.21] select count(*) as aggregate from `category` [] []
-[2024-10-30T02:03:32.811390+00:00] sql.INFO: [9.84] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:32.812365+00:00] sql.INFO: [10.62] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-10-30T02:03:32.859927+00:00] sql.INFO: [3.9] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:46.295787+00:00] sql.INFO: [9.23] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T02:03:46.299782+00:00] sql.INFO: [1.67] select count(*) as aggregate from `category` [] []
-[2024-10-30T02:03:47.906768+00:00] sql.INFO: [2.24] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:03:51.071423+00:00] sql.INFO: [5.32] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-10-30T02:03:51.117650+00:00] sql.INFO: [5.62] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:04:08.277769+00:00] sql.INFO: [13.42] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T02:04:08.289160+00:00] sql.INFO: [4.1] select count(*) as aggregate from `category` [] []
-[2024-10-30T02:04:11.878246+00:00] sql.INFO: [25.38] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T02:04:11.881937+00:00] sql.INFO: [1.6] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T02:04:14.026476+00:00] sql.INFO: [3.81] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T02:04:14.026656+00:00] sql.INFO: [4.15] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-10-30T02:04:14.055489+00:00] sql.INFO: [2.93] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:04:30.011437+00:00] sql.INFO: [69.69] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T08:04:30.085753+00:00] sql.INFO: [3] select count(*) as aggregate from `category` [] []
-[2024-10-30T08:04:30.986432+00:00] sql.INFO: [6.62] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T08:04:30.989136+00:00] sql.INFO: [1.13] select count(*) as aggregate from `category` [] []
-[2024-10-30T08:04:34.245121+00:00] sql.INFO: [8.88] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T08:04:34.247803+00:00] sql.INFO: [1.11] select count(*) as aggregate from `category` [] []
-[2024-10-30T08:04:38.010678+00:00] sql.INFO: [14.9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T08:04:38.016795+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T08:04:41.532337+00:00] sql.INFO: [9.47] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:08:31.684099+00:00] sql.INFO: [8.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T08:08:31.686957+00:00] sql.INFO: [1.19] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T08:08:33.927357+00:00] sql.INFO: [3.03] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:09:25.597280+00:00] sql.INFO: [2.17] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:18:46.444019+00:00] sql.INFO: [5.82] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:18:55.064754+00:00] sql.INFO: [2.2] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:20:19.800601+00:00] sql.INFO: [6.68] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:22:03.377799+00:00] sql.INFO: [5.55] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:23:10.110741+00:00] sql.INFO: [6.99] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:23:25.155999+00:00] sql.INFO: [2.51] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:23:54.619233+00:00] sql.INFO: [2.93] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:24:35.192576+00:00] sql.INFO: [2.12] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:28:57.970029+00:00] sql.INFO: [6.09] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:29:00.184413+00:00] sql.INFO: [2.32] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:29:05.557334+00:00] sql.INFO: [2.15] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:29:43.362933+00:00] sql.INFO: [1.99] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:30:59.002242+00:00] sql.INFO: [5] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:31:26.081902+00:00] sql.INFO: [2.12] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:31:40.446276+00:00] sql.INFO: [2.37] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:36:41.337775+00:00] sql.INFO: [6.09] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:37:11.668571+00:00] sql.INFO: [2.07] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T08:54:05.817942+00:00] sql.INFO: [8.7] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T08:54:05.820844+00:00] sql.INFO: [1.2] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T09:46:02.710284+00:00] sql.INFO: [10.4] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T09:46:02.713597+00:00] sql.INFO: [1.55] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T09:46:04.410685+00:00] sql.INFO: [2.26] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T09:46:47.797355+00:00] sql.INFO: [8.7] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('测试数据001', '1', 'http://www.baidu.com', '[1]', '0', '', '', '', '刘德华', '0', '0', '', '', '0', '1', '172.17.0.1', '73') [] []
-[2024-10-30T09:46:47.819657+00:00] sql.INFO: [15.16] insert into `article_data` (`article_id`, `content`) values ('30', '') [] []
-[2024-10-30T09:46:48.421640+00:00] sql.INFO: [7.25] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T09:46:48.424746+00:00] sql.INFO: [1.32] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T09:55:04.747527+00:00] sql.INFO: [11.86] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T09:55:04.750289+00:00] sql.INFO: [1.15] select count(*) as aggregate from `category` [] []
-[2024-10-30T09:55:18.078258+00:00] sql.INFO: [2.09] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T09:55:51.200188+00:00] sql.INFO: [2.1] insert into `category` (`name`, `is_url`, `web_url`, `department_arr_id`, `city_arr_id`, `sort`, `seo_title`, `seo_keywords`, `seo_description`, `pid_arr`, `pid`, `city_id`, `department_id`) values ('测试数据', '0', '', '[712]', '[33]', '0', '错了', '错了', '错了', '[1]', '1', '33', '712') [] []
-[2024-10-30T09:55:51.239594+00:00] sql.INFO: [7.03] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T09:55:51.242877+00:00] sql.INFO: [1.35] select count(*) as aggregate from `category` [] []
-[2024-10-30T09:56:15.177315+00:00] sql.INFO: [8.54] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-30T09:56:15.180340+00:00] sql.INFO: [1.39] select count(*) as aggregate from `category` [] []
-[2024-10-30T09:56:20.502888+00:00] sql.INFO: [7.65] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T09:56:41.524417+00:00] sql.INFO: [6.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T09:56:41.527769+00:00] sql.INFO: [1.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T09:58:40.374273+00:00] sql.INFO: [7.6] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-30T09:58:40.377462+00:00] sql.INFO: [1.42] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-30T09:58:43.273998+00:00] sql.INFO: [5.78] select * from `category` where (`pid` = '0') [] []
-[2024-10-30T09:58:43.291714+00:00] sql.INFO: [27.73] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-10-30T09:58:43.311241+00:00] sql.INFO: [1.83] select * from `category` where (`pid` = '0') [] []
-[2024-10-31T01:41:25.280240+00:00] sql.INFO: [10.76] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T01:41:25.284428+00:00] sql.INFO: [2.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T01:42:12.436649+00:00] sql.INFO: [37.04] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-31T01:42:12.439883+00:00] sql.INFO: [1.28] select count(*) as aggregate from `category` [] []
-[2024-10-31T02:04:39.448793+00:00] sql.INFO: [21.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:04:39.454950+00:00] sql.INFO: [2.78] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T02:05:23.611204+00:00] sql.INFO: [15.91] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:05:23.618120+00:00] sql.INFO: [3.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T02:07:46.875719+00:00] sql.INFO: [9.35] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:07:46.878923+00:00] sql.INFO: [1.58] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T02:36:20.534980+00:00] sql.INFO: [9.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:36:20.538596+00:00] sql.INFO: [1.71] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T02:37:00.215704+00:00] sql.INFO: [5.63] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:37:00.218909+00:00] sql.INFO: [1.46] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T02:37:27.717990+00:00] sql.INFO: [26.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T02:37:27.721662+00:00] sql.INFO: [1.93] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T03:09:48.631926+00:00] sql.INFO: [9.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T03:09:48.635316+00:00] sql.INFO: [1.66] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T05:25:11.459005+00:00] sql.INFO: [8.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T05:25:11.462370+00:00] sql.INFO: [1.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T05:25:22.939790+00:00] sql.INFO: [7.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T05:25:22.945322+00:00] sql.INFO: [2.96] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:22:01.926960+00:00] sql.INFO: [9.27] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:22:01.930705+00:00] sql.INFO: [1.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:30:31.851994+00:00] sql.INFO: [9.58] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-10-31T06:30:31.854577+00:00] sql.INFO: [1.07] select count(*) as aggregate from `category` [] []
-[2024-10-31T06:33:37.068796+00:00] sql.INFO: [12.85] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:33:37.073312+00:00] sql.INFO: [2.18] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:39:24.974311+00:00] sql.INFO: [16.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:39:24.978303+00:00] sql.INFO: [1.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:41:53.543744+00:00] sql.INFO: [16.67] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:41:53.547435+00:00] sql.INFO: [1.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:43:24.093659+00:00] sql.INFO: [13.1] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:43:24.097175+00:00] sql.INFO: [1.86] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:43:39.122779+00:00] sql.INFO: [8.44] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:43:39.127155+00:00] sql.INFO: [2.13] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:43:59.024080+00:00] sql.INFO: [14.57] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:43:59.029019+00:00] sql.INFO: [2.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:43:59.660937+00:00] sql.INFO: [6.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:43:59.664587+00:00] sql.INFO: [1.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:47:00.128964+00:00] sql.INFO: [10.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:47:00.132297+00:00] sql.INFO: [1.59] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:58:58.244150+00:00] sql.INFO: [23.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:58:58.250960+00:00] sql.INFO: [2.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T06:59:05.173647+00:00] sql.INFO: [17.13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T06:59:05.180960+00:00] sql.INFO: [3.25] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-10-31T08:10:53.213228+00:00] sql.INFO: [9.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-10-31T08:10:53.217138+00:00] sql.INFO: [1.96] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T01:59:50.118855+00:00] sql.INFO: [12.63] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T01:59:50.122627+00:00] sql.INFO: [1.88] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T01:59:54.371792+00:00] sql.INFO: [29.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T01:59:54.379024+00:00] sql.INFO: [3.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:07:59.204201+00:00] sql.INFO: [10.84] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:07:59.208848+00:00] sql.INFO: [2.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:08:09.649901+00:00] sql.INFO: [11.55] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:08:09.655924+00:00] sql.INFO: [2.87] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:08:20.093440+00:00] sql.INFO: [14.08] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:08:20.099435+00:00] sql.INFO: [2.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:10:15.245137+00:00] sql.INFO: [8.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:10:15.248516+00:00] sql.INFO: [1.66] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:37:06.496842+00:00] sql.INFO: [10.19] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:37:06.500547+00:00] sql.INFO: [1.84] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:37:57.993189+00:00] sql.INFO: [6.35] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:37:57.996893+00:00] sql.INFO: [1.99] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:39:08.074016+00:00] sql.INFO: [11.98] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:39:08.078679+00:00] sql.INFO: [2.8] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:39:08.552325+00:00] sql.INFO: [19.83] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:39:08.556277+00:00] sql.INFO: [1.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:39:36.647883+00:00] sql.INFO: [9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:39:36.652155+00:00] sql.INFO: [2.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:39:37.034712+00:00] sql.INFO: [7.1] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:39:37.038229+00:00] sql.INFO: [1.75] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:40:27.674752+00:00] sql.INFO: [7.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:40:27.678523+00:00] sql.INFO: [2.02] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:40:28.240047+00:00] sql.INFO: [7.15] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:40:28.243398+00:00] sql.INFO: [1.7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:45:09.352640+00:00] sql.INFO: [10] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:45:09.357010+00:00] sql.INFO: [2.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:45:11.491895+00:00] sql.INFO: [13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:45:11.497779+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:45:22.615809+00:00] sql.INFO: [6.78] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:45:22.619551+00:00] sql.INFO: [1.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:45:23.716084+00:00] sql.INFO: [16.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:45:23.722718+00:00] sql.INFO: [2.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:46:16.938291+00:00] sql.INFO: [7.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:46:16.941846+00:00] sql.INFO: [1.73] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:46:17.527933+00:00] sql.INFO: [11.05] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:46:17.533936+00:00] sql.INFO: [2.39] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:47:12.714962+00:00] sql.INFO: [6.59] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:47:12.718324+00:00] sql.INFO: [1.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:47:13.665489+00:00] sql.INFO: [28.3] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:47:13.669855+00:00] sql.INFO: [2.1] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:47:41.520956+00:00] sql.INFO: [7.19] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:47:41.524620+00:00] sql.INFO: [1.81] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:47:42.557532+00:00] sql.INFO: [11.81] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:47:42.563814+00:00] sql.INFO: [2.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T02:59:43.041223+00:00] sql.INFO: [11.98] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T02:59:43.045042+00:00] sql.INFO: [1.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T03:00:08.033511+00:00] sql.INFO: [16.53] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T03:00:08.041006+00:00] sql.INFO: [3.65] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T05:04:53.185194+00:00] sql.INFO: [15.63] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T05:04:53.189402+00:00] sql.INFO: [1.74] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T05:25:12.924799+00:00] sql.INFO: [7.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-01T06:27:52.998251+00:00] sql.INFO: [15.37] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T06:27:53.003941+00:00] sql.INFO: [2.51] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T06:36:46.698793+00:00] sql.INFO: [14.12] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T06:36:46.701605+00:00] sql.INFO: [1.2] select count(*) as aggregate from `category` [] []
-[2024-11-01T06:36:57.188299+00:00] sql.INFO: [4.99] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T06:36:57.191656+00:00] sql.INFO: [1.54] select count(*) as aggregate from `category` [] []
-[2024-11-01T06:37:04.597146+00:00] sql.INFO: [11.26] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T06:37:04.601742+00:00] sql.INFO: [2.17] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T06:47:05.041751+00:00] sql.INFO: [23.5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T06:47:05.047336+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T06:47:07.053996+00:00] sql.INFO: [2.11] select * from `category` where (`pid` = '0') [] []
-[2024-11-01T06:47:18.883712+00:00] sql.INFO: [72.7] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T06:47:18.890272+00:00] sql.INFO: [3.94] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T08:34:11.506979+00:00] sql.INFO: [14.65] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:11.519172+00:00] sql.INFO: [1.21] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:34:19.035142+00:00] sql.INFO: [7.67] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:19.038388+00:00] sql.INFO: [1.4] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:34:20.071364+00:00] sql.INFO: [15.9] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:20.080211+00:00] sql.INFO: [3.07] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:34:20.316481+00:00] sql.INFO: [13.28] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:20.323334+00:00] sql.INFO: [2.75] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:34:23.376419+00:00] sql.INFO: [9.95] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:23.379970+00:00] sql.INFO: [1.39] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:34:35.486980+00:00] sql.INFO: [6.89] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-01T08:34:35.491383+00:00] sql.INFO: [2.13] select count(*) as aggregate from `category` [] []
-[2024-11-01T08:35:01.896311+00:00] sql.INFO: [5.71] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T08:35:01.899937+00:00] sql.INFO: [1.6] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T08:40:18.810875+00:00] sql.INFO: [11.76] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T08:40:18.815705+00:00] sql.INFO: [2.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-01T08:57:28.716449+00:00] sql.INFO: [10.4] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-01T08:57:28.720377+00:00] sql.INFO: [2.25] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T05:08:37.310319+00:00] sql.INFO: [30.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T05:08:37.342494+00:00] sql.INFO: [4.72] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T05:21:51.059525+00:00] sql.INFO: [50.55] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:21:51.063373+00:00] sql.INFO: [1.66] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:22:02.819644+00:00] sql.INFO: [6.47] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:22:02.822879+00:00] sql.INFO: [1.53] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:27:01.244002+00:00] sql.INFO: [18.83] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:27:01.247862+00:00] sql.INFO: [2] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:27:41.901932+00:00] sql.INFO: [5.38] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 10 [] []
-[2024-11-04T05:27:41.904261+00:00] sql.INFO: [1.97] select count(*) as aggregate from `category` where (`category`.`city_id` = '33') [] []
-[2024-11-04T05:27:52.394932+00:00] sql.INFO: [8.58] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:27:52.400720+00:00] sql.INFO: [3.62] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:27:58.961669+00:00] sql.INFO: [15.36] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 20 [] []
-[2024-11-04T05:27:58.965190+00:00] sql.INFO: [1.76] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:28:06.234439+00:00] sql.INFO: [8.52] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:28:06.238590+00:00] sql.INFO: [2.18] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:28:07.723599+00:00] sql.INFO: [11.45] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 10 [] []
-[2024-11-04T05:28:07.727082+00:00] sql.INFO: [1.75] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:28:11.321712+00:00] sql.INFO: [8.93] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T05:28:11.325561+00:00] sql.INFO: [2.04] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:28:13.987729+00:00] sql.INFO: [11.77] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 10 [] []
-[2024-11-04T05:28:13.991051+00:00] sql.INFO: [1.65] select count(*) as aggregate from `category` [] []
-[2024-11-04T05:28:43.432113+00:00] sql.INFO: [8.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T05:28:43.437198+00:00] sql.INFO: [2.97] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T05:28:47.675059+00:00] sql.INFO: [3.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T05:28:47.682529+00:00] sql.INFO: [9.38] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-04T05:28:47.734593+00:00] sql.INFO: [3.74] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T05:28:57.957134+00:00] sql.INFO: [6.82] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T05:28:57.961699+00:00] sql.INFO: [2.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T05:29:13.465577+00:00] sql.INFO: [4.11] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '536') limit 1 [] []
-[2024-11-04T05:29:13.465847+00:00] sql.INFO: [4.03] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T05:29:13.511008+00:00] sql.INFO: [3.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T05:29:23.627522+00:00] sql.INFO: [4.72] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '536') limit 1 [] []
-[2024-11-04T05:29:23.627853+00:00] sql.INFO: [5.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T05:29:23.697204+00:00] sql.INFO: [3.47] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:04.754267+00:00] sql.INFO: [18.31] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-04T09:23:04.759749+00:00] sql.INFO: [2.78] select count(*) as aggregate from `category` [] []
-[2024-11-04T09:23:06.851462+00:00] sql.INFO: [3.34] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-04T09:23:06.861520+00:00] sql.INFO: [11.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:06.923607+00:00] sql.INFO: [3.59] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:19.722889+00:00] sql.INFO: [4.15] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-04T09:23:19.890275+00:00] sql.INFO: [6.3] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:20.049430+00:00] sql.INFO: [3.84] select * from `category` where (`pid` = '2') [] []
-[2024-11-04T09:23:33.005711+00:00] sql.INFO: [7.51] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:23:33.011356+00:00] sql.INFO: [3.41] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T09:23:37.188978+00:00] sql.INFO: [4.55] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:37.189286+00:00] sql.INFO: [4.25] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '536') limit 1 [] []
-[2024-11-04T09:23:37.233541+00:00] sql.INFO: [3.9] select * from `category` where (`pid` = '0') [] []
-[2024-11-04T09:23:51.253008+00:00] sql.INFO: [7.03] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:23:51.257784+00:00] sql.INFO: [2.95] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:09.937773+00:00] sql.INFO: [9.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:09.942312+00:00] sql.INFO: [2.51] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:11.235781+00:00] sql.INFO: [8.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:11.240389+00:00] sql.INFO: [2.66] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:11.777937+00:00] sql.INFO: [14.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:11.784295+00:00] sql.INFO: [3.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:12.246372+00:00] sql.INFO: [18.84] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:12.252462+00:00] sql.INFO: [3.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:15.801386+00:00] sql.INFO: [7.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:15.805764+00:00] sql.INFO: [2.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:16.419342+00:00] sql.INFO: [8.1] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:16.423803+00:00] sql.INFO: [2.34] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:16.857093+00:00] sql.INFO: [13.18] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:16.862330+00:00] sql.INFO: [3.01] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:27.013967+00:00] sql.INFO: [102.63] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:27.017932+00:00] sql.INFO: [3.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:33.333504+00:00] sql.INFO: [7.9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:33.338393+00:00] sql.INFO: [2.8] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:35.518656+00:00] sql.INFO: [4.39] update `article` set `id` = '540', `status` = '1', `article`.`updated_at` = '2024-11-04 09:24:35' where (`id` = '540') [] []
-[2024-11-04T09:24:37.431868+00:00] sql.INFO: [10.37] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:37.436671+00:00] sql.INFO: [2.88] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:24:43.502057+00:00] sql.INFO: [4.2] update `article` set `id` = '539', `status` = '1', `article`.`updated_at` = '2024-11-04 09:24:43' where (`id` = '539') [] []
-[2024-11-04T09:24:44.979437+00:00] sql.INFO: [9.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:24:44.985852+00:00] sql.INFO: [3.7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`title` like '%测试数%' and `article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-04T09:28:25.727704+00:00] sql.INFO: [9.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:28:25.731417+00:00] sql.INFO: [1.84] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T09:41:29.914366+00:00] sql.INFO: [21.65] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-04T09:41:29.919820+00:00] sql.INFO: [3.58] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-04T09:41:32.000138+00:00] sql.INFO: [4.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:22:27.420488+00:00] sql.INFO: [15.19] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:22:27.424539+00:00] sql.INFO: [2.08] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:22:36.862673+00:00] sql.INFO: [13.6] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:22:36.867375+00:00] sql.INFO: [2.65] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:22:39.953750+00:00] sql.INFO: [3.92] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T00:22:39.963560+00:00] sql.INFO: [10.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:22:40.012340+00:00] sql.INFO: [5.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:22:45.450477+00:00] sql.INFO: [9.01] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:22:45.455453+00:00] sql.INFO: [2.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:22:50.862777+00:00] sql.INFO: [9.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:22:54.137014+00:00] sql.INFO: [7.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:22:54.142085+00:00] sql.INFO: [2.88] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:23:01.394141+00:00] sql.INFO: [7.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:01.418246+00:00] sql.INFO: [31.41] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-05T00:23:01.451645+00:00] sql.INFO: [6.66] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:03.540346+00:00] sql.INFO: [13.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:23:03.547754+00:00] sql.INFO: [3.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:23:07.098383+00:00] sql.INFO: [10.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:07.101623+00:00] sql.INFO: [9.63] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:23:07.130737+00:00] sql.INFO: [5.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:15.269046+00:00] sql.INFO: [3.46] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:15.270032+00:00] sql.INFO: [3.64] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:23:15.322894+00:00] sql.INFO: [4.86] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:36.407508+00:00] sql.INFO: [5.32] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:23:36.408246+00:00] sql.INFO: [6.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:23:36.464449+00:00] sql.INFO: [6.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:25:05.782577+00:00] sql.INFO: [18.95] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:25:05.783019+00:00] sql.INFO: [15.27] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:25:05.832368+00:00] sql.INFO: [8.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:03.283149+00:00] sql.INFO: [9.37] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:26:03.288893+00:00] sql.INFO: [3.18] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:05.828715+00:00] sql.INFO: [16.76] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-05T00:26:05.836157+00:00] sql.INFO: [23.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:05.920703+00:00] sql.INFO: [15.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:07.887886+00:00] sql.INFO: [7.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:26:07.893631+00:00] sql.INFO: [2.97] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:10.334024+00:00] sql.INFO: [10.81] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:10.347901+00:00] sql.INFO: [10.72] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-05T00:26:10.404603+00:00] sql.INFO: [8.12] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:12.190253+00:00] sql.INFO: [9.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:26:12.196521+00:00] sql.INFO: [3.6] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:17.354870+00:00] sql.INFO: [41.72] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 20 [] []
-[2024-11-05T00:26:17.361033+00:00] sql.INFO: [3.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:18.319578+00:00] sql.INFO: [37.26] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 30 [] []
-[2024-11-05T00:26:18.325960+00:00] sql.INFO: [3.99] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:22.260120+00:00] sql.INFO: [28.08] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:26:22.273190+00:00] sql.INFO: [6.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:23.406225+00:00] sql.INFO: [74.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 50 [] []
-[2024-11-05T00:26:23.412415+00:00] sql.INFO: [4.17] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:23.898069+00:00] sql.INFO: [45.39] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 70 [] []
-[2024-11-05T00:26:23.902840+00:00] sql.INFO: [2.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:24.752470+00:00] sql.INFO: [78] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 90 [] []
-[2024-11-05T00:26:24.762122+00:00] sql.INFO: [5.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:25.231113+00:00] sql.INFO: [44.02] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 110 [] []
-[2024-11-05T00:26:25.237554+00:00] sql.INFO: [3.65] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:25.434548+00:00] sql.INFO: [84.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 130 [] []
-[2024-11-05T00:26:25.439293+00:00] sql.INFO: [2.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:25.643485+00:00] sql.INFO: [98.18] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 150 [] []
-[2024-11-05T00:26:25.649446+00:00] sql.INFO: [4.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:25.755171+00:00] sql.INFO: [67.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 170 [] []
-[2024-11-05T00:26:25.761357+00:00] sql.INFO: [3.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:25.931281+00:00] sql.INFO: [83.66] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 190 [] []
-[2024-11-05T00:26:25.937274+00:00] sql.INFO: [3.42] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:26.144192+00:00] sql.INFO: [122.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 210 [] []
-[2024-11-05T00:26:26.150055+00:00] sql.INFO: [3.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:26.317949+00:00] sql.INFO: [122.96] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 230 [] []
-[2024-11-05T00:26:26.324199+00:00] sql.INFO: [3.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:26.543826+00:00] sql.INFO: [158.58] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 250 [] []
-[2024-11-05T00:26:26.550328+00:00] sql.INFO: [4.1] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:26.693187+00:00] sql.INFO: [122.06] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 270 [] []
-[2024-11-05T00:26:26.700034+00:00] sql.INFO: [4.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:42.622634+00:00] sql.INFO: [964.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-05T00:26:42.627379+00:00] sql.INFO: [3.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:26:47.753877+00:00] sql.INFO: [11.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:47.780336+00:00] sql.INFO: [38.34] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '8') limit 1 [] []
-[2024-11-05T00:26:47.838188+00:00] sql.INFO: [11.68] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:47.871243+00:00] sql.INFO: [6.11] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:47.883409+00:00] sql.INFO: [2.8] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T00:26:47.919539+00:00] sql.INFO: [9.05] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T00:26:47.928419+00:00] sql.INFO: [5.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:26:47.983900+00:00] sql.INFO: [11.69] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T00:26:59.769010+00:00] sql.INFO: [10.72] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:26:59.774916+00:00] sql.INFO: [4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:03.017614+00:00] sql.INFO: [201.29] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-05T00:27:03.022263+00:00] sql.INFO: [3.9] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:04.199264+00:00] sql.INFO: [208.02] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 520 [] []
-[2024-11-05T00:27:04.205137+00:00] sql.INFO: [3.63] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:10.695823+00:00] sql.INFO: [5.83] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '10') limit 1 [] []
-[2024-11-05T00:27:10.696487+00:00] sql.INFO: [5.99] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:27:10.741430+00:00] sql.INFO: [6.99] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:27:10.764873+00:00] sql.INFO: [5.53] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:27:10.782730+00:00] sql.INFO: [3.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:27:10.791888+00:00] sql.INFO: [2.67] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T00:27:10.817217+00:00] sql.INFO: [5.7] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T00:27:14.631524+00:00] sql.INFO: [21.5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:27:14.639147+00:00] sql.INFO: [4.34] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:28.798498+00:00] sql.INFO: [131.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:27:28.870176+00:00] sql.INFO: [69.49] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:31.396748+00:00] sql.INFO: [110.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T00:27:31.467440+00:00] sql.INFO: [68.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:32.158275+00:00] sql.INFO: [148.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:27:32.229902+00:00] sql.INFO: [68.68] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`category`.`name` like '%政策法规%') and `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:43.019218+00:00] sql.INFO: [8.05] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:27:43.025303+00:00] sql.INFO: [3.57] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:27:48.867385+00:00] sql.INFO: [30.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:27:48.884839+00:00] sql.INFO: [8.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:29:02.611625+00:00] sql.INFO: [17.96] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:29:02.617046+00:00] sql.INFO: [23.33] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:29:02.648331+00:00] sql.INFO: [5.57] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:29:09.726969+00:00] sql.INFO: [2.82] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T00:29:56.253942+00:00] sql.INFO: [7.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:29:56.259401+00:00] sql.INFO: [2.97] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:30:36.064660+00:00] sql.INFO: [7.9] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:30:36.078914+00:00] sql.INFO: [19.61] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:30:36.124408+00:00] sql.INFO: [7.33] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:30:44.444271+00:00] sql.INFO: [20.42] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:30:44.455661+00:00] sql.INFO: [4.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:30:46.500127+00:00] sql.INFO: [10.91] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:30:46.502333+00:00] sql.INFO: [13.91] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:30:46.532109+00:00] sql.INFO: [4.72] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:30:50.458776+00:00] sql.INFO: [16.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:30:50.466315+00:00] sql.INFO: [3.59] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:30:53.522226+00:00] sql.INFO: [14.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:30:53.522289+00:00] sql.INFO: [14.34] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:30:53.552650+00:00] sql.INFO: [4.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:31:16.917513+00:00] sql.INFO: [14.02] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:31:16.921317+00:00] sql.INFO: [1.92] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:31:30.052879+00:00] sql.INFO: [10.47] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:31:30.056187+00:00] sql.INFO: [1.4] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:38:30.235764+00:00] sql.INFO: [17.72] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:38:30.240732+00:00] sql.INFO: [2.99] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:38:36.150653+00:00] sql.INFO: [11.38] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:38:36.154960+00:00] sql.INFO: [2.56] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:41:01.113654+00:00] sql.INFO: [23.21] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:41:01.117735+00:00] sql.INFO: [2.07] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:41:40.187273+00:00] sql.INFO: [8.18] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:41:40.192011+00:00] sql.INFO: [2.69] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:41:46.507932+00:00] sql.INFO: [13.21] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:41:46.513651+00:00] sql.INFO: [3.33] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:42:15.093373+00:00] sql.INFO: [15.11] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:42:15.103312+00:00] sql.INFO: [4.21] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:42:22.580548+00:00] sql.INFO: [12.27] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:42:22.585347+00:00] sql.INFO: [2.49] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:42:24.783886+00:00] sql.INFO: [2.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:29.704827+00:00] sql.INFO: [4.71] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T00:42:29.749576+00:00] sql.INFO: [3.6] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:33.653280+00:00] sql.INFO: [4.22] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T00:42:33.699790+00:00] sql.INFO: [3.18] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:33.759729+00:00] sql.INFO: [3.06] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T00:42:41.023080+00:00] sql.INFO: [3.68] select * from `category` where (`id` = '43') limit 1 [] []
-[2024-11-05T00:42:41.076570+00:00] sql.INFO: [6.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:45.061202+00:00] sql.INFO: [10.24] select * from `category` where (`id` = '2') limit 1 [] []
-[2024-11-05T00:42:45.106254+00:00] sql.INFO: [5.9] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:51.612006+00:00] sql.INFO: [3.6] select * from `category` where (`id` = '7') limit 1 [] []
-[2024-11-05T00:42:51.667016+00:00] sql.INFO: [8.29] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:51.704418+00:00] sql.INFO: [2.63] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T00:42:55.857616+00:00] sql.INFO: [4.6] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T00:42:55.903911+00:00] sql.INFO: [6.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:42:55.943344+00:00] sql.INFO: [2.45] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T00:43:25.277299+00:00] sql.INFO: [21.25] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T00:43:25.286202+00:00] sql.INFO: [4.29] select count(*) as aggregate from `category` [] []
-[2024-11-05T00:43:30.753382+00:00] sql.INFO: [16.29] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T00:43:30.772106+00:00] sql.INFO: [34.19] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:43:30.801818+00:00] sql.INFO: [2.68] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:44:17.398094+00:00] sql.INFO: [19.58] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:44:17.404920+00:00] sql.INFO: [3.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T00:44:20.448074+00:00] sql.INFO: [7.4] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:44:20.449083+00:00] sql.INFO: [7.77] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T00:44:20.480834+00:00] sql.INFO: [6.18] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T00:44:22.358159+00:00] sql.INFO: [7.1] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T00:44:22.362873+00:00] sql.INFO: [2.7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T02:46:17.296816+00:00] sql.INFO: [15.39] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:46:17.300849+00:00] sql.INFO: [2.13] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:48:47.584082+00:00] sql.INFO: [23.1] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:48:47.588571+00:00] sql.INFO: [2.52] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:51:46.030231+00:00] sql.INFO: [42.13] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:51:46.039113+00:00] sql.INFO: [2.66] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:51:49.729331+00:00] sql.INFO: [10.9] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:51:49.733736+00:00] sql.INFO: [2.67] select count(*) as aggregate from `category` where (`category`.`city_id` = '33') [] []
-[2024-11-05T02:51:53.838135+00:00] sql.INFO: [10.02] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:51:53.845012+00:00] sql.INFO: [4.67] select count(*) as aggregate from `category` where (`category`.`department_id` = '712') [] []
-[2024-11-05T02:52:08.344123+00:00] sql.INFO: [12.33] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:52:08.348153+00:00] sql.INFO: [1.97] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:52:27.168688+00:00] sql.INFO: [13.49] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:52:27.173246+00:00] sql.INFO: [1.94] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:52:36.384381+00:00] sql.INFO: [6.32] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`name` like '%权重预告排序越靠前%') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:52:36.391075+00:00] sql.INFO: [5.32] select count(*) as aggregate from `category` where (`category`.`name` like '%权重预告排序越靠前%') [] []
-[2024-11-05T02:52:37.873502+00:00] sql.INFO: [13.02] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:52:37.880094+00:00] sql.INFO: [2.94] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:52:40.472743+00:00] sql.INFO: [3.16] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:52:43.131255+00:00] sql.INFO: [7.86] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T02:52:43.184270+00:00] sql.INFO: [10.41] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:52:47.662091+00:00] sql.INFO: [10.27] select * from `category` where (`id` = '43') limit 1 [] []
-[2024-11-05T02:52:47.717871+00:00] sql.INFO: [5.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:52:53.311420+00:00] sql.INFO: [2.6] select * from `category` where (`id` = '3') limit 1 [] []
-[2024-11-05T02:52:53.358575+00:00] sql.INFO: [3.91] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:52:53.394174+00:00] sql.INFO: [1.82] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T02:54:26.034288+00:00] sql.INFO: [12.47] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:54:26.039408+00:00] sql.INFO: [4.05] select count(*) as aggregate from `category` where (`category`.`city_id` = '33') [] []
-[2024-11-05T02:54:27.017869+00:00] sql.INFO: [8.93] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:54:27.022755+00:00] sql.INFO: [2.59] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:54:43.613641+00:00] sql.INFO: [9.74] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '713' and `category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:54:43.621557+00:00] sql.INFO: [6.92] select count(*) as aggregate from `category` where (`category`.`department_id` = '713' and `category`.`city_id` = '33') [] []
-[2024-11-05T02:54:47.750794+00:00] sql.INFO: [23.31] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:54:47.759755+00:00] sql.INFO: [4.4] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:55:10.992602+00:00] sql.INFO: [15.24] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:10.999769+00:00] sql.INFO: [3.01] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:55:16.350466+00:00] sql.INFO: [16.52] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:16.362501+00:00] sql.INFO: [9.62] select count(*) as aggregate from `category` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') [] []
-[2024-11-05T02:55:19.076924+00:00] sql.INFO: [16.01] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:19.081418+00:00] sql.INFO: [3.57] select count(*) as aggregate from `category` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') [] []
-[2024-11-05T02:55:19.792483+00:00] sql.INFO: [9.84] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:19.798445+00:00] sql.INFO: [4.45] select count(*) as aggregate from `category` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') [] []
-[2024-11-05T02:55:20.166104+00:00] sql.INFO: [14.12] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:20.172476+00:00] sql.INFO: [4.54] select count(*) as aggregate from `category` where (`category`.`department_id` = '712' and `category`.`city_id` = '33') [] []
-[2024-11-05T02:55:21.783318+00:00] sql.INFO: [17.33] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:21.792090+00:00] sql.INFO: [4.31] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:55:31.549431+00:00] sql.INFO: [12.12] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`city_id` = '3') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:31.557775+00:00] sql.INFO: [7.03] select count(*) as aggregate from `category` where (`category`.`city_id` = '3') [] []
-[2024-11-05T02:55:35.001885+00:00] sql.INFO: [11.3] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`city_id` = '33') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:35.009196+00:00] sql.INFO: [5.48] select count(*) as aggregate from `category` where (`category`.`city_id` = '33') [] []
-[2024-11-05T02:55:37.094908+00:00] sql.INFO: [11.1] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:55:37.100400+00:00] sql.INFO: [3.12] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:16.752399+00:00] sql.INFO: [27.74] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:16.756982+00:00] sql.INFO: [2.64] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:31.234535+00:00] sql.INFO: [11.75] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:31.238829+00:00] sql.INFO: [2.25] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:35.009579+00:00] sql.INFO: [12.46] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`name` like '%权重预告排序越靠前%') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:35.020276+00:00] sql.INFO: [8.5] select count(*) as aggregate from `category` where (`category`.`name` like '%权重预告排序越靠前%') [] []
-[2024-11-05T02:56:35.576743+00:00] sql.INFO: [22.22] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:35.584790+00:00] sql.INFO: [4.17] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:38.906146+00:00] sql.INFO: [16.22] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:38.915761+00:00] sql.INFO: [6.65] select count(*) as aggregate from `category` where (`category`.`department_id` = '712') [] []
-[2024-11-05T02:56:40.814494+00:00] sql.INFO: [13.38] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` where (`category`.`department_id` = '712') order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:40.819565+00:00] sql.INFO: [3.84] select count(*) as aggregate from `category` where (`category`.`department_id` = '712') [] []
-[2024-11-05T02:56:41.252140+00:00] sql.INFO: [12.75] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:41.256819+00:00] sql.INFO: [2.85] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:42.029902+00:00] sql.INFO: [11.55] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:56:44.701276+00:00] sql.INFO: [6.43] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T02:56:44.737771+00:00] sql.INFO: [6] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:56:49.101623+00:00] sql.INFO: [12.26] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T02:56:49.167726+00:00] sql.INFO: [10.74] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:56:49.207047+00:00] sql.INFO: [3.89] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T02:56:55.261839+00:00] sql.INFO: [21.13] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T02:56:55.267055+00:00] sql.INFO: [3.22] select count(*) as aggregate from `category` [] []
-[2024-11-05T02:56:58.951078+00:00] sql.INFO: [4.14] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T02:56:58.965155+00:00] sql.INFO: [3.48] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:56:59.031786+00:00] sql.INFO: [5.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:57:02.829076+00:00] sql.INFO: [4.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:58:47.488407+00:00] sql.INFO: [13.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T02:58:47.493761+00:00] sql.INFO: [3.49] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T02:59:16.818758+00:00] sql.INFO: [17.57] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T02:59:16.827232+00:00] sql.INFO: [4.11] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-05T02:59:18.582131+00:00] sql.INFO: [9.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T02:59:18.587195+00:00] sql.INFO: [2.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T02:59:22.696800+00:00] sql.INFO: [4.33] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:59:25.235190+00:00] sql.INFO: [6.72] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T02:59:25.240692+00:00] sql.INFO: [2.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T02:59:27.362196+00:00] sql.INFO: [3.15] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T02:59:27.379162+00:00] sql.INFO: [13.78] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T02:59:27.403257+00:00] sql.INFO: [2.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T03:04:10.096105+00:00] sql.INFO: [22.56] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T03:04:10.102685+00:00] sql.INFO: [4.52] select count(*) as aggregate from `category` [] []
-[2024-11-05T03:04:20.505009+00:00] sql.INFO: [8.27] select * from `category` where (`pid` = '0' and `category`.`name` like '%三%') [] []
-[2024-11-05T03:04:21.208911+00:00] sql.INFO: [5.66] select * from `category` where (`pid` = '0' and `category`.`name` like '%三农%') [] []
-[2024-11-05T05:12:26.148485+00:00] sql.INFO: [25.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T05:12:26.186978+00:00] sql.INFO: [3.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T05:12:31.842435+00:00] sql.INFO: [3.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:12:31.850373+00:00] sql.INFO: [13.2] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:12:31.899329+00:00] sql.INFO: [3.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:15:27.481660+00:00] sql.INFO: [8.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:15:27.542108+00:00] sql.INFO: [4.04] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:15:27.690241+00:00] sql.INFO: [3.81] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:19:29.977113+00:00] sql.INFO: [16.26] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:19:29.977135+00:00] sql.INFO: [18.15] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:19:30.033620+00:00] sql.INFO: [4.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:20:12.205663+00:00] sql.INFO: [5.89] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:20:12.207569+00:00] sql.INFO: [5.67] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:20:12.298692+00:00] sql.INFO: [4.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:25:30.257872+00:00] sql.INFO: [15.2] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:25:30.260652+00:00] sql.INFO: [16.99] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:25:30.318049+00:00] sql.INFO: [2.98] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:37:39.254389+00:00] sql.INFO: [19.03] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T05:37:39.259177+00:00] sql.INFO: [2.99] select count(*) as aggregate from `category` [] []
-[2024-11-05T05:37:42.306789+00:00] sql.INFO: [19.28] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T05:37:42.316518+00:00] sql.INFO: [7.18] select count(*) as aggregate from `category` [] []
-[2024-11-05T05:38:59.685894+00:00] sql.INFO: [13.67] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T05:38:59.690077+00:00] sql.INFO: [2.17] select count(*) as aggregate from `category` [] []
-[2024-11-05T05:40:11.695043+00:00] sql.INFO: [15.07] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T05:40:11.699688+00:00] sql.INFO: [2.54] select count(*) as aggregate from `category` [] []
-[2024-11-05T05:40:19.043446+00:00] sql.INFO: [9.82] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T05:40:19.049022+00:00] sql.INFO: [3.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T05:57:35.323525+00:00] sql.INFO: [11.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T05:57:35.328620+00:00] sql.INFO: [2.71] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T05:57:39.326756+00:00] sql.INFO: [3.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:57:39.330957+00:00] sql.INFO: [7.22] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T05:57:39.384936+00:00] sql.INFO: [3.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T05:58:08.760566+00:00] sql.INFO: [8.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T05:58:08.764817+00:00] sql.INFO: [2.26] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:00:10.119007+00:00] sql.INFO: [12.31] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:00:10.123174+00:00] sql.INFO: [2.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:01:04.319465+00:00] sql.INFO: [15.93] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:01:04.323466+00:00] sql.INFO: [1.76] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:01:46.238807+00:00] sql.INFO: [4.94] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:01:46.253063+00:00] sql.INFO: [14.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:01:46.284541+00:00] sql.INFO: [4.57] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:06.063146+00:00] sql.INFO: [11.35] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:02:06.069533+00:00] sql.INFO: [4.03] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:02:07.779070+00:00] sql.INFO: [12.3] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:16.566709+00:00] sql.INFO: [25.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:02:16.579990+00:00] sql.INFO: [6.02] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:02:18.567118+00:00] sql.INFO: [4.11] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:18.572281+00:00] sql.INFO: [5.12] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:02:18.613323+00:00] sql.INFO: [3.23] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:32.190302+00:00] sql.INFO: [12.18] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:02:32.194305+00:00] sql.INFO: [1.91] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:02:34.167568+00:00] sql.INFO: [6.54] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:02:34.168673+00:00] sql.INFO: [7.21] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:34.209092+00:00] sql.INFO: [5.48] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:02:37.045041+00:00] sql.INFO: [5.52] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:11:58.630334+00:00] sql.INFO: [20.19] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:11:58.635357+00:00] sql.INFO: [2.79] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:11:59.854919+00:00] sql.INFO: [3.8] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:11:59.860943+00:00] sql.INFO: [7.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:11:59.899246+00:00] sql.INFO: [5.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:16:06.532135+00:00] sql.INFO: [12.83] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:16:06.584658+00:00] sql.INFO: [6.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:16:09.183926+00:00] sql.INFO: [14.44] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:16:09.243341+00:00] sql.INFO: [16.38] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:16:31.283895+00:00] sql.INFO: [11.66] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:16:31.365273+00:00] sql.INFO: [11.96] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:16:36.421372+00:00] sql.INFO: [17.22] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:16:36.428600+00:00] sql.INFO: [4.7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:16:56.943719+00:00] sql.INFO: [25.05] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:16:56.957380+00:00] sql.INFO: [8.14] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:16:58.754123+00:00] sql.INFO: [9.01] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:16:58.762676+00:00] sql.INFO: [15.16] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:16:58.806763+00:00] sql.INFO: [9.37] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:17:24.142334+00:00] sql.INFO: [19.28] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:17:24.150165+00:00] sql.INFO: [2.77] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:17:27.456992+00:00] sql.INFO: [9.86] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:17:27.458575+00:00] sql.INFO: [11.29] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:17:27.505927+00:00] sql.INFO: [4.9] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:17:54.510935+00:00] sql.INFO: [15.87] update `category` set `name` = '权重预告排序越靠前', `is_url` = '1', `web_url` = 'www.xinlang.com', `department_arr_id` = '[]', `city_arr_id` = '[]', `sort` = '999', `seo_title` = '新浪', `seo_keywords` = '导航池', `seo_description` = '使用外部链接的导航池', `pid_arr` = '[]', `id` = '50', `pid` = '', `city_id` = '', `department_id` = '', `category`.`updated_at` = '2024-11-05 06:17:54' where (`id` = '50') [] []
-[2024-11-05T06:17:54.561380+00:00] sql.INFO: [18.82] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:17:54.569140+00:00] sql.INFO: [3.8] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:17:59.739787+00:00] sql.INFO: [6.72] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:18:09.684649+00:00] sql.INFO: [4.57] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T06:18:09.746956+00:00] sql.INFO: [8.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:18:09.803271+00:00] sql.INFO: [3.97] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T06:20:22.070841+00:00] sql.INFO: [19.24] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:20:22.074648+00:00] sql.INFO: [1.79] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:20:23.320648+00:00] sql.INFO: [5.38] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:20:25.648181+00:00] sql.INFO: [2.5] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:20:51.699280+00:00] sql.INFO: [25.39] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:20:51.714123+00:00] sql.INFO: [5.98] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:20:53.040633+00:00] sql.INFO: [2.42] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:20:53.048573+00:00] sql.INFO: [7.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:20:56.144988+00:00] sql.INFO: [10.4] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T06:20:56.203291+00:00] sql.INFO: [8.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:20:56.259172+00:00] sql.INFO: [2.05] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T06:20:59.959409+00:00] sql.INFO: [4.26] select * from `category` where (`id` = '3') limit 1 [] []
-[2024-11-05T06:21:00.016771+00:00] sql.INFO: [4.52] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:21:00.056747+00:00] sql.INFO: [2.3] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:21:04.458720+00:00] sql.INFO: [9.92] select * from `category` where (`id` = '7') limit 1 [] []
-[2024-11-05T06:21:04.507118+00:00] sql.INFO: [2.6] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:21:04.542285+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T06:21:10.633806+00:00] sql.INFO: [9.45] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T06:21:10.695449+00:00] sql.INFO: [4.28] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:21:10.741567+00:00] sql.INFO: [1.92] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T06:21:14.014301+00:00] sql.INFO: [6.94] select * from `category` where (`id` = '7') limit 1 [] []
-[2024-11-05T06:21:14.062829+00:00] sql.INFO: [8.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:21:14.110059+00:00] sql.INFO: [2.07] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T06:21:27.551257+00:00] sql.INFO: [6.45] select * from `category` where (`id` = '7') limit 1 [] []
-[2024-11-05T06:21:27.629070+00:00] sql.INFO: [6.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:21:27.676906+00:00] sql.INFO: [1.88] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T06:21:45.464625+00:00] sql.INFO: [47.02] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 40 [] []
-[2024-11-05T06:21:45.467866+00:00] sql.INFO: [1.38] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:21:48.605556+00:00] sql.INFO: [15.48] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:21:48.611574+00:00] sql.INFO: [2.44] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:21:56.632226+00:00] sql.INFO: [18.17] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:21:56.642667+00:00] sql.INFO: [5.37] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:21:57.869191+00:00] sql.INFO: [7.38] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:21:57.883934+00:00] sql.INFO: [17.6] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:01.991922+00:00] sql.INFO: [11.13] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T06:22:02.043214+00:00] sql.INFO: [7.32] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:02.087947+00:00] sql.INFO: [2.05] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T06:22:03.701816+00:00] sql.INFO: [8.78] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:22:08.419579+00:00] sql.INFO: [10.1] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-05T06:22:08.470189+00:00] sql.INFO: [2.69] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:08.506906+00:00] sql.INFO: [2.29] select * from `category` where (`pid` = '2') [] []
-[2024-11-05T06:22:11.971514+00:00] sql.INFO: [2.86] select * from `category` where (`id` = '41') limit 1 [] []
-[2024-11-05T06:22:12.011701+00:00] sql.INFO: [2] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:12.050760+00:00] sql.INFO: [1.98] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:22:13.868673+00:00] sql.INFO: [8.9] select * from `category` where (`id` = '2') limit 1 [] []
-[2024-11-05T06:22:13.922150+00:00] sql.INFO: [8.77] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:16.858387+00:00] sql.INFO: [5.42] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:22:31.958852+00:00] sql.INFO: [17.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:22:31.964545+00:00] sql.INFO: [2.62] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:22:34.381615+00:00] sql.INFO: [1.99] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:22:34.381916+00:00] sql.INFO: [1.89] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:22:34.403577+00:00] sql.INFO: [2.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:24:45.606755+00:00] sql.INFO: [28.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:24:45.606794+00:00] sql.INFO: [28.3] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:24:45.645671+00:00] sql.INFO: [5.15] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:25:47.812119+00:00] sql.INFO: [19.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:25:47.817611+00:00] sql.INFO: [2.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:25:50.153556+00:00] sql.INFO: [4.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:25:50.160598+00:00] sql.INFO: [9] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-05T06:25:50.188566+00:00] sql.INFO: [3.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:25:52.485275+00:00] sql.INFO: [6.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:25:52.489698+00:00] sql.INFO: [2.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:25:54.484784+00:00] sql.INFO: [11.64] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:25:54.489861+00:00] sql.INFO: [7.21] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '536') limit 1 [] []
-[2024-11-05T06:25:54.514379+00:00] sql.INFO: [3.61] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:25:56.597556+00:00] sql.INFO: [15.53] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:25:56.605218+00:00] sql.INFO: [3.88] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:26:03.790026+00:00] sql.INFO: [7.87] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:26:03.819634+00:00] sql.INFO: [3.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:26:05.700118+00:00] sql.INFO: [3.32] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:26:05.747576+00:00] sql.INFO: [3.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:27:38.098925+00:00] sql.INFO: [10.61] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:27:38.105502+00:00] sql.INFO: [12.48] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:27:38.179627+00:00] sql.INFO: [5.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:27:52.661828+00:00] sql.INFO: [13.53] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:27:52.668747+00:00] sql.INFO: [3.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:28:06.511542+00:00] sql.INFO: [6.84] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:28:06.516243+00:00] sql.INFO: [2.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:28:15.736496+00:00] sql.INFO: [4.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:28:15.737466+00:00] sql.INFO: [4.93] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:28:15.768001+00:00] sql.INFO: [3.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:28:28.652890+00:00] sql.INFO: [3.47] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:28:28.653078+00:00] sql.INFO: [9.46] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:28:28.657972+00:00] sql.INFO: [2.95] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:28:28.663029+00:00] sql.INFO: [10.53] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:28:28.736186+00:00] sql.INFO: [3.22] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:28:32.520713+00:00] sql.INFO: [8.01] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:28:32.525172+00:00] sql.INFO: [2.28] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:28:35.140117+00:00] sql.INFO: [8.58] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:28:35.144386+00:00] sql.INFO: [2.41] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:29:11.652780+00:00] sql.INFO: [11.34] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:11.654232+00:00] sql.INFO: [12.51] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:29:11.700124+00:00] sql.INFO: [7.46] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:27.817589+00:00] sql.INFO: [10] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:29:27.818760+00:00] sql.INFO: [11.18] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:27.852216+00:00] sql.INFO: [5.4] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:27.871891+00:00] sql.INFO: [2.85] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:27.887809+00:00] sql.INFO: [2.78] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:27.898671+00:00] sql.INFO: [2.38] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:29:27.931723+00:00] sql.INFO: [5.39] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:29:50.792334+00:00] sql.INFO: [8.38] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:29:50.798354+00:00] sql.INFO: [3.33] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:29:51.809730+00:00] sql.INFO: [4.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:51.810088+00:00] sql.INFO: [4.48] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:29:51.859359+00:00] sql.INFO: [9.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:29:54.214082+00:00] sql.INFO: [8.83] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:29:54.218464+00:00] sql.INFO: [2.31] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:30:07.455563+00:00] sql.INFO: [2.74] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:30:07.460089+00:00] sql.INFO: [4.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:30:17.270312+00:00] sql.INFO: [3.21] select * from `category` where (`id` = '7') limit 1 [] []
-[2024-11-05T06:30:17.389362+00:00] sql.INFO: [2.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:30:17.509449+00:00] sql.INFO: [5.11] select * from `category` where (`pid` = '5') [] []
-[2024-11-05T06:30:24.672229+00:00] sql.INFO: [9.16] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:30:24.672508+00:00] sql.INFO: [9.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:30:24.703236+00:00] sql.INFO: [3.34] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:30:48.186609+00:00] sql.INFO: [9.09] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:30:48.192633+00:00] sql.INFO: [3.71] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:30:53.832347+00:00] sql.INFO: [3.33] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:30:53.842216+00:00] sql.INFO: [5.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:16.088009+00:00] sql.INFO: [5] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:16.088338+00:00] sql.INFO: [5.32] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T06:31:16.126562+00:00] sql.INFO: [4.89] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:16.142902+00:00] sql.INFO: [2.83] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:16.158058+00:00] sql.INFO: [2.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:16.170275+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:16.210002+00:00] sql.INFO: [6.91] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:19.080768+00:00] sql.INFO: [20.57] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:31:19.091529+00:00] sql.INFO: [5.33] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:31:21.191012+00:00] sql.INFO: [6.19] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:21.192723+00:00] sql.INFO: [5.25] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-05T06:31:21.219452+00:00] sql.INFO: [4.21] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:21.236974+00:00] sql.INFO: [3.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:21.252467+00:00] sql.INFO: [2.99] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:21.263353+00:00] sql.INFO: [2.47] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:21.286030+00:00] sql.INFO: [4.4] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:23.120717+00:00] sql.INFO: [27.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:31:23.135320+00:00] sql.INFO: [6.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:31:25.081853+00:00] sql.INFO: [12.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:25.087963+00:00] sql.INFO: [8.85] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-05T06:31:25.117537+00:00] sql.INFO: [5.91] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:25.138141+00:00] sql.INFO: [3.71] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:25.154355+00:00] sql.INFO: [2.64] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:25.161396+00:00] sql.INFO: [2.37] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:25.185335+00:00] sql.INFO: [3.03] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:27.278189+00:00] sql.INFO: [14.42] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:31:27.286476+00:00] sql.INFO: [4.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:31:32.362403+00:00] sql.INFO: [10.74] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '531') limit 1 [] []
-[2024-11-05T06:31:32.362423+00:00] sql.INFO: [10.19] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:32.386123+00:00] sql.INFO: [3.46] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:32.401685+00:00] sql.INFO: [2.99] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:32.414875+00:00] sql.INFO: [2.25] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:31:32.427902+00:00] sql.INFO: [2.53] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:32.444282+00:00] sql.INFO: [2.35] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T06:31:34.177223+00:00] sql.INFO: [21.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T06:31:34.183733+00:00] sql.INFO: [3.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T06:33:00.207944+00:00] sql.INFO: [15.32] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:33:00.213542+00:00] sql.INFO: [3.03] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:56:17.481472+00:00] sql.INFO: [21.58] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T06:56:17.487903+00:00] sql.INFO: [4.09] select count(*) as aggregate from `category` [] []
-[2024-11-05T06:56:24.717892+00:00] sql.INFO: [5.71] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-05T06:56:24.725266+00:00] sql.INFO: [4.84] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T06:56:46.054713+00:00] sql.INFO: [4.2] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T08:00:48.627343+00:00] sql.INFO: [16.04] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T08:00:48.630240+00:00] sql.INFO: [1.23] select count(*) as aggregate from `category` [] []
-[2024-11-05T08:01:41.072326+00:00] sql.INFO: [14.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:01:41.079496+00:00] sql.INFO: [2.93] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:30.724471+00:00] sql.INFO: [33.83] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:03:30.731218+00:00] sql.INFO: [4.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:41.100823+00:00] sql.INFO: [5.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T08:03:41.108648+00:00] sql.INFO: [11.34] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-05T08:03:41.161386+00:00] sql.INFO: [7.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T08:03:41.179313+00:00] sql.INFO: [3.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T08:03:41.193886+00:00] sql.INFO: [3.87] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T08:03:41.204234+00:00] sql.INFO: [2.93] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T08:03:41.230987+00:00] sql.INFO: [5.61] select * from `category` where (`pid` = '1') [] []
-[2024-11-05T08:03:45.345322+00:00] sql.INFO: [13.91] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:03:45.352481+00:00] sql.INFO: [4.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:51.492427+00:00] sql.INFO: [9.09] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:03:51.498854+00:00] sql.INFO: [4.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:52.593260+00:00] sql.INFO: [7.68] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:03:52.599462+00:00] sql.INFO: [4.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:52.812823+00:00] sql.INFO: [53.39] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:03:52.829022+00:00] sql.INFO: [10.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:54.334988+00:00] sql.INFO: [26.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 50 [] []
-[2024-11-05T08:03:54.341642+00:00] sql.INFO: [4.27] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:03:55.353585+00:00] sql.INFO: [303.23] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-05T08:03:55.358951+00:00] sql.INFO: [4.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:04:03.188075+00:00] sql.INFO: [232.59] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-05T08:04:03.193383+00:00] sql.INFO: [4.39] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:11:57.033667+00:00] sql.INFO: [29.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:11:57.043069+00:00] sql.INFO: [4.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T08:48:18.053759+00:00] sql.INFO: [13.74] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T08:48:18.058450+00:00] sql.INFO: [2.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:02:08.614631+00:00] sql.INFO: [21.87] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:02:08.629279+00:00] sql.INFO: [4.68] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:31:45.271524+00:00] sql.INFO: [15.97] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T09:31:45.275771+00:00] sql.INFO: [2.45] select count(*) as aggregate from `category` [] []
-[2024-11-05T09:31:52.994316+00:00] sql.INFO: [28.25] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:31:53.004326+00:00] sql.INFO: [5.57] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:40:34.957115+00:00] sql.INFO: [34.17] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T09:40:34.963466+00:00] sql.INFO: [1.65] select count(*) as aggregate from `category` [] []
-[2024-11-05T09:40:48.289381+00:00] sql.INFO: [15.75] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T09:40:48.294288+00:00] sql.INFO: [2.86] select count(*) as aggregate from `category` [] []
-[2024-11-05T09:42:37.986901+00:00] sql.INFO: [15.02] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:42:37.992528+00:00] sql.INFO: [3.37] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:42:50.120175+00:00] sql.INFO: [18.26] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T09:42:50.127856+00:00] sql.INFO: [4.55] select count(*) as aggregate from `category` [] []
-[2024-11-05T09:42:51.397518+00:00] sql.INFO: [5.24] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T09:42:57.838232+00:00] sql.INFO: [27.18] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:42:57.850872+00:00] sql.INFO: [7.54] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:43:36.677870+00:00] sql.INFO: [8.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:43:36.682410+00:00] sql.INFO: [2.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:43:41.820561+00:00] sql.INFO: [33.87] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 50 [] []
-[2024-11-05T09:43:41.826990+00:00] sql.INFO: [4.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:43:43.298221+00:00] sql.INFO: [10.48] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:43:43.303898+00:00] sql.INFO: [3.31] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:29.737062+00:00] sql.INFO: [15.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:29.748489+00:00] sql.INFO: [6.71] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:40.280853+00:00] sql.INFO: [32.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:40.293928+00:00] sql.INFO: [6.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:42.230833+00:00] sql.INFO: [28.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:44:42.242902+00:00] sql.INFO: [6.95] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:43.621348+00:00] sql.INFO: [21.42] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:43.634987+00:00] sql.INFO: [7.62] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:47.113784+00:00] sql.INFO: [17.13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:47.120608+00:00] sql.INFO: [4.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:51.308456+00:00] sql.INFO: [9.37] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:51.315417+00:00] sql.INFO: [4.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:54.556093+00:00] sql.INFO: [20.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:54.565339+00:00] sql.INFO: [5.29] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T09:44:58.617459+00:00] sql.INFO: [31.15] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:44:58.629524+00:00] sql.INFO: [8.42] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:45:14.972951+00:00] sql.INFO: [19.96] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:45:14.984748+00:00] sql.INFO: [7.2] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:45:42.982697+00:00] sql.INFO: [18.52] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:45:42.990733+00:00] sql.INFO: [4.71] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:45:44.905810+00:00] sql.INFO: [17.09] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:45:44.912243+00:00] sql.INFO: [4.33] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:46:14.385527+00:00] sql.INFO: [19.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:46:14.397164+00:00] sql.INFO: [8.65] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:46:17.337898+00:00] sql.INFO: [20.6] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:46:17.347745+00:00] sql.INFO: [5.55] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:06.091605+00:00] sql.INFO: [28.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:48:06.097849+00:00] sql.INFO: [2.82] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:06.721141+00:00] sql.INFO: [6.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:48:06.724965+00:00] sql.INFO: [1.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:07.626829+00:00] sql.INFO: [27.17] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:48:07.633056+00:00] sql.INFO: [2.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:08.614837+00:00] sql.INFO: [27.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 20 [] []
-[2024-11-05T09:48:08.620468+00:00] sql.INFO: [2.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:09.278444+00:00] sql.INFO: [35.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:48:09.288106+00:00] sql.INFO: [4.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:09.675487+00:00] sql.INFO: [6.64] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:48:09.679312+00:00] sql.INFO: [2] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:20.165091+00:00] sql.INFO: [19.62] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:48:20.174283+00:00] sql.INFO: [3.19] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:21.708779+00:00] sql.INFO: [16.25] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:48:21.712750+00:00] sql.INFO: [2.18] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:48:22.872493+00:00] sql.INFO: [12.57] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:48:22.878063+00:00] sql.INFO: [2.71] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:16.686829+00:00] sql.INFO: [5.61] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:16.690437+00:00] sql.INFO: [1.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:17.655173+00:00] sql.INFO: [6.16] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:17.659455+00:00] sql.INFO: [2.22] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:18.355651+00:00] sql.INFO: [8.45] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:18.361101+00:00] sql.INFO: [2.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:19.022269+00:00] sql.INFO: [14.84] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:19.027135+00:00] sql.INFO: [2.39] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:19.433024+00:00] sql.INFO: [7.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:19.437003+00:00] sql.INFO: [2.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:38.735485+00:00] sql.INFO: [6.44] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:38.740822+00:00] sql.INFO: [3.06] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:39.785605+00:00] sql.INFO: [5.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:39.789173+00:00] sql.INFO: [1.81] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:47.347328+00:00] sql.INFO: [18.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:47.355987+00:00] sql.INFO: [3.77] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:50.823480+00:00] sql.INFO: [28.41] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T09:49:50.831800+00:00] sql.INFO: [3.43] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:49:53.176471+00:00] sql.INFO: [17.52] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:49:53.184839+00:00] sql.INFO: [3.46] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:51:33.085322+00:00] sql.INFO: [10.91] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:51:33.088916+00:00] sql.INFO: [1.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:51:35.698395+00:00] sql.INFO: [76.27] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 40 [] []
-[2024-11-05T09:51:35.706353+00:00] sql.INFO: [4.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:51:37.044773+00:00] sql.INFO: [23.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:51:37.053433+00:00] sql.INFO: [3.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:52:11.888274+00:00] sql.INFO: [13.65] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:52:11.893909+00:00] sql.INFO: [2.96] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:53:42.688994+00:00] sql.INFO: [30.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:53:42.695835+00:00] sql.INFO: [3.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:53:49.994823+00:00] sql.INFO: [15.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:53:50.003174+00:00] sql.INFO: [4.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:56:22.041797+00:00] sql.INFO: [10.56] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:56:22.046438+00:00] sql.INFO: [2.84] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T09:58:24.073318+00:00] sql.INFO: [25.68] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T09:58:24.080369+00:00] sql.INFO: [4.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:34.277940+00:00] sql.INFO: [23.43] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T10:02:34.285033+00:00] sql.INFO: [4.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:35.432083+00:00] sql.INFO: [27.21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:02:35.437258+00:00] sql.INFO: [3.13] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:35.963813+00:00] sql.INFO: [14.87] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-05T10:02:35.971175+00:00] sql.INFO: [5.08] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:36.567276+00:00] sql.INFO: [17.86] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 20 [] []
-[2024-11-05T10:02:36.572734+00:00] sql.INFO: [3.52] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:37.152140+00:00] sql.INFO: [38.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 30 [] []
-[2024-11-05T10:02:37.162674+00:00] sql.INFO: [7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:38.159745+00:00] sql.INFO: [9.73] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:02:38.167026+00:00] sql.INFO: [5.26] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:49.960997+00:00] sql.INFO: [13.62] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T10:02:49.971139+00:00] sql.INFO: [6.32] select count(*) as aggregate from `category` [] []
-[2024-11-05T10:02:51.509046+00:00] sql.INFO: [9.03] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:02:51.516329+00:00] sql.INFO: [4.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:02:53.763314+00:00] sql.INFO: [11.91] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:02:53.769591+00:00] sql.INFO: [4.35] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:02.098777+00:00] sql.INFO: [5.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-05T10:03:09.014189+00:00] sql.INFO: [16.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:09.022352+00:00] sql.INFO: [5.29] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:17.145645+00:00] sql.INFO: [9.68] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:17.152547+00:00] sql.INFO: [4.41] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:21.316624+00:00] sql.INFO: [9.05] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:21.324432+00:00] sql.INFO: [4.95] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:22.472541+00:00] sql.INFO: [31] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:22.490707+00:00] sql.INFO: [11.85] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:22.598598+00:00] sql.INFO: [14.01] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:22.606276+00:00] sql.INFO: [4.56] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:25.335957+00:00] sql.INFO: [11.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:25.343510+00:00] sql.INFO: [5.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:29.217886+00:00] sql.INFO: [18.78] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:29.229832+00:00] sql.INFO: [7.92] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:33.172780+00:00] sql.INFO: [9.64] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:33.179300+00:00] sql.INFO: [4.06] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:40.016585+00:00] sql.INFO: [12.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:40.023798+00:00] sql.INFO: [4.79] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:55.869496+00:00] sql.INFO: [117.13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:55.876245+00:00] sql.INFO: [5.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:03:57.819609+00:00] sql.INFO: [19.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:03:57.829564+00:00] sql.INFO: [6.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:04:02.644065+00:00] sql.INFO: [12.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:04:02.653037+00:00] sql.INFO: [5.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:04:49.646201+00:00] sql.INFO: [98.23] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:04:49.663257+00:00] sql.INFO: [4.75] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:04:54.571539+00:00] sql.INFO: [92.81] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:04:54.577485+00:00] sql.INFO: [4.75] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-05T10:05:44.665516+00:00] sql.INFO: [10.55] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T10:05:44.671031+00:00] sql.INFO: [3.43] select count(*) as aggregate from `category` [] []
-[2024-11-05T10:08:35.017275+00:00] sql.INFO: [18.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-05T10:08:35.023167+00:00] sql.INFO: [3.91] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-05T10:08:41.124720+00:00] sql.INFO: [11.41] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-05T10:08:41.130572+00:00] sql.INFO: [3.72] select count(*) as aggregate from `category` [] []
-[2024-11-06T01:36:49.228929+00:00] sql.INFO: [13.94] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T01:36:49.232688+00:00] sql.INFO: [1.79] select count(*) as aggregate from `category` [] []
-[2024-11-06T01:36:50.694605+00:00] sql.INFO: [3.54] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:06:45.531360+00:00] sql.INFO: [14.42] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T03:06:45.578673+00:00] sql.INFO: [3.02] select count(*) as aggregate from `category` [] []
-[2024-11-06T03:06:48.213436+00:00] sql.INFO: [26.87] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T03:06:48.224853+00:00] sql.INFO: [5.4] select count(*) as aggregate from `category` [] []
-[2024-11-06T03:07:21.678804+00:00] sql.INFO: [11.61] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T03:07:21.682490+00:00] sql.INFO: [2] select count(*) as aggregate from `category` [] []
-[2024-11-06T03:08:03.720723+00:00] sql.INFO: [4.69] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:08:07.618797+00:00] sql.INFO: [3.24] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-06T03:08:10.631743+00:00] sql.INFO: [3.55] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-06T03:08:10.715492+00:00] sql.INFO: [2.28] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:08:10.760836+00:00] sql.INFO: [2.77] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:12:02.742888+00:00] sql.INFO: [31.98] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T03:12:02.749736+00:00] sql.INFO: [3.35] select count(*) as aggregate from `category` [] []
-[2024-11-06T03:12:04.329406+00:00] sql.INFO: [5.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:04.348530+00:00] sql.INFO: [21.9] select * from `category` where (`id` = '50') limit 1 [] []
-[2024-11-06T03:12:07.045034+00:00] sql.INFO: [9.57] select * from `category` where (`id` = '3') limit 1 [] []
-[2024-11-06T03:12:07.090041+00:00] sql.INFO: [4.78] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:07.130661+00:00] sql.INFO: [3.78] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:12:09.574601+00:00] sql.INFO: [4.43] select * from `category` where (`id` = '41') limit 1 [] []
-[2024-11-06T03:12:09.635783+00:00] sql.INFO: [5.93] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:09.689073+00:00] sql.INFO: [3.43] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:12:12.101280+00:00] sql.INFO: [4.93] select * from `category` where (`id` = '2') limit 1 [] []
-[2024-11-06T03:12:12.145791+00:00] sql.INFO: [5.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:15.183541+00:00] sql.INFO: [6.41] select * from `category` where (`id` = '8') limit 1 [] []
-[2024-11-06T03:12:15.249462+00:00] sql.INFO: [4.24] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:15.308460+00:00] sql.INFO: [2.42] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:12:22.757328+00:00] sql.INFO: [6.08] select * from `category` where (`id` = '43') limit 1 [] []
-[2024-11-06T03:12:22.826134+00:00] sql.INFO: [3.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:36.693102+00:00] sql.INFO: [8.6] select * from `category` where (`id` = '3') limit 1 [] []
-[2024-11-06T03:12:36.764235+00:00] sql.INFO: [10.51] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:12:36.814184+00:00] sql.INFO: [3.23] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:14:14.886159+00:00] sql.INFO: [22.18] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T03:14:14.890043+00:00] sql.INFO: [2.32] select count(*) as aggregate from `category` [] []
-[2024-11-06T03:15:01.188598+00:00] sql.INFO: [19.57] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:01.198962+00:00] sql.INFO: [7.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:05.277166+00:00] sql.INFO: [145.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:05.283036+00:00] sql.INFO: [3.63] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:10.079402+00:00] sql.INFO: [52.88] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:10.093915+00:00] sql.INFO: [10.01] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:12.330883+00:00] sql.INFO: [25.95] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:12.337249+00:00] sql.INFO: [3.88] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '1' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:16.337298+00:00] sql.INFO: [88.59] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0' and `article`.`status` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:16.343484+00:00] sql.INFO: [5.01] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0' and `article`.`status` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:20.098125+00:00] sql.INFO: [10.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:20.104129+00:00] sql.INFO: [4.07] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:24.636068+00:00] sql.INFO: [13.38] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-06T03:15:24.644787+00:00] sql.INFO: [21.65] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:24.692987+00:00] sql.INFO: [8.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:24.718207+00:00] sql.INFO: [5.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:24.734734+00:00] sql.INFO: [4.29] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:24.743647+00:00] sql.INFO: [3.27] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:24.767660+00:00] sql.INFO: [5.35] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:26.791796+00:00] sql.INFO: [16.87] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:26.802131+00:00] sql.INFO: [6.14] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:30.090551+00:00] sql.INFO: [4.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:30.091654+00:00] sql.INFO: [4.14] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T03:15:30.116888+00:00] sql.INFO: [4.75] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:30.132207+00:00] sql.INFO: [4.48] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:30.147453+00:00] sql.INFO: [4.68] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:30.155711+00:00] sql.INFO: [2.84] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:30.178626+00:00] sql.INFO: [5.49] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:31.888328+00:00] sql.INFO: [9.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:31.894201+00:00] sql.INFO: [4.21] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:35.514627+00:00] sql.INFO: [6.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:35.516329+00:00] sql.INFO: [7.71] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-06T03:15:35.546474+00:00] sql.INFO: [6.88] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:35.565072+00:00] sql.INFO: [5.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:35.582903+00:00] sql.INFO: [3.96] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:35.593010+00:00] sql.INFO: [3.61] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:35.616928+00:00] sql.INFO: [5.61] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:38.383879+00:00] sql.INFO: [20.77] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:38.390897+00:00] sql.INFO: [3.87] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:41.491476+00:00] sql.INFO: [8.91] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '532') limit 1 [] []
-[2024-11-06T03:15:41.493476+00:00] sql.INFO: [10.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:41.516286+00:00] sql.INFO: [5.32] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:41.531027+00:00] sql.INFO: [4.61] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:41.549455+00:00] sql.INFO: [4.59] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:41.558925+00:00] sql.INFO: [3.15] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:41.579356+00:00] sql.INFO: [5.28] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:43.806014+00:00] sql.INFO: [16.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:43.818487+00:00] sql.INFO: [7.25] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:46.809447+00:00] sql.INFO: [89.28] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:15:46.817673+00:00] sql.INFO: [5.29] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:15:49.163256+00:00] sql.INFO: [6.66] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:49.164070+00:00] sql.INFO: [6.97] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '26') limit 1 [] []
-[2024-11-06T03:15:49.202901+00:00] sql.INFO: [4.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:49.217852+00:00] sql.INFO: [4.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:49.239993+00:00] sql.INFO: [5.21] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:15:49.248455+00:00] sql.INFO: [4.45] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:15:49.275322+00:00] sql.INFO: [5.79] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:16:08.715989+00:00] sql.INFO: [19.9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:16:08.724175+00:00] sql.INFO: [4.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:16:19.543858+00:00] sql.INFO: [5.06] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:19.545212+00:00] sql.INFO: [5.03] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '539') limit 1 [] []
-[2024-11-06T03:16:19.570968+00:00] sql.INFO: [4.71] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:19.586482+00:00] sql.INFO: [4.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:19.601710+00:00] sql.INFO: [4.83] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:19.613299+00:00] sql.INFO: [4.6] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:16:19.632875+00:00] sql.INFO: [4.29] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:16:21.380903+00:00] sql.INFO: [8.48] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:16:21.387494+00:00] sql.INFO: [4.37] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:16:24.204319+00:00] sql.INFO: [12.52] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:24.211176+00:00] sql.INFO: [9.65] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T03:16:24.242983+00:00] sql.INFO: [4.73] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:24.256134+00:00] sql.INFO: [3.23] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:24.272888+00:00] sql.INFO: [4.56] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:16:24.278449+00:00] sql.INFO: [3.57] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:16:24.310188+00:00] sql.INFO: [8.65] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:19:37.413364+00:00] sql.INFO: [10.81] update `article` set `title` = '刘佳伟开盘特朗普当买1赔1.2哈哈姐1赔13', `islink` = '', `linkurl` = 'http://www.baidu.com/xinwen/telangpu/1920.html', `cat_arr_id` = '"[5]"', `level` = '1', `imgurl` = 'http://192.168.1.201:9501/image/20241106/1730863115803759.jpg', `keyword` = '开盘,特朗普', `introduce` = '特朗普', `author` = '刘佳伟', `hits` = '109821', `is_original` = '0', `copyfrom` = '百度', `fromurl` = '', `status` = '1', `id` = '538', `catid` = '5', `tag` = '', `article`.`updated_at` = '2024-11-06 03:19:37' where (`id` = '538') [] []
-[2024-11-06T03:19:37.447099+00:00] sql.INFO: [3.09] update `article_data` set `content` = '<p>特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普特朗普</p>', `article_data`.`updated_at` = '2024-11-06 03:19:37' where (`article_id` = '538') [] []
-[2024-11-06T03:19:38.081813+00:00] sql.INFO: [39.79] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:19:38.087247+00:00] sql.INFO: [3.35] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:19:41.245327+00:00] sql.INFO: [7.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:41.254521+00:00] sql.INFO: [12.77] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T03:19:41.302075+00:00] sql.INFO: [9.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:41.337451+00:00] sql.INFO: [3.2] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:41.353098+00:00] sql.INFO: [2.66] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:41.365346+00:00] sql.INFO: [2.36] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:19:41.378998+00:00] sql.INFO: [2.42] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:19:54.958272+00:00] sql.INFO: [9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:19:54.964015+00:00] sql.INFO: [3.72] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:19:57.616416+00:00] sql.INFO: [5.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:57.617750+00:00] sql.INFO: [6.89] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T03:19:57.648739+00:00] sql.INFO: [6.04] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:57.665879+00:00] sql.INFO: [3.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:57.680700+00:00] sql.INFO: [2.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:19:57.693168+00:00] sql.INFO: [2.13] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:19:57.710186+00:00] sql.INFO: [3.89] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:20:06.756245+00:00] sql.INFO: [17.9] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:20:06.761078+00:00] sql.INFO: [2.9] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:20:10.632978+00:00] sql.INFO: [9.38] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T03:20:10.634492+00:00] sql.INFO: [11.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:20:10.669097+00:00] sql.INFO: [3.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:20:10.682643+00:00] sql.INFO: [2.84] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:20:10.721879+00:00] sql.INFO: [3.19] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:20:10.725318+00:00] sql.INFO: [2.32] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:20:10.758281+00:00] sql.INFO: [3.17] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T03:21:14.048619+00:00] sql.INFO: [12.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:21:14.053392+00:00] sql.INFO: [2.9] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:19.554433+00:00] sql.INFO: [84.01] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:21:19.560159+00:00] sql.INFO: [3.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:21.657478+00:00] sql.INFO: [92.5] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-06T03:21:21.662590+00:00] sql.INFO: [3.42] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:25.880573+00:00] sql.INFO: [4.67] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:25.891378+00:00] sql.INFO: [14.22] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '16') limit 1 [] []
-[2024-11-06T03:21:25.928042+00:00] sql.INFO: [3.41] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:25.941325+00:00] sql.INFO: [2.74] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:25.955876+00:00] sql.INFO: [2.81] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:25.970662+00:00] sql.INFO: [2.23] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:21:25.982361+00:00] sql.INFO: [2.4] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:21:28.170929+00:00] sql.INFO: [29.56] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:21:28.182568+00:00] sql.INFO: [6.03] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:29.313285+00:00] sql.INFO: [27.32] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:21:29.326197+00:00] sql.INFO: [7.1] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:30.827056+00:00] sql.INFO: [191.12] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-06T03:21:30.832190+00:00] sql.INFO: [4.35] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:32.518826+00:00] sql.INFO: [199.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 520 [] []
-[2024-11-06T03:21:32.525915+00:00] sql.INFO: [4.17] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:35.950761+00:00] sql.INFO: [221.94] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 510 [] []
-[2024-11-06T03:21:35.956713+00:00] sql.INFO: [4.03] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:39.274795+00:00] sql.INFO: [10.32] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:39.274804+00:00] sql.INFO: [10.45] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-11-06T03:21:39.302150+00:00] sql.INFO: [4.72] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:39.323323+00:00] sql.INFO: [4.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:39.339579+00:00] sql.INFO: [3.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:21:39.350332+00:00] sql.INFO: [2.8] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:21:39.372440+00:00] sql.INFO: [4.09] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:21:42.084008+00:00] sql.INFO: [8.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:21:42.089067+00:00] sql.INFO: [3] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:45.682713+00:00] sql.INFO: [26.04] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 50 [] []
-[2024-11-06T03:21:45.688656+00:00] sql.INFO: [3.4] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:47.271126+00:00] sql.INFO: [915.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-06T03:21:47.275292+00:00] sql.INFO: [3.21] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:21:48.123755+00:00] sql.INFO: [788.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 520 [] []
-[2024-11-06T03:21:48.130541+00:00] sql.INFO: [4.35] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:21.909758+00:00] sql.INFO: [4.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:21.912131+00:00] sql.INFO: [5.97] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '10') limit 1 [] []
-[2024-11-06T03:22:21.955922+00:00] sql.INFO: [6.79] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:21.975129+00:00] sql.INFO: [3.23] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:21.996181+00:00] sql.INFO: [3.17] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:22.009658+00:00] sql.INFO: [5.57] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:22:22.027771+00:00] sql.INFO: [3.32] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:22:25.454692+00:00] sql.INFO: [21] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:22:25.465552+00:00] sql.INFO: [5.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:27.845231+00:00] sql.INFO: [179.8] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 530 [] []
-[2024-11-06T03:22:27.849278+00:00] sql.INFO: [3.22] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:29.214954+00:00] sql.INFO: [182.61] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 510 [] []
-[2024-11-06T03:22:29.220884+00:00] sql.INFO: [3.54] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:33.723648+00:00] sql.INFO: [12.6] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:33.726112+00:00] sql.INFO: [14.94] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '29') limit 1 [] []
-[2024-11-06T03:22:33.755234+00:00] sql.INFO: [4.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:33.775152+00:00] sql.INFO: [4.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:33.792832+00:00] sql.INFO: [3.59] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:33.801076+00:00] sql.INFO: [3.52] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:22:33.823468+00:00] sql.INFO: [4.37] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T03:22:37.223933+00:00] sql.INFO: [16.53] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:22:37.232697+00:00] sql.INFO: [4.93] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:40.062231+00:00] sql.INFO: [150.69] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:22:40.067823+00:00] sql.INFO: [3.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:45.023054+00:00] sql.INFO: [103.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-06T03:22:45.028486+00:00] sql.INFO: [3.5] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where (`article`.`islink` = '0') and `article`.`status` not in ('404') [] []
-[2024-11-06T03:22:49.066071+00:00] sql.INFO: [13.11] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '16') limit 1 [] []
-[2024-11-06T03:22:49.068603+00:00] sql.INFO: [15.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:49.097879+00:00] sql.INFO: [6.29] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:49.120971+00:00] sql.INFO: [4.83] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:49.139505+00:00] sql.INFO: [3.86] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T03:22:49.149993+00:00] sql.INFO: [2.4] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:22:49.172063+00:00] sql.INFO: [3.58] select * from `category` where (`pid` = '2') [] []
-[2024-11-06T03:22:53.028551+00:00] sql.INFO: [29.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T03:22:53.035535+00:00] sql.INFO: [3.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:11:53.788343+00:00] sql.INFO: [20.84] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:11:53.792833+00:00] sql.INFO: [2.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:14:43.658361+00:00] sql.INFO: [42.15] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:14:43.670712+00:00] sql.INFO: [6.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:14:57.905474+00:00] sql.INFO: [3.81] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:14:57.916106+00:00] sql.INFO: [11.46] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-06T05:14:57.960505+00:00] sql.INFO: [4.02] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:14:57.974378+00:00] sql.INFO: [2.58] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:14:57.988785+00:00] sql.INFO: [3.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:14:57.996944+00:00] sql.INFO: [2.28] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:14:58.025268+00:00] sql.INFO: [5.33] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:14:59.726196+00:00] sql.INFO: [22.43] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:14:59.739115+00:00] sql.INFO: [6.16] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:15:15.101726+00:00] sql.INFO: [4.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:15.106466+00:00] sql.INFO: [6.15] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:15:15.145583+00:00] sql.INFO: [5.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:15.161578+00:00] sql.INFO: [4.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:15.181483+00:00] sql.INFO: [3.95] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:15.190410+00:00] sql.INFO: [3.29] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:15:15.213869+00:00] sql.INFO: [3.96] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:15:18.866146+00:00] sql.INFO: [59.08] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:15:18.873406+00:00] sql.INFO: [5.15] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:15:21.878143+00:00] sql.INFO: [14.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:21.882741+00:00] sql.INFO: [18.54] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:15:21.919380+00:00] sql.INFO: [5.98] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:21.937059+00:00] sql.INFO: [2.95] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:21.954137+00:00] sql.INFO: [3.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:21.963138+00:00] sql.INFO: [2.39] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:15:21.990129+00:00] sql.INFO: [5.14] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:15:29.928642+00:00] sql.INFO: [17.26] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:15:29.930215+00:00] sql.INFO: [18.97] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:29.977418+00:00] sql.INFO: [9.16] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:30.009322+00:00] sql.INFO: [5.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:30.029435+00:00] sql.INFO: [4.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:15:30.041263+00:00] sql.INFO: [3.18] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:15:30.076501+00:00] sql.INFO: [7.91] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:19:40.444714+00:00] sql.INFO: [44.11] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:19:40.451778+00:00] sql.INFO: [4.58] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:19:43.341117+00:00] sql.INFO: [8.28] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:43.352293+00:00] sql.INFO: [18.65] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:19:43.414944+00:00] sql.INFO: [12.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:43.438274+00:00] sql.INFO: [4.24] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:43.454820+00:00] sql.INFO: [3.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:43.482100+00:00] sql.INFO: [5.39] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:19:43.507283+00:00] sql.INFO: [5.96] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:19:51.298851+00:00] sql.INFO: [6.65] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:51.300330+00:00] sql.INFO: [6.76] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:19:51.355839+00:00] sql.INFO: [10.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:51.379431+00:00] sql.INFO: [5.18] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:51.396485+00:00] sql.INFO: [3.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:19:51.409123+00:00] sql.INFO: [2.84] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:19:51.441088+00:00] sql.INFO: [6.74] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:20:17.077328+00:00] sql.INFO: [33.49] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:20:17.089613+00:00] sql.INFO: [7.67] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:20:20.652340+00:00] sql.INFO: [9.63] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:21:46.166627+00:00] sql.INFO: [6.92] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('刘佳伟买特朗普上位不幸失败,目前已怒亏20个w', '0', 'www.baidu.com', '[1]', '3', 'http://192.168.1.201:9501/image/20241106/1730870473200923.jpg', '特朗普', '特朗普特朗普', '刘佳伟', '1946', '0', '百度', '', '1', '1', '172.17.0.1', '73') [] []
-[2024-11-06T05:21:46.174190+00:00] sql.INFO: [6.69] insert into `article_data` (`article_id`, `content`) values ('541', '<p>特朗普特朗普特朗普特朗普特朗普特朗普特朗普</p>') [] []
-[2024-11-06T05:21:46.840453+00:00] sql.INFO: [20.22] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:21:46.851402+00:00] sql.INFO: [6.09] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:22:23.649582+00:00] sql.INFO: [9.34] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:23.657821+00:00] sql.INFO: [13.59] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:22:23.703892+00:00] sql.INFO: [9.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:23.732156+00:00] sql.INFO: [4.14] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:23.750017+00:00] sql.INFO: [4.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:23.761982+00:00] sql.INFO: [3.04] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:22:23.786871+00:00] sql.INFO: [6.03] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:22:37.642575+00:00] sql.INFO: [10.93] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:37.647511+00:00] sql.INFO: [5.61] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:22:37.711574+00:00] sql.INFO: [9.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:37.735622+00:00] sql.INFO: [5.21] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:37.770224+00:00] sql.INFO: [7.47] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:22:37.784723+00:00] sql.INFO: [2.81] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:22:37.854656+00:00] sql.INFO: [11.74] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:23:08.959527+00:00] sql.INFO: [11.46] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:23:08.961453+00:00] sql.INFO: [10.05] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:23:09.024736+00:00] sql.INFO: [9.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:23:09.047863+00:00] sql.INFO: [4.72] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:23:09.073494+00:00] sql.INFO: [3.91] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:23:09.085527+00:00] sql.INFO: [2.62] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:23:09.145656+00:00] sql.INFO: [12.5] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:24:26.221429+00:00] sql.INFO: [9.98] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:26.221451+00:00] sql.INFO: [9.87] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:24:26.262452+00:00] sql.INFO: [3.44] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:26.279858+00:00] sql.INFO: [3.12] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:26.304218+00:00] sql.INFO: [3.37] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:26.313443+00:00] sql.INFO: [2.52] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:24:26.340428+00:00] sql.INFO: [3.37] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:24:46.887355+00:00] sql.INFO: [6.6] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:46.889377+00:00] sql.INFO: [8.73] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:24:46.940414+00:00] sql.INFO: [3.77] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:46.953750+00:00] sql.INFO: [2.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:46.979663+00:00] sql.INFO: [2.63] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:24:46.992426+00:00] sql.INFO: [2.32] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:24:47.020210+00:00] sql.INFO: [2.93] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:25:03.862528+00:00] sql.INFO: [5.67] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:25:03.867934+00:00] sql.INFO: [4.36] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:25:03.943754+00:00] sql.INFO: [7.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:25:03.963629+00:00] sql.INFO: [3.63] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:25:03.986329+00:00] sql.INFO: [3.38] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:25:03.994233+00:00] sql.INFO: [2.04] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:25:04.033117+00:00] sql.INFO: [6.19] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:28:19.391917+00:00] sql.INFO: [11.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:28:19.392932+00:00] sql.INFO: [12.08] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:28:19.441005+00:00] sql.INFO: [4.58] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:28:19.455653+00:00] sql.INFO: [4.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:28:19.483106+00:00] sql.INFO: [4.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:28:19.499260+00:00] sql.INFO: [3.65] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:28:19.533158+00:00] sql.INFO: [4.81] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:23.920250+00:00] sql.INFO: [8.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:23.923987+00:00] sql.INFO: [8.6] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:29:24.018335+00:00] sql.INFO: [11.69] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:24.050310+00:00] sql.INFO: [3.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:24.070909+00:00] sql.INFO: [3.72] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:24.082961+00:00] sql.INFO: [3.57] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:24.125153+00:00] sql.INFO: [6.64] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:31.654994+00:00] sql.INFO: [3.59] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:31.656089+00:00] sql.INFO: [4.33] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:29:31.706557+00:00] sql.INFO: [5.33] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:31.754079+00:00] sql.INFO: [7.17] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:31.799191+00:00] sql.INFO: [7.22] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:31.812311+00:00] sql.INFO: [7.82] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:31.858314+00:00] sql.INFO: [2.98] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:59.029320+00:00] sql.INFO: [11.01] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:29:59.038879+00:00] sql.INFO: [9.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:59.091133+00:00] sql.INFO: [9.8] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:59.110579+00:00] sql.INFO: [2.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:59.136824+00:00] sql.INFO: [2.72] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:29:59.147805+00:00] sql.INFO: [3.25] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:29:59.178199+00:00] sql.INFO: [2.65] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:30:35.652611+00:00] sql.INFO: [9.13] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:30:35.654354+00:00] sql.INFO: [10.13] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:30:35.706881+00:00] sql.INFO: [6.31] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:30:35.727991+00:00] sql.INFO: [3.22] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:30:35.756726+00:00] sql.INFO: [2.28] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:30:35.781383+00:00] sql.INFO: [2.3] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:30:35.825459+00:00] sql.INFO: [2.84] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:32:32.956258+00:00] sql.INFO: [41.36] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:32:32.957367+00:00] sql.INFO: [42.24] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:33.035908+00:00] sql.INFO: [14.31] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:33.071464+00:00] sql.INFO: [5.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:33.092038+00:00] sql.INFO: [3.75] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:33.111085+00:00] sql.INFO: [4.08] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:32:33.156412+00:00] sql.INFO: [9.95] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:32:38.719881+00:00] sql.INFO: [12.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:38.725475+00:00] sql.INFO: [8.53] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:32:38.810342+00:00] sql.INFO: [7.07] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:38.831946+00:00] sql.INFO: [4.75] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:38.859757+00:00] sql.INFO: [4.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:32:38.875991+00:00] sql.INFO: [4.39] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:32:38.921929+00:00] sql.INFO: [4.31] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:39:34.055097+00:00] sql.INFO: [28.01] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:39:34.066652+00:00] sql.INFO: [7.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:39:37.411959+00:00] sql.INFO: [6.2] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:39:37.418458+00:00] sql.INFO: [12.69] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:39:37.478988+00:00] sql.INFO: [8.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:39:37.499506+00:00] sql.INFO: [4.58] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:39:37.518432+00:00] sql.INFO: [4.83] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:39:37.527835+00:00] sql.INFO: [3.79] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:39:37.553986+00:00] sql.INFO: [4.63] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:41:36.538345+00:00] sql.INFO: [16.95] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:41:36.539221+00:00] sql.INFO: [17.41] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:41:36.583217+00:00] sql.INFO: [2.16] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:41:36.596799+00:00] sql.INFO: [1.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:41:36.617822+00:00] sql.INFO: [2.2] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:41:36.627236+00:00] sql.INFO: [2.45] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:41:36.655698+00:00] sql.INFO: [2.33] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:42:34.378876+00:00] sql.INFO: [6.11] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:42:34.381996+00:00] sql.INFO: [9.27] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:42:34.425735+00:00] sql.INFO: [5.37] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:42:34.445294+00:00] sql.INFO: [1.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:42:34.467454+00:00] sql.INFO: [1.95] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:42:34.477447+00:00] sql.INFO: [1.56] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:42:34.506461+00:00] sql.INFO: [3.17] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:43:05.079688+00:00] sql.INFO: [3.44] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:43:05.081783+00:00] sql.INFO: [5.32] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:43:05.115319+00:00] sql.INFO: [2.27] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:43:05.128476+00:00] sql.INFO: [1.7] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:43:05.150935+00:00] sql.INFO: [2.29] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:43:05.168953+00:00] sql.INFO: [1.89] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:43:05.186796+00:00] sql.INFO: [1.74] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:14.267510+00:00] sql.INFO: [9.61] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:48:14.267539+00:00] sql.INFO: [10.48] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:14.313503+00:00] sql.INFO: [3.43] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:14.327152+00:00] sql.INFO: [3.16] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:14.354638+00:00] sql.INFO: [3.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:14.364711+00:00] sql.INFO: [2.89] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:14.397459+00:00] sql.INFO: [3.39] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:22.285336+00:00] sql.INFO: [8.93] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:22.289169+00:00] sql.INFO: [7.42] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:48:22.377545+00:00] sql.INFO: [10.35] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:22.404496+00:00] sql.INFO: [4.45] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:22.430429+00:00] sql.INFO: [5.81] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:22.445979+00:00] sql.INFO: [5.34] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:22.480488+00:00] sql.INFO: [6] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:46.106662+00:00] sql.INFO: [12.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:46.118554+00:00] sql.INFO: [5.11] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:48:46.198532+00:00] sql.INFO: [4.5] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:46.213306+00:00] sql.INFO: [3.24] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:46.246698+00:00] sql.INFO: [3.62] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:46.254654+00:00] sql.INFO: [2.77] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:46.279359+00:00] sql.INFO: [3.47] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:51.394409+00:00] sql.INFO: [7.68] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:51.397858+00:00] sql.INFO: [6.5] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:48:51.464828+00:00] sql.INFO: [6.18] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:51.482699+00:00] sql.INFO: [2.98] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:51.510562+00:00] sql.INFO: [4.77] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:48:51.519041+00:00] sql.INFO: [2.93] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:48:51.564242+00:00] sql.INFO: [9.21] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:49:05.005897+00:00] sql.INFO: [7.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.005898+00:00] sql.INFO: [7.67] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:49:05.058606+00:00] sql.INFO: [11.1] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.080113+00:00] sql.INFO: [3.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.102807+00:00] sql.INFO: [4.4] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.112914+00:00] sql.INFO: [3.45] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:49:05.125943+00:00] sql.INFO: [2.87] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:49:05.446081+00:00] sql.INFO: [8.49] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.446298+00:00] sql.INFO: [7.45] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:49:05.500437+00:00] sql.INFO: [4.08] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.515481+00:00] sql.INFO: [3.76] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.544895+00:00] sql.INFO: [5.88] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:49:05.548469+00:00] sql.INFO: [3.51] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:49:05.598430+00:00] sql.INFO: [9.47] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:17.999424+00:00] sql.INFO: [11] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:18.001333+00:00] sql.INFO: [12.7] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:56:18.093716+00:00] sql.INFO: [3.46] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:18.110311+00:00] sql.INFO: [2.74] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:18.143307+00:00] sql.INFO: [3.01] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:18.157646+00:00] sql.INFO: [2.51] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:18.190140+00:00] sql.INFO: [2.9] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:21.663792+00:00] sql.INFO: [12.98] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:56:21.670552+00:00] sql.INFO: [3.68] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:56:23.505844+00:00] sql.INFO: [8.91] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:23.507461+00:00] sql.INFO: [9.63] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:56:23.550941+00:00] sql.INFO: [2.9] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:23.565535+00:00] sql.INFO: [2.75] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:23.593831+00:00] sql.INFO: [2.92] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:23.605338+00:00] sql.INFO: [2.75] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:23.630207+00:00] sql.INFO: [3.37] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:25.969072+00:00] sql.INFO: [8.32] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:56:25.973747+00:00] sql.INFO: [2.63] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:56:28.194853+00:00] sql.INFO: [3.85] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:28.205441+00:00] sql.INFO: [6.42] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '540') limit 1 [] []
-[2024-11-06T05:56:28.252355+00:00] sql.INFO: [3.09] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:28.265726+00:00] sql.INFO: [2.34] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:28.279759+00:00] sql.INFO: [2.65] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:28.289174+00:00] sql.INFO: [2.59] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:28.314948+00:00] sql.INFO: [2.53] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:30.427786+00:00] sql.INFO: [9.75] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:56:30.433221+00:00] sql.INFO: [2.87] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:56:32.883007+00:00] sql.INFO: [3.96] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:32.887290+00:00] sql.INFO: [5.63] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '538') limit 1 [] []
-[2024-11-06T05:56:32.925424+00:00] sql.INFO: [2.44] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:32.939400+00:00] sql.INFO: [2.89] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:32.958348+00:00] sql.INFO: [2.97] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:32.976036+00:00] sql.INFO: [2.27] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:56:32.993357+00:00] sql.INFO: [2.68] select * from `category` where (`pid` = '5') [] []
-[2024-11-06T05:56:38.494396+00:00] sql.INFO: [7.41] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:56:38.498795+00:00] sql.INFO: [2.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:56:40.538044+00:00] sql.INFO: [4.36] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:40.540667+00:00] sql.INFO: [5.14] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:56:40.609621+00:00] sql.INFO: [3.82] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:40.631791+00:00] sql.INFO: [4.93] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:40.650103+00:00] sql.INFO: [2.42] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:40.659438+00:00] sql.INFO: [2.14] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:40.686417+00:00] sql.INFO: [3.01] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:42.788556+00:00] sql.INFO: [6.94] update `article` set `title` = '刘佳伟买特朗普上位不幸失败,目前已怒亏20个w', `islink` = '', `linkurl` = 'www.baidu.com', `cat_arr_id` = '"[1]"', `level` = '3', `imgurl` = 'http://192.168.1.201:9501/image/20241106/1730870473200923.jpg', `keyword` = '特朗普', `introduce` = '特朗普特朗普', `author` = '刘佳伟', `hits` = '1946', `is_original` = '1', `copyfrom` = '百度', `fromurl` = '', `status` = '1', `id` = '541', `catid` = '1', `tag` = '', `article`.`updated_at` = '2024-11-06 05:56:42' where (`id` = '541') [] []
-[2024-11-06T05:56:42.795384+00:00] sql.INFO: [6.03] update `article_data` set `content` = '<p>特朗普特朗普特朗普特朗普特朗普特朗普特朗普</p>', `article_data`.`updated_at` = '2024-11-06 05:56:42' where (`article_id` = '541') [] []
-[2024-11-06T05:56:43.403147+00:00] sql.INFO: [8.07] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T05:56:43.409496+00:00] sql.INFO: [4.33] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T05:56:45.575239+00:00] sql.INFO: [4.88] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:45.577204+00:00] sql.INFO: [4.74] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '541') limit 1 [] []
-[2024-11-06T05:56:45.622651+00:00] sql.INFO: [6.88] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:45.643359+00:00] sql.INFO: [3.67] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:45.661856+00:00] sql.INFO: [3.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T05:56:45.671819+00:00] sql.INFO: [2.02] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T05:56:45.696377+00:00] sql.INFO: [4.14] select * from `category` where (`pid` = '1') [] []
-[2024-11-06T06:14:13.250897+00:00] sql.INFO: [22.92] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T06:14:13.256610+00:00] sql.INFO: [3.65] select count(*) as aggregate from `category` [] []
-[2024-11-06T06:14:41.874819+00:00] sql.INFO: [22.7] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:14:41.883518+00:00] sql.INFO: [5.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:21:55.764789+00:00] sql.INFO: [16.98] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:21:55.769505+00:00] sql.INFO: [2.58] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:21:58.622086+00:00] sql.INFO: [11.52] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:29:53.262752+00:00] sql.INFO: [11.96] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:29:53.274864+00:00] sql.INFO: [1.69] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:29:54.349594+00:00] sql.INFO: [1.96] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:33:26.298475+00:00] sql.INFO: [23.86] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T06:33:26.305837+00:00] sql.INFO: [4.53] select count(*) as aggregate from `category` [] []
-[2024-11-06T06:35:19.662942+00:00] sql.INFO: [30.51] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:35:19.670387+00:00] sql.INFO: [4.1] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:35:20.986715+00:00] sql.INFO: [9.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:36:22.039998+00:00] sql.INFO: [11.22] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:36:22.044013+00:00] sql.INFO: [1.98] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:41:23.853194+00:00] sql.INFO: [12.41] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:41:23.858122+00:00] sql.INFO: [3.05] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:41:28.322803+00:00] sql.INFO: [6.26] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:42:01.255696+00:00] sql.INFO: [3.18] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('1', '0', '', '[1]', '1', '', '1', '1', '1', '0', '1', '', '', '0', '1', '172.17.0.1', '73') [] []
-[2024-11-06T06:42:01.263068+00:00] sql.INFO: [2.79] insert into `article_data` (`article_id`, `content`) values ('542', '<p>1</p>') [] []
-[2024-11-06T06:42:01.884640+00:00] sql.INFO: [6.97] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:42:01.890551+00:00] sql.INFO: [3.61] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:46:31.819981+00:00] sql.INFO: [24.13] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:46:31.826433+00:00] sql.INFO: [4.33] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:46:36.420848+00:00] sql.INFO: [24.65] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:46:36.433520+00:00] sql.INFO: [7.53] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:46:38.435825+00:00] sql.INFO: [12.69] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:47:01.411385+00:00] sql.INFO: [19.77] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T06:47:01.418022+00:00] sql.INFO: [4.44] select count(*) as aggregate from `category` [] []
-[2024-11-06T06:47:04.739326+00:00] sql.INFO: [13.25] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T06:47:04.747180+00:00] sql.INFO: [4.78] select count(*) as aggregate from `category` [] []
-[2024-11-06T06:50:15.489576+00:00] sql.INFO: [20.23] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:50:15.496046+00:00] sql.INFO: [4.48] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T06:50:16.984105+00:00] sql.INFO: [6.05] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T06:50:30.985873+00:00] sql.INFO: [3.17] insert into `article` (`title`, `islink`, `linkurl`, `cat_arr_id`, `level`, `imgurl`, `keyword`, `introduce`, `author`, `hits`, `is_original`, `copyfrom`, `fromurl`, `status`, `catid`, `ip`, `admin_user_id`) values ('1', '0', '', '[1]', '1', '', '1', '1', '1', '0', '1', '', '', '0', '1', '172.17.0.1', '73') [] []
-[2024-11-06T06:50:30.989300+00:00] sql.INFO: [3.04] insert into `article_data` (`article_id`, `content`) values ('543', '<p>1</p>') [] []
-[2024-11-06T06:50:31.600688+00:00] sql.INFO: [8.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T06:50:31.605359+00:00] sql.INFO: [2.89] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T07:11:57.225524+00:00] sql.INFO: [19.08] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-06T07:11:57.232739+00:00] sql.INFO: [5.12] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-06T07:11:58.433991+00:00] sql.INFO: [9.55] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T07:19:11.864385+00:00] sql.INFO: [11.77] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T07:21:51.538985+00:00] sql.INFO: [12.39] select * from `category` where (`pid` = '0') [] []
-[2024-11-06T08:06:14.309985+00:00] sql.INFO: [18.11] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc limit 10 offset 0 [] []
-[2024-11-06T08:06:14.313243+00:00] sql.INFO: [1.41] select count(*) as aggregate from `category` [] []
-[2024-11-08T05:28:47.818259+00:00] sql.INFO: [12.4] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0' and `category`.`name` like '%政策%') [] []
-[2024-11-09T01:19:11.130508+00:00] sql.INFO: [29.18] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc, `category`.`updated_at` desc limit 10 offset 0 [] []
-[2024-11-09T01:19:11.156199+00:00] sql.INFO: [2.3] select count(*) as aggregate from `category` [] []
-[2024-11-09T07:16:46.679192+00:00] sql.INFO: [29.89] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:16:46.684659+00:00] sql.INFO: [3.51] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:16:47.474764+00:00] sql.INFO: [5.47] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:16:57.323505+00:00] sql.INFO: [10.05] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:16:57.329503+00:00] sql.INFO: [4.01] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:17:01.354071+00:00] sql.INFO: [10.46] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:17:01.393428+00:00] sql.INFO: [45.98] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '543') limit 1 [] []
-[2024-11-09T07:17:01.477967+00:00] sql.INFO: [12.44] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:17:01.503448+00:00] sql.INFO: [5.59] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:17:01.523896+00:00] sql.INFO: [4.41] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:17:01.535080+00:00] sql.INFO: [3.43] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '1') [] []
-[2024-11-09T07:17:01.566558+00:00] sql.INFO: [6.24] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '1') [] []
-[2024-11-09T07:17:06.893680+00:00] sql.INFO: [14.18] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:17:06.900902+00:00] sql.INFO: [4.83] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:17:12.866432+00:00] sql.INFO: [25.53] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 10 [] []
-[2024-11-09T07:17:12.873775+00:00] sql.INFO: [4.22] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:17:16.560778+00:00] sql.INFO: [10.34] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:17:16.566784+00:00] sql.INFO: [3.76] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:17:25.284289+00:00] sql.INFO: [7.46] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:17:31.391403+00:00] sql.INFO: [17.6] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:17:31.424759+00:00] sql.INFO: [10.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T07:18:31.996044+00:00] sql.INFO: [8.6] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T07:18:43.440382+00:00] sql.INFO: [11.67] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T07:18:43.446180+00:00] sql.INFO: [3.25] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T08:53:17.553740+00:00] sql.INFO: [9.43] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc, `category`.`updated_at` desc limit 10 offset 0 [] []
-[2024-11-09T08:53:17.556741+00:00] sql.INFO: [1.29] select count(*) as aggregate from `category` [] []
-[2024-11-09T08:55:53.688343+00:00] sql.INFO: [38.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T08:55:53.704462+00:00] sql.INFO: [10.1] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T08:55:55.093024+00:00] sql.INFO: [7.44] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:56:31.728599+00:00] sql.INFO: [10.61] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T08:56:31.734052+00:00] sql.INFO: [3.47] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T08:56:37.288277+00:00] sql.INFO: [6.56] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:56:37.299566+00:00] sql.INFO: [12.44] select * from `article` left join `article_data` on `article`.`id` = `article_data`.`article_id` where (`article`.`id` = '543') limit 1 [] []
-[2024-11-09T08:56:37.341769+00:00] sql.INFO: [4.56] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:56:37.354858+00:00] sql.INFO: [3.47] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:56:37.374603+00:00] sql.INFO: [3.61] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:56:37.386522+00:00] sql.INFO: [3.34] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '1') [] []
-[2024-11-09T08:56:37.405713+00:00] sql.INFO: [4.29] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '1') [] []
-[2024-11-09T08:56:39.610947+00:00] sql.INFO: [11.14] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T08:56:39.617720+00:00] sql.INFO: [4.44] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T08:56:41.174630+00:00] sql.INFO: [14.69] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T08:57:23.051260+00:00] sql.INFO: [13.92] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T08:57:23.057994+00:00] sql.INFO: [4.81] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T08:57:31.240110+00:00] sql.INFO: [10.96] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T09:00:26.744798+00:00] sql.INFO: [16.19] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T09:00:33.143591+00:00] sql.INFO: [6] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T09:10:43.886393+00:00] sql.INFO: [32.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 10 offset 0 [] []
-[2024-11-09T09:10:43.891733+00:00] sql.INFO: [3.59] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2024-11-09T09:10:45.348805+00:00] sql.INFO: [9.86] select `category`.*, `category`.`id` as `category_id` from `category` where (`pid` = '0') [] []
-[2024-11-09T09:36:43.493737+00:00] sql.INFO: [16.17] select `category`.*, `district`.`name` as `city_name`, `department`.`name` as `department_name` from `category` left join `district` on `category`.`city_id` = `district`.`id` left join `department` on `category`.`department_id` = `department`.`id` order by `category`.`sort` desc, `category`.`updated_at` desc limit 10 offset 0 [] []
-[2024-11-09T09:36:43.497870+00:00] sql.INFO: [1.94] select count(*) as aggregate from `category` [] []
-[2025-02-11T16:47:10.961642+08:00] sql.INFO: [63.93] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 5 offset 0 [] []
-[2025-02-11T16:47:11.004238+08:00] sql.INFO: [23.36] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2025-02-11T16:47:26.394344+08:00] sql.INFO: [18.31] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 5 offset 0 [] []
-[2025-02-11T16:47:26.418330+08:00] sql.INFO: [22.19] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2025-02-11T16:47:32.830819+08:00] sql.INFO: [17.98] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 1 offset 0 [] []
-[2025-02-11T16:47:32.854647+08:00] sql.INFO: [22.99] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []
-[2025-02-11T16:47:43.836910+08:00] sql.INFO: [18.58] select `article`.*, `category`.`name` as `category_name` from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') order by `article`.`id` desc limit 20 offset 0 [] []
-[2025-02-11T16:47:43.862506+08:00] sql.INFO: [20.7] select count(*) as aggregate from `article` left join `category` on `article`.`catid` = `category`.`id` where `article`.`status` not in ('404') [] []