Forráskód Böngészése

相关接口已完成1.0

dddmo 5 hónapja
szülő
commit
3873d5f4ee

+ 341 - 8
app/JsonRpc/CollectorService.php

@@ -2,12 +2,17 @@
 namespace App\JsonRpc;
 namespace App\JsonRpc;
 
 
 use App\Model\OldModel\Article as OldArticle;
 use App\Model\OldModel\Article as OldArticle;
+use App\Model\OldModel\ArticleData as OldArticleData;
+use App\Model\OldModel\Category;
 use App\Model\Article;
 use App\Model\Article;
 use App\Model\Web;
 use App\Model\Web;
+use App\Model\Rule;
+use App\Model\ArticleData;
 use Hyperf\DbConnection\Db;
 use Hyperf\DbConnection\Db;
 use Hyperf\RpcServer\Annotation\RpcService;
 use Hyperf\RpcServer\Annotation\RpcService;
 use App\Tools\Result;
 use App\Tools\Result;
 
 
+use function Hyperf\Support\retry;
 
 
 #[RpcService(name: "CollectorService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
 #[RpcService(name: "CollectorService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
 class CollectorService implements CollectorServiceInterface
 class CollectorService implements CollectorServiceInterface
@@ -50,20 +55,26 @@ class CollectorService implements CollectorServiceInterface
             $where = [
             $where = [
                 ['name','like','%'.$data['keyWord'].'%']
                 ['name','like','%'.$data['keyWord'].'%']
             ];
             ];
-            $webss = Web::where($where)->first();
-            if(empty($webss)){
+            $rep = Web::where($where)->limit($data['pageSize'])->orderBy("created_at","desc")->offset(($data['page']-1)*$data['pageSize'])->get();
+            $count =  Web::where($where)->count();
+            if($count==0){
                 return Result::error('未查找到相关网站!');
                 return Result::error('未查找到相关网站!');
             }
             }
         }else{
         }else{
-            $web = Web::get();
+            $rep = Web::limit($data['pageSize'])->orderBy("created_at","desc")->offset(($data['page']-1)*$data['pageSize'])->get();
+            $count =  Web::count();
+            
         }
         }
-        
-        if(empty($web)){
+        $data = [
+            'rep' => $rep->toArray(),
+            'count' => $count
+        ];
+        if(empty($rep)){
             return Result::error('您还未添加网站,请先去添加!');
             return Result::error('您还未添加网站,请先去添加!');
             
             
         }
         }
         
         
-        return Result::success($web);
+        return Result::success($data);
     }
     }
     /**
     /**
      * 修改网站
      * 修改网站
@@ -73,7 +84,7 @@ class CollectorService implements CollectorServiceInterface
     public function upWeb(array $data): array
     public function upWeb(array $data): array
     {
     {
         $web = Web::where('id',$data['id'])->first();
         $web = Web::where('id',$data['id'])->first();
-        if(empty($web)){
+        if(empty($web->toArray())){
             return Result::error('请输入正确的网站id!');
             return Result::error('请输入正确的网站id!');
             
             
         }else{
         }else{
@@ -92,7 +103,7 @@ class CollectorService implements CollectorServiceInterface
     public function delWeb(array $data): array
     public function delWeb(array $data): array
     {
     {
         $web = Web::where('id',$data['id'])->first();
         $web = Web::where('id',$data['id'])->first();
-        if(empty($web)){
+        if(empty($web->toArray())){
             return Result::error('请输入正确的网站id!');
             return Result::error('请输入正确的网站id!');
             
             
         }else{
         }else{
@@ -104,6 +115,128 @@ class CollectorService implements CollectorServiceInterface
         return Result::success($id);
         return Result::success($id);
     }
     }
     /**
     /**
+     * 添加规则任务
+     * @param array $data
+     * @return array|mixed
+     */
+    public function addRule(array $data): array
+    {
+        $web = Web::where('id',$data['web_id'])->get();
+        if(empty($web->toArray())){
+            return Result::error('请输入正确的网站id!');
+            
+        }else{
+            $rulename = Rule::where('name',$data['name'])->get();
+            if(empty($rulename->toArray())){
+                date_default_timezone_set('Asia/Shanghai');
+                $time = time();
+                $catetime = date('Y-m-d H:i:s', $time);
+                $data['created_at'] = $catetime;
+                $id = Rule::insertGetId($data);
+                $result = ['data' => $id];
+            }else{
+                return Result::error('此任务已存在!');
+            }
+        }
+       
+        return Result::success($result['data']);
+    }
+    /**
+     * 获取并搜索规则任务
+     * @param array $data
+     * @return array|mixed
+     */
+    public function getRule(array $data): array
+    {
+        $web = Web::where('id',$data['web_id'])->get();
+        if(empty($web->toArray())){
+            return Result::error('请输入正确的网站id!');
+            
+        }else{
+            if(isset($data['keyWord'])){
+                $where = [
+                    ['name','like','%'.$data['keyWord'].'%'],
+                    ['web_id','=', $data['web_id']] 
+                ];
+                $rep = Rule::withCount(relations:'arts')->where($where)->limit($data['pageSize'])->orderBy("created_at","desc")->offset(($data['page']-1)*$data['pageSize'])->get();
+                $count = Rule::where($where)->count();
+                if($count==0){
+                    return Result::error('未查找到相关网站!');
+                }
+            }else{
+                $rep = Rule::withCount(relations:'arts')->where('web_id',$data['web_id'])->limit($data['pageSize'])->orderBy("created_at","desc")->offset(($data['page']-1)*$data['pageSize'])->get();
+                $count = Rule::where('web_id',$data['web_id'])->count();
+                if($count==0){
+                    return Result::error('此网站下暂无规则任务!');
+                }
+            }       
+        }
+        $data = [
+            'rep' => $rep->toArray(),
+            'count' => $count
+        ];
+        return Result::success($data);
+    }
+     /**
+     * 获取某个任务规则
+     * @param array $data
+     * @return array|mixed
+     */
+    public function getOneRule(array $data): array
+    {
+        $result = Rule::where('id',$data['id'])->first();
+        if(empty($result)){
+            return Result::error('请输入正确的规则任务id!');
+            
+        }else{
+            return Result::success($result);
+        } 
+    }
+    /**
+     * 修改规则任务
+     * @param array $data
+     * @return array|mixed
+     */
+    public function upRule(array $data): array
+    {
+        $rule = Rule::where('id',$data['id'])->first();
+        if(empty($rule)){
+            return Result::error('请输入正确的规则任务id!');
+            
+        }else{
+            $rulename = Rule::where('name',$data['name'])->first();
+            if(empty($rulename)){
+                $result = Rule::where('id',$data['id'])->update($data);
+            }else{
+                return Result::error('此任务名称已存在!');
+            }
+        }
+       
+        return Result::success($result);
+    }
+    /**
+     * 删除规则任务
+     * @param array $data
+     * @return array
+     */
+    public function delRule(array $data): array
+    {
+        $where = ['id' => $data['rule_id']];
+        $rule = Rule::where($where)->first();
+        if(empty($rule)){
+            return Result::error('请输入正确的规则任务id!');
+            
+        }else{
+            $delrule = Rule::where($where)->delete();
+            if(empty($delrule)){
+                return Result::error('此规则任务删除失败!');
+            }
+        }
+        return Result::success($delrule);
+    }
+
+    /**
+     * 开始采集
      * @param array $data
      * @param array $data
      * @return array
      * @return array
      */
      */
@@ -117,4 +250,204 @@ class CollectorService implements CollectorServiceInterface
         ];
         ];
         return  Result::success($a);
         return  Result::success($a);
     }
     }
+    /**
+     * 获取并搜索资讯
+     * @param array $data
+     * @return array
+     */
+    public function getInfo(array $data): array
+    {
+        $where = [
+            ['rule_id','=',$data['rule_id']]
+        ];
+        //若存在条件参数都存到where数组
+        if(isset($data['title'])){
+            $where[] = ['title','like','%'.$data['title'].'%'];
+        }
+        if(isset($data['source'])){
+            $art_source = Article::where($where)->get();
+            if(!empty($art_source->toArray())){
+                $where[] = ['source','=',$data['source']];
+            } 
+        }
+        if(isset($data['state'])){
+            $where[] = ['state','=',$data['state']];
+        }
+        //跨库查询栏目导航及采集的新闻
+        $info = Article::query()
+        ->where($where)
+        ->with(['category' => function ($query) {
+            $query->select('name');
+        }])
+        ->orderBy("article.id","desc")
+        ->limit($data['pageSize'])
+        ->offset(($data['page']-1)*$data['pageSize'])->get();
+        $count = Article::where($where)->count();
+        if($count == 0){
+            return Result::error('暂无资讯');
+        }
+        $data = [
+            'rep' => $info->toArray(),
+            'count' => $count
+        ];
+        return  Result::success($data);
+    }
+    /**
+     * 获取某个资讯
+     * @param array $data
+     * @return array
+     */
+    public function getOneInfo(array $data): array
+    {
+        $where = ['id' => $data['art_id']];
+        $inf = Article::where($where)->first();
+        $info =  Article::where($where)
+        ->leftJoin('article_data','article_id','id')
+        ->select('article.*','article_data.content')
+        ->first();
+        if($inf['catid']!=null){
+            $category = Category::where(['id'=>$info['catid']])->select('name')->first();
+            $info['category'] = $category['name'];
+        }
+        if(empty($info)){
+            return Result::error('请输入正确的资讯id!');
+        }
+        return  Result::success($info);
+    }
+    /**
+     * 修改资讯
+     * @param array $data
+     * @return array
+     */
+    public function upInfo(array $data): array
+    {
+        $id = $data['art_id'];
+        $content = $data['content'];
+        unset($data['art_id']);
+        //去掉此元素
+        unset($data['content']);
+        //去掉此元素
+        $info =  Article::where('id',$id)->first();  
+        if($info['state']==1){
+            return Result::error('此文章已导入 ,不可编辑!');
+        }else{
+            Db::beginTransaction();
+            try{
+                $info =  Article::where('id',$id)->update($data);  
+                $art_data = ArticleData::where('article_id',$id)->update(['content'=>$content]);
+
+                Db::commit();
+            } catch(\Throwable $ex){
+                Db::rollBack();
+                var_dump($ex->getMessage());
+                return Result::error("修改失败",0);
+            }
+            $data = [
+                'info' => $info,
+                'art_data' => $art_data
+            ];
+            return  Result::success($data);
+        }
+        
+    }
+    /**
+    * 删除资讯
+    * @param array $data
+    * @return array
+    */
+    public function delInfo(array $data): array
+    {
+        $id = $data['art_id'];
+        $info = Article::where('id',$id)->first();
+        if($info['state']==1){
+            return Result::error('此文章已导入,不可删除!'); 
+        }else{
+            Db::beginTransaction();
+            try{
+                $delinfo = Article::where('id',$id)->delete();
+                $deldata = ArticleData::where('article_id',$id)->delete();
+                Db::commit();
+            } catch(\Throwable $ex){
+                Db::rollBack();
+                var_dump($ex->getMessage());
+                return Result::error("删除失败",0);
+            }
+        }
+        $data = [
+            'delinfo' => $delinfo,
+            'deldata' => $deldata
+        ];
+        return  Result::success($data);
+    }
+    /**
+    * 关联导航池
+    * @param array $data
+    * @return array
+    */
+    public function addCatid(array $data): array
+    {
+        $id = $data['rule_id'];
+        //查找此规则任务下的文章是否都已经导入
+        $info = Article::where('rule_id',$id)->where('state',0)->select('id')->get();
+        if(empty($info->toArray())){
+            return Result::error('所有文章都已导入,不可修改关联的导航池!'); 
+        }else{
+            //查找此规则任务下的文章是否已经有导入的文章
+            $article = Article::where('rule_id',$id)->where('state',1)->select('id')->get();
+            if(!empty($article->toArray())){
+                //若有已导入的文章则直接复制之前已导入的导航池
+                $catid = Article::whereIn('id',$article)->select('catid')->first();
+                //若未导入的文章已经复制之前的导航,则无需修改
+                $art_catid = Article::whereIn('id',$info)->whereNull('catid')->count();
+                if($art_catid>0){
+                    $result = Article::whereIn('id',$info)->update(['catid'=>$catid['catid']]);
+                }else{
+                    $result = ['已全部关联导航,无需导入!'];
+                }
+            }else{
+                //若不存在已导入的文章则判断是否存在导航id
+                if(isset($data['catid'])){
+                    //若存在直接使用此导航id
+                    $result = Article::whereIn('id',$info)->update(['catid'=>$data['catid']]);
+                    
+                }else{
+                    //若不存在则返回所有导航栏目
+                    $result = Category::select('id','name')->get();
+                }
+            }
+              
+        }
+        return  Result::success($result);
+    }
+    /**
+    * 导入文章
+    * @param array $data
+    * @return array
+    */
+    public function addArt(array $data): array
+    {
+        $where = [
+            'rule_id' => $data['rule_id'],
+            'state' => 0
+        ];
+        $arts_id = Article::where($where)->wherenotNull('catid')->orderBy('id')->select('id')->get();
+        $arts = Article::where($where)->wherenotNull('catid')->select('title','catid','level','introduce','keyword','author','copyfrom','fromurl','hits','islink','imgurl','admin_user_id','is_original')->orderBy('id')->get()->toArray();       
+        Db::beginTransaction();
+        try{
+            $arts_data = ArticleData::whereIn('article_id',$arts_id)->select('content')->orderBy('article_id')->get()->toArray();
+            $oldart = OldArticle::insert($arts);
+            $oldart_data = OldArticleData::insert($arts_data);
+            Db::commit();
+        } catch(\Throwable $ex){
+            Db::rollBack();
+            var_dump($ex->getMessage());
+            return Result::error($ex->getMessage(),0);
+        }
+        // var_dump($article_data);
+        $data = [
+            'rep' => $oldart,
+            'content' => $oldart_data
+        ];
+        return Result::success($data);
+    }
 }
 }

+ 51 - 0
app/JsonRpc/CollectorServiceInterface.php

@@ -23,12 +23,63 @@ interface CollectorServiceInterface
      *  @return array
      *  @return array
     */
     */
     public function delWeb(array $data):array;
     public function delWeb(array $data):array;
+    /**
+     * @param array $data
+     *  @return array
+    */
+    public function addRule(array $data):array;
+    /**
+     * @param array $data
+     *  @return array
+    */
+    public function getRule(array $data):array;
+     /**
+     * @param array $data
+     *  @return array
+    */
+    public function getOneRule(array $data):array;
+    /**
+     * @param array $data
+     *  @return array
+    */
+    public function upRule(array $data):array;
+
      /**
      /**
      * @param array $data
      * @param array $data
      * @return array
      * @return array
      */
      */
     public function sendCrawler(array $data): array;
     public function sendCrawler(array $data): array;
 
 
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getInfo(array $data): array;
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getOneInfo(array $data): array;
+     /**
+     * @param array $data
+     * @return array
+     */
+    public function upInfo(array $data): array;
+     /**
+     * @param array $data
+     * @return array
+     */
+    public function delInfo(array $data): array;
+     /**
+     * @param array $data
+     * @return array
+     */
+    public function addCatid(array $data): array;
+     /**
+     * @param array $data
+     * @return array
+     */
+    public function addArt(array $data): array;
 }
 }
 
 
 
 

+ 8 - 0
app/Model/Article.php

@@ -24,4 +24,12 @@ class Article extends Model
      * The attributes that should be cast to native types.
      * The attributes that should be cast to native types.
      */
      */
     protected array $casts = [];
     protected array $casts = [];
+    public function rule()
+    {
+        return $this->belongsTo(Rule::class,'rule_id','id');
+    }
+    public function category()
+    {
+        return $this->belongsTo(OldModel\Category::class, 'catid','id');
+    }
 }
 }

+ 27 - 0
app/Model/ArticleData.php

@@ -0,0 +1,27 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class ArticleData extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'article_data';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 1 - 1
app/Model/OldModel/Article.php

@@ -19,7 +19,7 @@ class Article extends Model
     /**
     /**
      * The attributes that are mass assignable.
      * The attributes that are mass assignable.
      */
      */
-    protected array $fillable = [];
+    protected array $fillable = ['title','catid','level','introduce','keyword','author','copyfrom','fromurl','hits','islink','imgurl','source','admin_user_id','created_at','updated_at','is_original'];
 
 
     /**
     /**
      * The attributes that should be cast to native types.
      * The attributes that should be cast to native types.

+ 28 - 0
app/Model/OldModel/ArticleData.php

@@ -0,0 +1,28 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model\OldModel;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class ArticleData extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'article_data';
+    protected ?string $connection = 'secondary';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = ['content'];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+}

+ 32 - 0
app/Model/OldModel/Category.php

@@ -0,0 +1,32 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model\OldModel;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class Category extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'category';
+    protected ?string $connection = 'secondary';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+    public function info()
+    {
+        return $this->hasMany(Article::class, 'id','catid');
+    }
+}

+ 31 - 0
app/Model/Rule.php

@@ -0,0 +1,31 @@
+<?php
+
+declare(strict_types=1);
+
+namespace App\Model;
+
+use Hyperf\DbConnection\Model\Model;
+
+/**
+ */
+class Rule extends Model
+{
+    /**
+     * The table associated with the model.
+     */
+    protected ?string $table = 'rule';
+
+    /**
+     * The attributes that are mass assignable.
+     */
+    protected array $fillable = [];
+
+    /**
+     * The attributes that should be cast to native types.
+     */
+    protected array $casts = [];
+    public function arts()
+    {
+        return $this->hasMany(Article::class,'rule_id','id');
+    }
+}

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
runtime/container/classes.cache


+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-249
+8032

+ 1836 - 0
runtime/logs/hyperf.log

@@ -20,3 +20,1839 @@
 [2024-11-11T09:01:38.495948+00:00] sql.INFO: [17.79] select * from `col_web` [] []
 [2024-11-11T09:01:38.495948+00:00] sql.INFO: [17.79] select * from `col_web` [] []
 [2024-11-11T09:01:57.723834+00:00] sql.INFO: [17.1] select * from `col_web` [] []
 [2024-11-11T09:01:57.723834+00:00] sql.INFO: [17.1] select * from `col_web` [] []
 [2024-11-11T09:02:04.206648+00:00] sql.INFO: [82.9] select * from `col_web` [] []
 [2024-11-11T09:02:04.206648+00:00] sql.INFO: [82.9] select * from `col_web` [] []
+[2024-11-11T09:57:23.516433+00:00] sql.INFO: [96.35] select * from `col_web` [] []
+[2024-11-11T09:57:47.712653+00:00] sql.INFO: [16.28] select * from `col_web` where `id` = '1' limit 1 [] []
+[2024-11-11T09:57:47.912049+00:00] sql.INFO: [197.72] delete from `col_web` where `id` = '1' [] []
+[2024-11-11T09:57:52.309623+00:00] sql.INFO: [18.32] select * from `col_web` [] []
+[2024-11-12T00:59:34.411591+00:00] sql.INFO: [91.08] select * from `col_web` [] []
+[2024-11-12T01:00:14.803523+00:00] sql.INFO: [641.01] select * from `col_web` where `id` = '1' limit 1 [] []
+[2024-11-12T01:00:48.837128+00:00] sql.INFO: [16.78] select * from `col_web` where `id` = '2' limit 1 [] []
+[2024-11-12T01:00:49.952872+00:00] sql.INFO: [1101.43] update `col_web` set `name` = '中华人民共和国政府', `url` = 'https://www.mps.gov.cn/', `id` = '2', `col_web`.`updated_at` = '2024-11-12 01:00:48' where `id` = '2' [] []
+[2024-11-12T01:00:54.758478+00:00] sql.INFO: [16.44] select * from `col_web` [] []
+[2024-11-12T01:10:24.404315+00:00] sql.INFO: [109.76] select * from `col_web` where `id` = '2' limit 1 [] []
+[2024-11-12T01:10:24.692109+00:00] sql.INFO: [62.62] update `col_web` set `name` = '中华人共和国政府', `url` = 'https://www.mps.gov.cn/', `id` = '2', `col_web`.`updated_at` = '2024-11-12 01:10:24' where `id` = '2' [] []
+[2024-11-12T01:10:29.108621+00:00] sql.INFO: [32.87] select * from `col_web` [] []
+[2024-11-12T01:11:11.627639+00:00] sql.INFO: [17.9] select * from `col_web` where `id` = '2' limit 1 [] []
+[2024-11-12T01:11:11.820498+00:00] sql.INFO: [191.46] update `col_web` set `name` = '中华人1共和国政府', `url` = 'https://www.mps.gov.cn/', `id` = '2', `col_web`.`updated_at` = '2024-11-12 01:11:11' where `id` = '2' [] []
+[2024-11-12T01:11:18.220901+00:00] sql.INFO: [13.92] select * from `col_web` [] []
+[2024-11-12T03:22:26.668947+00:00] sql.INFO: [330.05] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:04:07.607495+00:00] sql.INFO: [1332.56] select * from `col_article` [] []
+[2024-11-12T05:04:08.690733+00:00] sql.INFO: [1065.92] select * from `article` [] []
+[2024-11-12T05:04:22.451380+00:00] sql.INFO: [19.07] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-12T05:04:22.593829+00:00] sql.INFO: [141.63] insert into `col_web` (`name`, `url`, `created_at`) values ('中华人民共和国公安部', 'https://www.mps.gov.cn/', '2024-11-12 13:04:22') [] []
+[2024-11-12T05:04:28.177356+00:00] sql.INFO: [14.38] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:04:47.769776+00:00] sql.INFO: [15.41] select * from `col_web` where `id` = '3' limit 1 [] []
+[2024-11-12T05:04:47.859647+00:00] sql.INFO: [88.54] update `col_web` set `name` = '中华人共和国政府', `url` = 'https://www.mps.gov.cn/', `id` = '3', `col_web`.`updated_at` = '2024-11-12 13:04:47' where `id` = '3' [] []
+[2024-11-12T05:04:51.861631+00:00] sql.INFO: [19.74] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:06:57.408936+00:00] sql.INFO: [88.44] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T05:10:24.254741+00:00] sql.INFO: [510.18] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-12T05:10:24.407740+00:00] sql.INFO: [152.18] insert into `col_web` (`name`, `url`, `created_at`) values ('中华人民共和国公安部', 'https://www.mps.gov.cn/', '2024-11-12 13:10:24') [] []
+[2024-11-12T05:10:28.019897+00:00] sql.INFO: [17.81] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-12T05:11:09.074741+00:00] sql.INFO: [16.48] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:11:22.778197+00:00] sql.INFO: [20.31] select * from `col_web` order by `created_at` desc limit 2 offset 0 [] []
+[2024-11-12T05:11:29.113034+00:00] sql.INFO: [17.17] select * from `col_web` order by `created_at` desc limit 2 offset 2 [] []
+[2024-11-12T05:13:35.207294+00:00] sql.INFO: [107.1] select * from `col_web` order by `created_at` desc limit 2 offset 2 [] []
+[2024-11-12T05:13:46.679695+00:00] sql.INFO: [1110.79] select * from `col_web` order by `created_at` desc limit 2 offset 2 [] []
+[2024-11-12T05:15:06.764333+00:00] sql.INFO: [296.75] select * from `col_web` order by `created_at` desc limit 2 offset 2 [] []
+[2024-11-12T05:15:06.845949+00:00] sql.INFO: [62.32] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T05:15:15.387209+00:00] sql.INFO: [16.67] select * from `col_web` order by `created_at` desc limit 2 offset 0 [] []
+[2024-11-12T05:15:15.616005+00:00] sql.INFO: [226.91] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T05:15:52.788523+00:00] sql.INFO: [21.71] select * from `col_web` where (`name` like '%中国%') limit 1 [] []
+[2024-11-12T05:15:59.852566+00:00] sql.INFO: [17.31] select * from `col_web` where (`name` like '%中国%') limit 1 [] []
+[2024-11-12T05:18:28.985623+00:00] sql.INFO: [124.15] select * from `col_web` where (`name` like '%中国%') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:18:29.014099+00:00] sql.INFO: [14.41] select count(*) as aggregate from `col_web` where (`name` like '%中国%') [] []
+[2024-11-12T05:18:49.376671+00:00] sql.INFO: [16.98] select * from `col_web` where (`name` like '%中国%') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:18:49.393268+00:00] sql.INFO: [15.69] select count(*) as aggregate from `col_web` where (`name` like '%中国%') [] []
+[2024-11-12T05:18:55.689117+00:00] sql.INFO: [308.89] select * from `col_web` where (`name` like '%中国%') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:18:55.717890+00:00] sql.INFO: [14.44] select count(*) as aggregate from `col_web` where (`name` like '%中国%') [] []
+[2024-11-12T05:19:33.601171+00:00] sql.INFO: [18.4] select * from `col_web` where (`name` like '%中华%') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:19:34.254717+00:00] sql.INFO: [642.54] select count(*) as aggregate from `col_web` where (`name` like '%中华%') [] []
+[2024-11-12T05:19:45.974632+00:00] sql.INFO: [846.81] select * from `col_web` where (`name` like '%公安%') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:19:45.992031+00:00] sql.INFO: [16.14] select count(*) as aggregate from `col_web` where (`name` like '%公安%') [] []
+[2024-11-12T05:20:13.672267+00:00] sql.INFO: [16.48] select * from `col_web` order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T05:20:13.691028+00:00] sql.INFO: [16.89] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T05:20:21.019573+00:00] sql.INFO: [16.19] select * from `col_web` order by `created_at` desc limit 2 offset 0 [] []
+[2024-11-12T05:20:21.035349+00:00] sql.INFO: [14.41] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T05:20:53.250287+00:00] sql.INFO: [21.13] select * from `col_web` where (`name` like '%中国%') order by `created_at` desc limit 2 offset 0 [] []
+[2024-11-12T05:20:53.267769+00:00] sql.INFO: [16.66] select count(*) as aggregate from `col_web` where (`name` like '%中国%') [] []
+[2024-11-12T05:22:08.901157+00:00] sql.INFO: [1083.19] select * from `col_web` where `id` = '5' limit 1 [] []
+[2024-11-12T05:22:27.623294+00:00] sql.INFO: [17.8] select * from `col_web` where `id` = '2' limit 1 [] []
+[2024-11-12T05:22:27.766042+00:00] sql.INFO: [141.61] delete from `col_web` where `id` = '2' [] []
+[2024-11-12T05:22:46.474416+00:00] sql.INFO: [26.86] select * from `col_web` where `id` = '22' limit 1 [] []
+[2024-11-12T05:44:15.090616+00:00] sql.INFO: [85.92] select * from `col_web` where (`name` like '%中国%') order by `created_at` desc limit 2 offset 0 [] []
+[2024-11-12T05:44:15.107694+00:00] sql.INFO: [16.3] select count(*) as aggregate from `col_web` where (`name` like '%中国%') [] []
+[2024-11-12T05:44:29.256179+00:00] sql.INFO: [23.9] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:44:29.320515+00:00] sql.INFO: [62.83] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T05:45:31.461827+00:00] sql.INFO: [80.61] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T05:45:31.480662+00:00] sql.INFO: [17.25] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T06:03:49.396826+00:00] sql.INFO: [289.52] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:03:49.434417+00:00] sql.INFO: [17.3] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T06:10:45.484805+00:00] sql.INFO: [97.78] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:10:45.499697+00:00] sql.INFO: [13.45] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T06:12:56.216684+00:00] sql.INFO: [1065.2] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:12:56.448914+00:00] sql.INFO: [230.32] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T06:12:59.413285+00:00] sql.INFO: [18.96] select * from `col_web` order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:12:59.639461+00:00] sql.INFO: [224.49] select count(*) as aggregate from `col_web` [] []
+[2024-11-12T06:13:34.214134+00:00] sql.INFO: [15.49] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-12T06:15:02.595551+00:00] sql.INFO: [77.57] select * from `col_web` where (`name` = '中华人民共和国国家卫生健康委员会') limit 1 [] []
+[2024-11-12T06:15:02.680352+00:00] sql.INFO: [83.88] insert into `col_web` (`name`, `url`, `created_at`) values ('中华人民共和国国家卫生健康委员会', 'http://www.nhc.gov.cn/', '2024-11-12 14:15:02') [] []
+[2024-11-12T06:20:05.921875+00:00] sql.INFO: [112.53] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:20:06.003731+00:00] sql.INFO: [62.14] select * from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:23:48.364960+00:00] sql.INFO: [80.95] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:23:48.782935+00:00] sql.INFO: [348.89] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:23:49.008278+00:00] sql.INFO: [224.53] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:24:22.266239+00:00] sql.INFO: [66.38] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:24:22.374861+00:00] sql.INFO: [39.8] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:24:22.389317+00:00] sql.INFO: [13.64] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:28:26.635779+00:00] sql.INFO: [80.28] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:28:26.771656+00:00] sql.INFO: [120.82] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-时政要闻', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-12 14:28:26') [] []
+[2024-11-12T06:28:49.138925+00:00] sql.INFO: [17.4] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:28:49.245710+00:00] sql.INFO: [105.56] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-时政要闻', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-12 14:28:49') [] []
+[2024-11-12T06:29:34.679595+00:00] sql.INFO: [24.35] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:29:34.873969+00:00] sql.INFO: [162.42] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-时政要闻', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-12 14:29:34') [] []
+[2024-11-12T06:29:49.838256+00:00] sql.INFO: [64.75] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:29:50.294342+00:00] sql.INFO: [427.24] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-时政要闻', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-12 14:29:49') [] []
+[2024-11-12T06:35:02.889558+00:00] sql.INFO: [279.73] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:35:03.077916+00:00] sql.INFO: [160.96] select * from `col_rule` where `name` = '中华人民共和国公安部-时政要闻' [] []
+[2024-11-12T06:35:21.156881+00:00] sql.INFO: [18.87] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:35:21.769483+00:00] sql.INFO: [129.75] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:35:21.997419+00:00] sql.INFO: [225.71] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:36:15.525870+00:00] sql.INFO: [73.21] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:36:15.672838+00:00] sql.INFO: [83.58] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:36:15.692376+00:00] sql.INFO: [18.45] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:36:26.146159+00:00] sql.INFO: [224.95] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:36:26.163436+00:00] sql.INFO: [16.36] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:36:26.391196+00:00] sql.INFO: [226.65] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:36:33.680548+00:00] sql.INFO: [717.41] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:36:33.814153+00:00] sql.INFO: [61.74] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:36:33.830743+00:00] sql.INFO: [15.66] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:37:27.067920+00:00] sql.INFO: [16.18] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:37:27.085363+00:00] sql.INFO: [16.41] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:37:27.101210+00:00] sql.INFO: [15.14] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:37:28.681121+00:00] sql.INFO: [18.39] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:37:28.698304+00:00] sql.INFO: [16.22] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '2' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:37:28.714499+00:00] sql.INFO: [15.45] select count(*) as aggregate from `col_rule` where `web_id` = '2' [] []
+[2024-11-12T06:37:36.671657+00:00] sql.INFO: [1125.15] select * from `col_web` where `id` = '2' [] []
+[2024-11-12T06:37:44.233379+00:00] sql.INFO: [226.22] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:37:44.657486+00:00] sql.INFO: [109.8] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:37:44.677772+00:00] sql.INFO: [17.39] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:42:20.231906+00:00] sql.INFO: [143.65] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:42:20.634972+00:00] sql.INFO: [156.59] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:42:20.654340+00:00] sql.INFO: [16.87] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:43:03.917314+00:00] sql.INFO: [17.74] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:44:03.157376+00:00] sql.INFO: [19.41] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:44:10.617698+00:00] sql.INFO: [73.62] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:44:11.005440+00:00] sql.INFO: [106.61] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:44:11.026105+00:00] sql.INFO: [18.47] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:44:24.260477+00:00] sql.INFO: [19.92] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:44:24.282533+00:00] sql.INFO: [20.33] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 3 offset 0 [] []
+[2024-11-12T06:44:24.300862+00:00] sql.INFO: [16.01] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:44:51.774636+00:00] sql.INFO: [17.66] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:44:51.798290+00:00] sql.INFO: [22.22] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:44:51.818931+00:00] sql.INFO: [17.89] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:45:55.523540+00:00] sql.INFO: [64.22] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:45:55.541396+00:00] sql.INFO: [16.42] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:45:58.288404+00:00] sql.INFO: [225.94] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:45:58.305342+00:00] sql.INFO: [15.57] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:00.039284+00:00] sql.INFO: [17.97] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:00.683171+00:00] sql.INFO: [642.43] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:02.607670+00:00] sql.INFO: [17.17] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:02.626656+00:00] sql.INFO: [17.6] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:11.030673+00:00] sql.INFO: [15.58] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:11.259358+00:00] sql.INFO: [227.33] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:12.784230+00:00] sql.INFO: [15.88] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:13.011806+00:00] sql.INFO: [225.91] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:14.699919+00:00] sql.INFO: [15.77] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:14.718999+00:00] sql.INFO: [17.6] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:16.486748+00:00] sql.INFO: [16.36] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:16.505526+00:00] sql.INFO: [17.52] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:46:20.547062+00:00] sql.INFO: [15.38] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:20.618815+00:00] sql.INFO: [70.3] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:46:20.636858+00:00] sql.INFO: [15.76] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:46:22.553047+00:00] sql.INFO: [227.09] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:46:22.571624+00:00] sql.INFO: [17.09] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:46:22.591088+00:00] sql.INFO: [17.32] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:47:07.664954+00:00] sql.INFO: [16.36] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:07.683031+00:00] sql.INFO: [16.48] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:09.312511+00:00] sql.INFO: [17.04] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:09.329868+00:00] sql.INFO: [15.98] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:11.075678+00:00] sql.INFO: [47.42] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:11.096234+00:00] sql.INFO: [19.44] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:12.714435+00:00] sql.INFO: [21.67] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:12.736815+00:00] sql.INFO: [21.03] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:14.661673+00:00] sql.INFO: [231.27] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:14.683806+00:00] sql.INFO: [20.48] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:16.472444+00:00] sql.INFO: [226.87] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:16.489002+00:00] sql.INFO: [15.55] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:18.082247+00:00] sql.INFO: [17.02] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:18.101120+00:00] sql.INFO: [17.61] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:19.774967+00:00] sql.INFO: [15.79] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:20.005062+00:00] sql.INFO: [228.42] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:21.720752+00:00] sql.INFO: [18.06] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:21.738670+00:00] sql.INFO: [16.51] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:51.649233+00:00] sql.INFO: [16.95] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:51.666765+00:00] sql.INFO: [16.11] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:57.661360+00:00] sql.INFO: [99.53] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:47:57.931373+00:00] sql.INFO: [45.68] select * from `col_rule` where `name` = '中华人民共和国公安部-公安要闻' [] []
+[2024-11-12T06:47:58.031987+00:00] sql.INFO: [99.67] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-公安要闻', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-12 14:47:57') [] []
+[2024-11-12T06:48:13.360230+00:00] sql.INFO: [16.25] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:13.455581+00:00] sql.INFO: [50.02] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:13.475386+00:00] sql.INFO: [17.46] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:15.914380+00:00] sql.INFO: [17.7] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:15.935508+00:00] sql.INFO: [19.36] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:16.161981+00:00] sql.INFO: [223.65] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:37.137122+00:00] sql.INFO: [20.63] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:37.369384+00:00] sql.INFO: [230.66] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:37.605666+00:00] sql.INFO: [231.06] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:39.753994+00:00] sql.INFO: [16.66] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:39.773873+00:00] sql.INFO: [17.82] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:39.797336+00:00] sql.INFO: [21.07] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:55.834087+00:00] sql.INFO: [16.11] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:55.854235+00:00] sql.INFO: [18.62] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:55.876173+00:00] sql.INFO: [19.53] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:57.587738+00:00] sql.INFO: [17.41] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:57.607668+00:00] sql.INFO: [18.45] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:57.835925+00:00] sql.INFO: [224.84] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:48:59.484091+00:00] sql.INFO: [16.18] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:48:59.502704+00:00] sql.INFO: [17.09] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:48:59.520414+00:00] sql.INFO: [15.63] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:49:12.013103+00:00] sql.INFO: [645.23] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:49:12.033057+00:00] sql.INFO: [18.16] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:49:12.052081+00:00] sql.INFO: [16.56] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:49:13.992658+00:00] sql.INFO: [226.68] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:49:14.012657+00:00] sql.INFO: [18.5] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:49:14.243145+00:00] sql.INFO: [228.1] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:49:16.720331+00:00] sql.INFO: [854.73] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:49:16.772354+00:00] sql.INFO: [49.27] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 5 offset 0 [] []
+[2024-11-12T06:49:17.004314+00:00] sql.INFO: [228.54] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:49:27.034734+00:00] sql.INFO: [230.74] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:49:27.053401+00:00] sql.INFO: [16.86] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:49:27.073338+00:00] sql.INFO: [17.53] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:49:28.938564+00:00] sql.INFO: [436.43] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:49:32.311905+00:00] sql.INFO: [3371.71] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%时政%' and `web_id` = '4') order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:49:32.336558+00:00] sql.INFO: [21.74] select count(*) as aggregate from `col_rule` where (`name` like '%时政%' and `web_id` = '4') [] []
+[2024-11-12T06:50:25.580833+00:00] sql.INFO: [74.71] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:50:25.908820+00:00] sql.INFO: [19.67] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:50:25.927679+00:00] sql.INFO: [16.44] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:51:56.473631+00:00] sql.INFO: [62.51] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:51:56.528901+00:00] sql.INFO: [53.72] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:51:56.548756+00:00] sql.INFO: [17.16] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:53:21.357091+00:00] sql.INFO: [266.08] select * from `col_web` where `id` = '5' [] []
+[2024-11-12T06:53:21.387161+00:00] sql.INFO: [28.44] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '5' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:53:21.403677+00:00] sql.INFO: [15.4] select count(*) as aggregate from `col_rule` where `web_id` = '5' [] []
+[2024-11-12T06:53:48.189014+00:00] sql.INFO: [16.44] select * from `col_web` where `id` = '8' [] []
+[2024-11-12T06:54:18.431301+00:00] sql.INFO: [16.96] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:54:18.455868+00:00] sql.INFO: [22.98] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:54:18.474784+00:00] sql.INFO: [16.06] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T06:54:30.106384+00:00] sql.INFO: [16.56] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T06:54:30.138875+00:00] sql.INFO: [30.93] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where (`name` like '%公安要闻%' and `web_id` = '4') order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T06:54:30.155800+00:00] sql.INFO: [15.64] select count(*) as aggregate from `col_rule` where (`name` like '%公安要闻%' and `web_id` = '4') [] []
+[2024-11-12T07:00:22.750081+00:00] sql.INFO: [64.4] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T07:00:22.772415+00:00] sql.INFO: [20.74] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T07:00:22.790070+00:00] sql.INFO: [15.33] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T07:43:22.045421+00:00] sql.INFO: [71.43] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T07:43:22.314360+00:00] sql.INFO: [35.17] select * from `col_rule` where `name` = '中华人民共和国公安部-时政要闻' [] []
+[2024-11-12T07:44:57.619548+00:00] sql.INFO: [142.72] select * from `col_rule` where (`id` = '12') [] []
+[2024-11-12T07:45:12.453914+00:00] sql.INFO: [20.35] select * from `col_rule` where (`id` = '1') [] []
+[2024-11-12T07:45:12.528606+00:00] sql.INFO: [73.17] delete from `col_rule` where (`id` = '1') [] []
+[2024-11-12T07:46:37.261938+00:00] sql.INFO: [272.28] select * from `col_rule` where (`id` = '1') [] []
+[2024-11-12T07:46:43.262328+00:00] sql.INFO: [275.36] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:47:31.468587+00:00] sql.INFO: [16.28] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:49:37.390723+00:00] sql.INFO: [114.85] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:49:48.895948+00:00] sql.INFO: [15.69] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:49:50.428020+00:00] sql.INFO: [16.8] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:50:14.721092+00:00] sql.INFO: [150.16] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:50:19.736070+00:00] sql.INFO: [74.29] select * from `col_rule` where (`id` = '1') limit 1 [] []
+[2024-11-12T07:50:39.993835+00:00] sql.INFO: [18.45] select * from `col_rule` where (`id` = '5') limit 1 [] []
+[2024-11-12T07:50:40.182520+00:00] sql.INFO: [179.4] delete from `col_rule` where (`id` = '5') [] []
+[2024-11-12T07:51:04.794649+00:00] sql.INFO: [80.74] select * from `col_rule` where (`id` = '5') limit 1 [] []
+[2024-11-12T07:51:31.754538+00:00] sql.INFO: [104.67] select * from `col_rule` where (`id` = '5') limit 1 [] []
+[2024-11-12T07:51:40.121620+00:00] sql.INFO: [15.38] select * from `col_web` where `id` = '4' [] []
+[2024-11-12T07:51:40.520015+00:00] sql.INFO: [141.78] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-12T07:51:40.538045+00:00] sql.INFO: [15.96] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-12T07:52:04.855062+00:00] sql.INFO: [498.22] select * from `col_rule` where (`id` = '3') limit 1 [] []
+[2024-11-12T07:52:04.953716+00:00] sql.INFO: [95.96] delete from `col_rule` where (`id` = '3') [] []
+[2024-11-12T09:52:56.658924+00:00] sql.INFO: [99.44] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:24:14.513231+00:00] sql.INFO: [2932.88] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`title` like '%111%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:26:11.487697+00:00] sql.INFO: [372.09] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:41:31.558727+00:00] sql.INFO: [141.98] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%' and `title` like '%111%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:42:15.342004+00:00] sql.INFO: [1444.91] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%' and `source` = '' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:44:09.561559+00:00] sql.INFO: [145.13] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:44:20.491846+00:00] sql.INFO: [20.92] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%' and `source` = '1') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:44:29.442981+00:00] sql.INFO: [18.49] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:44:39.318677+00:00] sql.INFO: [32.43] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:44:42.271453+00:00] sql.INFO: [19.94] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:45:43.048042+00:00] sql.INFO: [110.29] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:45:44.956231+00:00] sql.INFO: [19.79] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:46:35.231944+00:00] sql.INFO: [196.15] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%0000%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:48:42.331424+00:00] sql.INFO: [202.58] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '4' and `title` like '%111%' and `source` = '1' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:54:42.375790+00:00] sql.INFO: [80.17] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:54:54.639074+00:00] sql.INFO: [20.08] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:54:56.398028+00:00] sql.INFO: [19.46] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:55:02.260863+00:00] sql.INFO: [82.96] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:55:34.282540+00:00] sql.INFO: [337.43] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:58:02.838545+00:00] sql.INFO: [463.96] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:58:02.876585+00:00] sql.INFO: [16.48] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T00:58:15.892669+00:00] sql.INFO: [567.07] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:58:15.927260+00:00] sql.INFO: [13.6] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T00:59:50.960166+00:00] sql.INFO: [92.83] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T00:59:50.989487+00:00] sql.INFO: [16.21] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:01:35.674990+00:00] sql.INFO: [282.32] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:01:35.702126+00:00] sql.INFO: [14.4] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:01:38.316512+00:00] sql.INFO: [17.11] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:01:38.331078+00:00] sql.INFO: [13.61] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:05:26.201904+00:00] sql.INFO: [70.63] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:05:26.219827+00:00] sql.INFO: [17.02] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:05:27.934598+00:00] sql.INFO: [17.18] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:05:27.952556+00:00] sql.INFO: [16.86] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:05:29.550823+00:00] sql.INFO: [20.1] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:05:29.568272+00:00] sql.INFO: [16.47] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:05:52.878489+00:00] sql.INFO: [17.07] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:05:52.896883+00:00] sql.INFO: [17.43] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:05:57.722604+00:00] sql.INFO: [92.34] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:05:57.749519+00:00] sql.INFO: [15.24] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:06:01.606587+00:00] sql.INFO: [18.03] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:01.623887+00:00] sql.INFO: [16.41] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:03.268038+00:00] sql.INFO: [17.7] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:03.285652+00:00] sql.INFO: [16.69] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:05.273476+00:00] sql.INFO: [18.17] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article_data`.`article_id` = 'article.id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:05.291221+00:00] sql.INFO: [16.62] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:30.324614+00:00] sql.INFO: [108.98] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:30.352987+00:00] sql.INFO: [17.07] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:32.704530+00:00] sql.INFO: [32.04] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:32.722950+00:00] sql.INFO: [16.7] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:34.432684+00:00] sql.INFO: [32.25] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:34.864531+00:00] sql.INFO: [430.75] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:36.486846+00:00] sql.INFO: [16.95] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:36.505325+00:00] sql.INFO: [17.36] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:38.640755+00:00] sql.INFO: [32.88] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:38.657496+00:00] sql.INFO: [15.68] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:40.822721+00:00] sql.INFO: [295.1] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:40.839708+00:00] sql.INFO: [16.14] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:42.500997+00:00] sql.INFO: [17.9] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:42.516586+00:00] sql.INFO: [14.75] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:44.151590+00:00] sql.INFO: [16.75] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:44.794018+00:00] sql.INFO: [641.4] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:46.480670+00:00] sql.INFO: [40.42] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:46.707938+00:00] sql.INFO: [226.23] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:06:48.407052+00:00] sql.INFO: [68.15] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:06:48.423718+00:00] sql.INFO: [15.71] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:08:31.235525+00:00] sql.INFO: [152.52] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:08:31.250756+00:00] sql.INFO: [13.43] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:10:56.619184+00:00] sql.INFO: [310.46] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `col_article`.`id` = 'article_data.article_id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:10:56.636788+00:00] sql.INFO: [16.64] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:11:02.515477+00:00] sql.INFO: [75.42] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') and `article_id` = 'id' order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:11:02.544618+00:00] sql.INFO: [16.95] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:35:59.508984+00:00] sql.INFO: [1112.19] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:35:59.697561+00:00] sql.INFO: [110.92] select * from `col_article_data` where `col_article_data`.`article_id` in (208, 209, 210, 211, 212) [] []
+[2024-11-13T01:35:59.719609+00:00] sql.INFO: [17.37] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:37:24.557781+00:00] sql.INFO: [2546.98] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:24.946261+00:00] sql.INFO: [381.61] select * from `col_article_data` where `col_article_data`.`article_id` in (208, 209, 210, 211, 212) [] []
+[2024-11-13T01:37:24.962908+00:00] sql.INFO: [12.94] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:37:30.451847+00:00] sql.INFO: [615.17] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:30.488844+00:00] sql.INFO: [17.77] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:37:50.455886+00:00] sql.INFO: [35.2] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:50.475627+00:00] sql.INFO: [17.04] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:37:52.658432+00:00] sql.INFO: [307.82] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:52.680229+00:00] sql.INFO: [16.38] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:37:54.250638+00:00] sql.INFO: [33.9] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:54.269682+00:00] sql.INFO: [16.45] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:37:55.846979+00:00] sql.INFO: [34.88] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:55.867121+00:00] sql.INFO: [17.67] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:37:59.855910+00:00] sql.INFO: [18.85] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:37:59.872884+00:00] sql.INFO: [16.05] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:38:18.525047+00:00] sql.INFO: [20.56] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:38:18.546279+00:00] sql.INFO: [20.06] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:38:23.044245+00:00] sql.INFO: [35.77] select `col_article`.*, `col_article_data`.* from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:38:23.063745+00:00] sql.INFO: [16.7] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:38:57.477645+00:00] sql.INFO: [110.87] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:38:57.513430+00:00] sql.INFO: [16.35] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `state` = '0') [] []
+[2024-11-13T01:39:13.030415+00:00] sql.INFO: [43.16] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:13.048486+00:00] sql.INFO: [17.07] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:39:19.842115+00:00] sql.INFO: [309.24] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:19.862515+00:00] sql.INFO: [18.41] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%局%' and `state` = '0') [] []
+[2024-11-13T01:39:21.587119+00:00] sql.INFO: [21.54] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:22.240943+00:00] sql.INFO: [652.65] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%局%' and `state` = '0') [] []
+[2024-11-13T01:39:25.791637+00:00] sql.INFO: [18.2] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%局%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:25.808754+00:00] sql.INFO: [16.07] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%局%') [] []
+[2024-11-13T01:39:27.422952+00:00] sql.INFO: [17.97] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%局%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:27.440966+00:00] sql.INFO: [17.03] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%局%') [] []
+[2024-11-13T01:39:29.097988+00:00] sql.INFO: [20.28] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `title` like '%局%') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:39:29.114549+00:00] sql.INFO: [15.78] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%局%') [] []
+[2024-11-13T01:40:04.652829+00:00] sql.INFO: [25.44] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:40:04.672277+00:00] sql.INFO: [16.76] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-13T01:41:54.798327+00:00] sql.INFO: [67.64] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-13T01:42:46.340344+00:00] sql.INFO: [356.05] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:42:46.376680+00:00] sql.INFO: [15.14] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:44:12.085557+00:00] sql.INFO: [1298.99] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `id` = `col_article`.`id` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:44:12.110944+00:00] sql.INFO: [18.42] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:44:18.290818+00:00] sql.INFO: [325.89] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `col_article`.`id` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:44:18.330362+00:00] sql.INFO: [15.41] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:44:51.829234+00:00] sql.INFO: [66.38] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `col_article`.`id` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:44:51.848326+00:00] sql.INFO: [16.83] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T01:45:00.075048+00:00] sql.INFO: [74.03] select * from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-13T01:45:00.113796+00:00] sql.INFO: [16.77] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `oldtitle` like '%监管局%' and `state` = '0') [] []
+[2024-11-13T02:00:02.964926+00:00] sql.INFO: [117.5] select * from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T02:02:26.054167+00:00] sql.INFO: [67.23] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T02:46:53.459494+00:00] sql.INFO: [71.41] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-13T02:46:58.879576+00:00] sql.INFO: [19.35] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T03:04:36.684416+00:00] sql.INFO: [141.55] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T03:04:40.702927+00:00] sql.INFO: [19.71] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-13T03:09:43.886594+00:00] sql.INFO: [5475.87] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T03:21:01.949070+00:00] sql.INFO: [68.37] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-13T03:23:05.453056+00:00] sql.INFO: [890.43] select * from `col_web` where (`name` = '中华人民共和国公安部') limit 1 [] []
+[2024-11-13T05:05:56.075151+00:00] sql.INFO: [73.54] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:27:53.226570+00:00] sql.INFO: [84.33] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:10.113623+00:00] sql.INFO: [960.56] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:10.896094+00:00] sql.INFO: [707.39] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:23.623342+00:00] sql.INFO: [18.99] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:23.645650+00:00] sql.INFO: [18.67] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:30.413764+00:00] sql.INFO: [1338.34] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:34:30.497798+00:00] sql.INFO: [17.49] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:05.018083+00:00] sql.INFO: [74.98] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:05.095933+00:00] sql.INFO: [18.06] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:13.720854+00:00] sql.INFO: [3184.47] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:13.826484+00:00] sql.INFO: [53.87] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:29.754441+00:00] sql.INFO: [90.68] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:30.096644+00:00] sql.INFO: [291.74] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:55.635295+00:00] sql.INFO: [19.47] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:35:55.659139+00:00] sql.INFO: [19.98] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:36:00.554159+00:00] sql.INFO: [118.48] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:36:00.834475+00:00] sql.INFO: [16.44] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T05:37:35.296995+00:00] sql.INFO: [351.87] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:05:47.177147+00:00] sql.INFO: [276.05] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:07:21.575753+00:00] sql.INFO: [1009.21] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:12:55.461125+00:00] sql.INFO: [1132.85] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:11.830388+00:00] sql.INFO: [20.3] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:11.848317+00:00] sql.INFO: [16.54] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:13:11' where (`id` = '1') [] []
+[2024-11-13T06:13:13.765617+00:00] sql.INFO: [274.18] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:14.002383+00:00] sql.INFO: [233.87] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:13:13' where (`id` = '1') [] []
+[2024-11-13T06:13:15.911995+00:00] sql.INFO: [239.54] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:15.929698+00:00] sql.INFO: [16.29] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:13:15' where (`id` = '1') [] []
+[2024-11-13T06:13:43.980262+00:00] sql.INFO: [19.29] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:44.208766+00:00] sql.INFO: [227.09] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:13:43' where (`id` = '1') [] []
+[2024-11-13T06:13:52.528030+00:00] sql.INFO: [1352.04] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:13:52.975864+00:00] sql.INFO: [225.24] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:13:52' where (`id` = '1') [] []
+[2024-11-13T06:17:58.106969+00:00] sql.INFO: [77.45] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:17:58.363601+00:00] sql.INFO: [25.42] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:17:58' where (`id` = '1') [] []
+[2024-11-13T06:19:56.488641+00:00] sql.INFO: [85.25] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:19:56.507386+00:00] sql.INFO: [17.39] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:19:56' where (`id` = '1') [] []
+[2024-11-13T06:20:03.590269+00:00] sql.INFO: [80.54] select * from `col_article` where `id` = '1' limit 1 [] []
+[2024-11-13T06:20:03.800169+00:00] sql.INFO: [15.35] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 06:20:03' where `id` = '1' [] []
+[2024-11-13T06:20:03.821225+00:00] sql.INFO: [15.67] update `col_article_data` set `content` = '1', `col_article_data`.`updated_at` = '2024-11-13 06:20:03' where `article_id` = '1' [] []
+[2024-11-13T06:33:45.637646+00:00] sql.INFO: [86.24] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:33:57.216492+00:00] sql.INFO: [41.8] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:33:58.730050+00:00] sql.INFO: [20.53] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:00.235504+00:00] sql.INFO: [54.7] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:01.699751+00:00] sql.INFO: [56.85] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:19.396508+00:00] sql.INFO: [17.41] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:26.362569+00:00] sql.INFO: [105.95] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:37.504755+00:00] sql.INFO: [81.06] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:34:59.867528+00:00] sql.INFO: [44.57] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:02.215379+00:00] sql.INFO: [720.31] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:07.679100+00:00] sql.INFO: [79.07] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:07.721259+00:00] sql.INFO: [17.85] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:38.626450+00:00] sql.INFO: [17.75] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:38.647505+00:00] sql.INFO: [17.75] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:40.270797+00:00] sql.INFO: [17.65] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:40.289655+00:00] sql.INFO: [17.16] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:41.720977+00:00] sql.INFO: [18.88] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:35:43.274322+00:00] sql.INFO: [1551.69] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:16.621089+00:00] sql.INFO: [34.91] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:16.638963+00:00] sql.INFO: [16.54] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:18.212600+00:00] sql.INFO: [17.01] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:18.232317+00:00] sql.INFO: [18.25] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:26.511302+00:00] sql.INFO: [3007.11] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:36:26.570648+00:00] sql.INFO: [34.1] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:27.254438+00:00] sql.INFO: [88.69] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:27.297714+00:00] sql.INFO: [16.15] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:40.726167+00:00] sql.INFO: [313.81] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:40.745430+00:00] sql.INFO: [17.71] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:48.538061+00:00] sql.INFO: [75.14] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:37:49.065380+00:00] sql.INFO: [502.02] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:39:11.990623+00:00] sql.INFO: [316.25] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:39:12.034738+00:00] sql.INFO: [18.67] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:39:12.397889+00:00] sql.INFO: [317.02] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-13T06:39:12.416073+00:00] sql.INFO: [16.37] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:49:19.088077+00:00] sql.INFO: [2830.04] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:49:19.621449+00:00] sql.INFO: [504.96] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T06:49:19.778643+00:00] sql.INFO: [94.09] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-13T06:49:19.845481+00:00] sql.INFO: [65.42] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:53:38.365990+00:00] sql.INFO: [72.94] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:54:20.663872+00:00] sql.INFO: [347.61] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:54:29.920747+00:00] sql.INFO: [1118.93] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:54:30.236187+00:00] sql.INFO: [289.04] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:17.803978+00:00] sql.INFO: [2509.3] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:17.884379+00:00] sql.INFO: [53.51] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:20.044319+00:00] sql.INFO: [35.16] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:20.559890+00:00] sql.INFO: [513.86] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:25.060456+00:00] sql.INFO: [41.71] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:25.135691+00:00] sql.INFO: [74.02] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:26.793597+00:00] sql.INFO: [60.4] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:26.811442+00:00] sql.INFO: [16.29] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:29.192551+00:00] sql.INFO: [563.2] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:55:29.315532+00:00] sql.INFO: [121.21] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:15.568587+00:00] sql.INFO: [17.05] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:15.585618+00:00] sql.INFO: [15.96] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:17.381111+00:00] sql.INFO: [17.99] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:17.398012+00:00] sql.INFO: [15.5] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:22.007171+00:00] sql.INFO: [15.02] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:22.024569+00:00] sql.INFO: [16.34] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:23.952898+00:00] sql.INFO: [19.69] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:23.970726+00:00] sql.INFO: [16.15] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:25.719252+00:00] sql.INFO: [16.5] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:25.738559+00:00] sql.INFO: [17.94] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:27.773218+00:00] sql.INFO: [294.03] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:27.807680+00:00] sql.INFO: [32.95] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:29.887276+00:00] sql.INFO: [18.6] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:29.948757+00:00] sql.INFO: [59.79] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:32.381468+00:00] sql.INFO: [285.9] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:32.402004+00:00] sql.INFO: [19.16] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:34.227481+00:00] sql.INFO: [16.89] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:34.244789+00:00] sql.INFO: [15.87] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:36.120937+00:00] sql.INFO: [19.82] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:36.149809+00:00] sql.INFO: [27.36] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:37.515941+00:00] sql.INFO: [16.5] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:37.534278+00:00] sql.INFO: [16.99] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:39.663489+00:00] sql.INFO: [16.98] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:39.681954+00:00] sql.INFO: [17.28] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:41.569438+00:00] sql.INFO: [88.55] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:56:41.611272+00:00] sql.INFO: [40.19] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:07.625553+00:00] sql.INFO: [88.46] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:07.667741+00:00] sql.INFO: [41.01] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:09.536566+00:00] sql.INFO: [40.11] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:09.555990+00:00] sql.INFO: [17.89] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:11.627158+00:00] sql.INFO: [246.55] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:11.644540+00:00] sql.INFO: [16.02] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:52.435537+00:00] sql.INFO: [18.44] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:52.455181+00:00] sql.INFO: [17.37] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:55.042347+00:00] sql.INFO: [16.25] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:58:55.058873+00:00] sql.INFO: [15.27] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:29.158011+00:00] sql.INFO: [32.91] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:29.441850+00:00] sql.INFO: [282.28] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:35.878431+00:00] sql.INFO: [51.19] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:35.895646+00:00] sql.INFO: [15.84] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:37.957312+00:00] sql.INFO: [17.92] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:38.031254+00:00] sql.INFO: [72.54] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:46.815454+00:00] sql.INFO: [86.27] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:46.959328+00:00] sql.INFO: [102.62] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:48.908494+00:00] sql.INFO: [98.28] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:48.954791+00:00] sql.INFO: [37.65] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:50.912769+00:00] sql.INFO: [17.39] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T08:59:50.930176+00:00] sql.INFO: [15.97] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:21.289233+00:00] sql.INFO: [577.92] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:21.354315+00:00] sql.INFO: [63.37] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:49.456429+00:00] sql.INFO: [19.38] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:49.481372+00:00] sql.INFO: [23.47] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:57.736961+00:00] sql.INFO: [1097.13] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:57.800088+00:00] sql.INFO: [37.28] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:01:57.819083+00:00] sql.INFO: [17.76] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:02:56.599113+00:00] sql.INFO: [75.94] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:02:56.647306+00:00] sql.INFO: [19.41] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:16.637289+00:00] sql.INFO: [16.99] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:16.654286+00:00] sql.INFO: [15.88] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:18.542777+00:00] sql.INFO: [23] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:18.566676+00:00] sql.INFO: [22.78] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:24.815314+00:00] sql.INFO: [74.43] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:24.857461+00:00] sql.INFO: [15.2] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:03:24.930042+00:00] sql.INFO: [60.44] select * from `category` where `id` = '1' limit 1 [] []
+[2024-11-13T09:03:24.950556+00:00] sql.INFO: [19.06] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:05:28.979652+00:00] sql.INFO: [534.71] select * from `col_article` [] []
+[2024-11-13T09:05:31.160672+00:00] sql.INFO: [2145.19] select * from `article` [] []
+[2024-11-13T09:09:07.695900+00:00] sql.INFO: [72.3] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:09:07.749157+00:00] sql.INFO: [25.36] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:09:08.504757+00:00] sql.INFO: [741.75] select * from `category` where `id` = '1' limit 1 [] []
+[2024-11-13T09:09:08.524008+00:00] sql.INFO: [18.15] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:09.379903+00:00] sql.INFO: [1597.39] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:09.432085+00:00] sql.INFO: [19.58] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:10.279864+00:00] sql.INFO: [832.74] select * from `category` where `id` = '1' limit 1 [] []
+[2024-11-13T09:10:10.329144+00:00] sql.INFO: [47.49] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:20.707890+00:00] sql.INFO: [557.95] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:20.726610+00:00] sql.INFO: [17.73] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:10:20.745681+00:00] sql.INFO: [16.01] select * from `category` where `id` = '1' limit 1 [] []
+[2024-11-13T09:10:20.784245+00:00] sql.INFO: [37.31] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:11:20.637242+00:00] sql.INFO: [76.12] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:11:20.683825+00:00] sql.INFO: [16.57] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:11:20.789896+00:00] sql.INFO: [91.05] select * from `category` where `id` = '1' limit 1 [] []
+[2024-11-13T09:11:20.809121+00:00] sql.INFO: [17.75] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:13:33.282114+00:00] sql.INFO: [813.19] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:13:33.616607+00:00] sql.INFO: [307.97] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:13:33.967588+00:00] sql.INFO: [335.96] select * from `category` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:13:34.001968+00:00] sql.INFO: [32.27] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:17:47.315190+00:00] sql.INFO: [74.42] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:17:47.360326+00:00] sql.INFO: [17.43] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:17:47.437874+00:00] sql.INFO: [65.86] select `name` from `category` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:18:32.034870+00:00] sql.INFO: [69.04] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:18:32.077670+00:00] sql.INFO: [16.71] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:18:32.145972+00:00] sql.INFO: [58.47] select `name` from `category` where (`id` = '1') limit 1 [] []
+[2024-11-13T09:36:57.237943+00:00] sql.INFO: [298.68] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:36:59.235213+00:00] sql.INFO: [393.34] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:39:57.231768+00:00] sql.INFO: [281.48] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:39:59.915535+00:00] sql.INFO: [313.15] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:48:46.864918+00:00] sql.INFO: [1288.19] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:50:05.570197+00:00] sql.INFO: [67.4] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:51:00.150509+00:00] sql.INFO: [1282.21] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:52:55.628507+00:00] sql.INFO: [294.15] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:53:04.244852+00:00] sql.INFO: [104.8] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:53:19.162294+00:00] sql.INFO: [18.93] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:53:28.493526+00:00] sql.INFO: [76.44] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:54:39.795852+00:00] sql.INFO: [783.03] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:55:01.217829+00:00] sql.INFO: [19.59] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:55:09.989464+00:00] sql.INFO: [1221.33] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:55:35.491306+00:00] sql.INFO: [88.36] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:55:43.493285+00:00] sql.INFO: [921.08] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:56:14.440393+00:00] sql.INFO: [96.99] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:57:18.356150+00:00] sql.INFO: [473.06] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:57:25.885873+00:00] sql.INFO: [286.5] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:58:18.225365+00:00] sql.INFO: [75.13] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T09:59:36.142816+00:00] sql.INFO: [91] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:25.343075+00:00] sql.INFO: [44.64] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:35.630350+00:00] sql.INFO: [2911.77] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:46.218247+00:00] sql.INFO: [702.61] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:48.563909+00:00] sql.INFO: [301.22] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:50.743919+00:00] sql.INFO: [63.1] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:52.906199+00:00] sql.INFO: [283.45] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:54.903925+00:00] sql.INFO: [42.53] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:00:57.036118+00:00] sql.INFO: [17.42] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:01:12.443030+00:00] sql.INFO: [79.85] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:03:33.505800+00:00] sql.INFO: [1087.95] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:03:42.594060+00:00] sql.INFO: [1762.8] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:03:53.060423+00:00] sql.INFO: [46.26] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:04:00.484223+00:00] sql.INFO: [380.47] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:04:39.215985+00:00] sql.INFO: [499.22] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:04:41.906545+00:00] sql.INFO: [507.64] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:04:49.446980+00:00] sql.INFO: [522.27] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:05:32.081697+00:00] sql.INFO: [84.88] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:05:47.129474+00:00] sql.INFO: [17.47] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:06:32.596020+00:00] sql.INFO: [91.3] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:06:32.899428+00:00] sql.INFO: [17.84] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-13 10:06:32' where `id` = '3' [] []
+[2024-11-13T10:06:32.925365+00:00] sql.INFO: [18.4] update `col_article_data` set `content` = '1', `col_article_data`.`updated_at` = '2024-11-13 10:06:32' where `article_id` = '3' [] []
+[2024-11-13T10:07:00.311559+00:00] sql.INFO: [68.76] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:09:24.655318+00:00] sql.INFO: [79.99] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:09:26.885399+00:00] sql.INFO: [17.16] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:09:29.056534+00:00] sql.INFO: [19.17] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:10:06.822407+00:00] sql.INFO: [36.99] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:10:09.061363+00:00] sql.INFO: [44.82] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:10:32.432505+00:00] sql.INFO: [83.03] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:10:38.371358+00:00] sql.INFO: [315.59] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:10:41.978753+00:00] sql.INFO: [99.62] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:11:16.712737+00:00] sql.INFO: [66.01] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-13T10:16:22.744223+00:00] sql.INFO: [1286.44] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-14T01:36:08.693271+00:00] sql.INFO: [107.11] select * from `col_article` where `id` = '1' limit 1 [] []
+[2024-11-14T01:36:09.162758+00:00] sql.INFO: [50.87] update `col_article` set `title` = '111', `level` = '1', `imgurl` = '11', `keyword` = '1', `introduce` = '1', `author` = '1', `hits` = '1', `is_original` = '0', `fromurl` = '1', `copyfrom` = '1', `islink` = '1', `linkurl` = '222', `col_article`.`updated_at` = '2024-11-14 01:36:09' where `id` = '1' [] []
+[2024-11-14T01:36:09.226568+00:00] sql.INFO: [51.15] update `col_article_data` set `content` = '1', `col_article_data`.`updated_at` = '2024-11-14 01:36:09' where `article_id` = '1' [] []
+[2024-11-14T01:36:36.371413+00:00] sql.INFO: [18.65] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-14T01:46:27.027769+00:00] sql.INFO: [65.97] select * from `col_article` where (`id` = '3') limit 1 [] []
+[2024-11-14T01:47:41.381846+00:00] sql.INFO: [751.89] select * from `col_article` where (`id` = '3') limit 1 [] []
+[2024-11-14T01:47:44.170628+00:00] sql.INFO: [127.71] select * from `col_article` where (`id` = '3') limit 1 [] []
+[2024-11-14T01:47:52.965620+00:00] sql.INFO: [133.66] select * from `col_article` where (`id` = '3') limit 1 [] []
+[2024-11-14T01:48:06.694292+00:00] sql.INFO: [112.56] select * from `col_article` where (`id` = '1') limit 1 [] []
+[2024-11-14T01:48:06.949565+00:00] sql.INFO: [199.72] delete from `col_article` where (`id` = '1') [] []
+[2024-11-14T01:49:54.249518+00:00] sql.INFO: [285.31] select * from `col_article` where `id` = '1' limit 1 [] []
+[2024-11-14T02:01:13.574675+00:00] sql.INFO: [81.83] select * from `col_article` where `id` = '1' limit 1 [] []
+[2024-11-14T02:01:13.892211+00:00] sql.INFO: [17.46] delete from `col_article` where `id` = '1' [] []
+[2024-11-14T02:01:13.918469+00:00] sql.INFO: [17.62] delete from `col_article_data` where `article_id` = '1' [] []
+[2024-11-14T02:01:34.424437+00:00] sql.INFO: [47.51] select * from `col_article` where `id` = '3' limit 1 [] []
+[2024-11-14T05:48:42.026165+00:00] sql.INFO: [92.55] select * from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:48:42.278535+00:00] sql.INFO: [224.46] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-14T05:49:10.856796+00:00] sql.INFO: [508.32] select * from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:49:11.093885+00:00] sql.INFO: [236.1] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-14T05:51:42.735192+00:00] sql.INFO: [1724.11] select * from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:51:42.753264+00:00] sql.INFO: [17.23] select count(*) as aggregate from `col_article` where (`rule_id` = '3' and `title` like '%监管局%' and `state` = '0') [] []
+[2024-11-14T05:51:54.611146+00:00] sql.INFO: [417.73] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:51:54.674104+00:00] sql.INFO: [19.4] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T05:53:01.543759+00:00] sql.INFO: [590.12] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:53:01.566370+00:00] sql.INFO: [17.85] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T05:53:10.575750+00:00] sql.INFO: [282.25] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:54:43.232471+00:00] sql.INFO: [81.12] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T05:54:45.451521+00:00] sql.INFO: [2130.34] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T05:54:45.678187+00:00] sql.INFO: [224.58] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T06:18:02.090699+00:00] sql.INFO: [316.95] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:18:02.231518+00:00] sql.INFO: [60.93] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:18:02.248498+00:00] sql.INFO: [15.67] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T06:20:06.502183+00:00] sql.INFO: [79.31] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:20:06.938168+00:00] sql.INFO: [346.73] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:20:32.558723+00:00] sql.INFO: [280.15] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:20:32.726924+00:00] sql.INFO: [84.6] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:23:36.180604+00:00] sql.INFO: [78.59] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:23:36.366379+00:00] sql.INFO: [98.06] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:23:36.384719+00:00] sql.INFO: [17.2] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T06:27:22.045994+00:00] sql.INFO: [82.45] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:27:22.192107+00:00] sql.INFO: [65.08] select * from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:34:14.018992+00:00] sql.INFO: [287.27] select * from `col_article` where (`rule_id` = '3') order by `col_article`.`id` desc limit 5 offset 0 [] []
+[2024-11-14T06:34:14.176672+00:00] sql.INFO: [68.58] select `name` from `category` where `category`.`id` in (1) [] []
+[2024-11-14T06:34:14.192754+00:00] sql.INFO: [15.11] select count(*) as aggregate from `col_article` where (`rule_id` = '3') [] []
+[2024-11-14T06:40:11.528533+00:00] sql.INFO: [101.4] select * from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:40:11.818349+00:00] sql.INFO: [20.07] select * from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:40:57.544919+00:00] sql.INFO: [499.39] select * from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:40:57.839811+00:00] sql.INFO: [20.44] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:40:57.858504+00:00] sql.INFO: [17.58] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:41:28.243855+00:00] sql.INFO: [79.54] select * from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:41:28.606374+00:00] sql.INFO: [15.9] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:41:28.622664+00:00] sql.INFO: [15.54] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:41:38.492273+00:00] sql.INFO: [1085.8] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:41:38.539211+00:00] sql.INFO: [16.47] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:41:38.556010+00:00] sql.INFO: [15.96] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:41:56.486035+00:00] sql.INFO: [18.05] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:41:56.503463+00:00] sql.INFO: [14.09] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:41:56.521213+00:00] sql.INFO: [16.91] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:41:58.636923+00:00] sql.INFO: [16.15] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:41:58.655661+00:00] sql.INFO: [14.96] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:41:58.672067+00:00] sql.INFO: [15.27] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:42:05.340952+00:00] sql.INFO: [79.38] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:42:05.388699+00:00] sql.INFO: [17.42] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:42:05.405752+00:00] sql.INFO: [16.22] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:42:05.424255+00:00] sql.INFO: [17.64] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:43:36.508605+00:00] sql.INFO: [890.06] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:43:36.529472+00:00] sql.INFO: [16.37] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:43:36.546091+00:00] sql.INFO: [15.59] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:43:36.588195+00:00] sql.INFO: [41.12] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:43:44.161289+00:00] sql.INFO: [282.72] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:43:44.209020+00:00] sql.INFO: [16.31] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:43:44.225678+00:00] sql.INFO: [15.82] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:43:44.244310+00:00] sql.INFO: [17.67] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:44:15.342800+00:00] sql.INFO: [65.85] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:44:15.388714+00:00] sql.INFO: [17.01] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:44:15.407116+00:00] sql.INFO: [17.63] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:44:15.426009+00:00] sql.INFO: [17.96] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:44:38.540524+00:00] sql.INFO: [17.17] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:44:38.562512+00:00] sql.INFO: [18.36] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:44:38.582484+00:00] sql.INFO: [17.39] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:44:38.604084+00:00] sql.INFO: [20.6] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:44:40.667740+00:00] sql.INFO: [16.5] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:44:41.315933+00:00] sql.INFO: [644.98] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:44:41.332035+00:00] sql.INFO: [15.02] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:44:41.352756+00:00] sql.INFO: [19.65] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:44:48.086446+00:00] sql.INFO: [72.63] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:44:48.131964+00:00] sql.INFO: [16.5] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:44:48.149776+00:00] sql.INFO: [16.78] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:44:48.965601+00:00] sql.INFO: [815.02] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:45:01.823592+00:00] sql.INFO: [239.77] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:45:01.843592+00:00] sql.INFO: [16.94] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:45:01.861648+00:00] sql.INFO: [17.15] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:45:01.918314+00:00] sql.INFO: [54.88] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:45:11.332552+00:00] sql.INFO: [70.39] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:45:12.207053+00:00] sql.INFO: [850.29] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:45:12.223759+00:00] sql.INFO: [15.76] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:45:12.242982+00:00] sql.INFO: [18.29] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:47:17.015344+00:00] sql.INFO: [62.5] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:47:17.058607+00:00] sql.INFO: [15.23] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:47:17.073351+00:00] sql.INFO: [13.56] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:47:17.093620+00:00] sql.INFO: [18.82] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:47:34.317625+00:00] sql.INFO: [19.28] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:47:34.553255+00:00] sql.INFO: [231.98] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:47:35.198981+00:00] sql.INFO: [644.66] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:47:35.433458+00:00] sql.INFO: [233.54] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:47:36.895926+00:00] sql.INFO: [63.27] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:47:37.026390+00:00] sql.INFO: [90.96] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:47:37.053643+00:00] sql.INFO: [24.04] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:47:37.084927+00:00] sql.INFO: [30.26] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:47:43.678058+00:00] sql.INFO: [72.1] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:47:43.727379+00:00] sql.INFO: [16.51] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:47:43.955046+00:00] sql.INFO: [226.53] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:47:44.003625+00:00] sql.INFO: [46.96] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:48:03.898246+00:00] sql.INFO: [17.41] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:48:03.919813+00:00] sql.INFO: [18.67] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:48:03.937250+00:00] sql.INFO: [16.39] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:48:03.972994+00:00] sql.INFO: [34.43] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:48:20.488020+00:00] sql.INFO: [65.87] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:48:20.534093+00:00] sql.INFO: [15.86] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:48:20.759340+00:00] sql.INFO: [223.8] select `catid` from `col_article` where 0 = 1 limit 1 [] []
+[2024-11-14T06:48:21.149952+00:00] sql.INFO: [389.35] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:49:08.890214+00:00] sql.INFO: [73.15] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:49:08.936617+00:00] sql.INFO: [19.78] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:49:09.267351+00:00] sql.INFO: [317.76] select * from `category` [] []
+[2024-11-14T06:49:18.693195+00:00] sql.INFO: [21.88] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:49:18.715862+00:00] sql.INFO: [19.63] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:49:18.735932+00:00] sql.INFO: [19.24] select * from `category` [] []
+[2024-11-14T06:49:26.967486+00:00] sql.INFO: [1077.92] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:49:27.220469+00:00] sql.INFO: [223.45] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:49:27.775047+00:00] sql.INFO: [543.11] select * from `category` [] []
+[2024-11-14T06:50:07.890219+00:00] sql.INFO: [226.83] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:50:07.910772+00:00] sql.INFO: [17.33] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:50:07.932346+00:00] sql.INFO: [20.43] select * from `category` [] []
+[2024-11-14T06:50:09.969567+00:00] sql.INFO: [18.7] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:50:10.007817+00:00] sql.INFO: [34.88] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:50:10.307218+00:00] sql.INFO: [297.27] select * from `category` [] []
+[2024-11-14T06:50:17.356824+00:00] sql.INFO: [279.59] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:50:17.401095+00:00] sql.INFO: [16] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:50:17.690029+00:00] sql.INFO: [278.91] select `id`, `name` from `category` [] []
+[2024-11-14T06:51:07.078057+00:00] sql.INFO: [16.85] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:51:07.099082+00:00] sql.INFO: [16.9] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:51:07.120112+00:00] sql.INFO: [19.95] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:51:16.171603+00:00] sql.INFO: [17.21] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:51:16.192780+00:00] sql.INFO: [17.8] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:51:16.212113+00:00] sql.INFO: [18.52] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:51:18.503086+00:00] sql.INFO: [17.76] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:51:18.525204+00:00] sql.INFO: [16.75] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:51:18.543937+00:00] sql.INFO: [17.91] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:51:25.683066+00:00] sql.INFO: [76.58] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:51:25.727154+00:00] sql.INFO: [16.68] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:51:26.246365+00:00] sql.INFO: [517.86] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:00.171156+00:00] sql.INFO: [17.72] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:00.407134+00:00] sql.INFO: [231.78] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:00.721580+00:00] sql.INFO: [313.46] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:04.459650+00:00] sql.INFO: [16.74] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:04.479959+00:00] sql.INFO: [17.36] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:04.528169+00:00] sql.INFO: [46.96] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:06.434444+00:00] sql.INFO: [15.83] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:06.455231+00:00] sql.INFO: [17.04] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:06.473521+00:00] sql.INFO: [17.47] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:08.257218+00:00] sql.INFO: [20.43] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:08.489397+00:00] sql.INFO: [229] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:08.724753+00:00] sql.INFO: [234.3] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:10.540472+00:00] sql.INFO: [17.23] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:10.562201+00:00] sql.INFO: [18.17] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:10.581201+00:00] sql.INFO: [18.06] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:12.389635+00:00] sql.INFO: [16.09] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:12.410587+00:00] sql.INFO: [17.81] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:12.431015+00:00] sql.INFO: [18.87] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:14.548034+00:00] sql.INFO: [16.24] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:14.569812+00:00] sql.INFO: [18.65] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:14.871594+00:00] sql.INFO: [300.89] select * from `col_article` where `id` in ('206', '207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:16.619040+00:00] sql.INFO: [17.71] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:16.640505+00:00] sql.INFO: [17.51] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:16.660480+00:00] sql.INFO: [18.73] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T06:52:16.679828+00:00] sql.INFO: [18.19] select * from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:18.859758+00:00] sql.INFO: [226.55] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:18.879096+00:00] sql.INFO: [16.4] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:18.896910+00:00] sql.INFO: [16.6] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T06:52:18.917186+00:00] sql.INFO: [18.98] select * from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:26.389834+00:00] sql.INFO: [640.62] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:26.409484+00:00] sql.INFO: [16.73] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:26.426931+00:00] sql.INFO: [16.15] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T06:52:26.499047+00:00] sql.INFO: [70.64] select * from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T06:52:35.013845+00:00] sql.INFO: [1082.17] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T06:52:35.062101+00:00] sql.INFO: [15.75] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T06:52:35.081374+00:00] sql.INFO: [18.11] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T06:52:35.100847+00:00] sql.INFO: [18.18] select * from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:12:42.302099+00:00] sql.INFO: [276.82] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:12:42.350492+00:00] sql.INFO: [15.73] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:12:42.367264+00:00] sql.INFO: [15.55] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:14:39.471431+00:00] sql.INFO: [71.64] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:14:39.522733+00:00] sql.INFO: [16.35] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:14:39.540680+00:00] sql.INFO: [16.6] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:15:11.021959+00:00] sql.INFO: [14.5] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:15:11.042200+00:00] sql.INFO: [16.74] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:15:11.058801+00:00] sql.INFO: [15.15] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:15:13.388034+00:00] sql.INFO: [16.67] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:15:13.411320+00:00] sql.INFO: [19.89] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:15:13.430443+00:00] sql.INFO: [17.42] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:15:15.922161+00:00] sql.INFO: [16.48] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:15:15.941773+00:00] sql.INFO: [16.45] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:15:15.960113+00:00] sql.INFO: [17.13] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:15:19.137668+00:00] sql.INFO: [16.23] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:15:19.156173+00:00] sql.INFO: [15.58] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:15:19.381835+00:00] sql.INFO: [224.39] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:15:21.468405+00:00] sql.INFO: [19.6] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:15:21.487001+00:00] sql.INFO: [15.47] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:15:21.713916+00:00] sql.INFO: [225.58] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:06.205206+00:00] sql.INFO: [489.93] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:06.460221+00:00] sql.INFO: [225.3] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:06.476945+00:00] sql.INFO: [15.25] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:06.960230+00:00] sql.INFO: [226.71] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:06' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:28.212688+00:00] sql.INFO: [17.01] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:28.233160+00:00] sql.INFO: [17.19] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:28.457862+00:00] sql.INFO: [223.5] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:28.688081+00:00] sql.INFO: [228.6] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:28' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:30.737422+00:00] sql.INFO: [15.52] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:31.801296+00:00] sql.INFO: [1061.08] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:32.031582+00:00] sql.INFO: [228.83] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:32.050236+00:00] sql.INFO: [17.06] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:32' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:34.262259+00:00] sql.INFO: [78.72] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:34.352380+00:00] sql.INFO: [63.91] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:34.371764+00:00] sql.INFO: [17.83] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:34.407923+00:00] sql.INFO: [34.6] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:34' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:36.416888+00:00] sql.INFO: [17.87] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:36.440908+00:00] sql.INFO: [20.3] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:36.457673+00:00] sql.INFO: [15.41] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:36.475681+00:00] sql.INFO: [16.59] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:36' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:38.349301+00:00] sql.INFO: [15.91] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:38.367921+00:00] sql.INFO: [15.41] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:38.384839+00:00] sql.INFO: [15.69] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:38.401801+00:00] sql.INFO: [15.57] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:38' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:40.290524+00:00] sql.INFO: [15.27] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:40.308904+00:00] sql.INFO: [15.52] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:40.325409+00:00] sql.INFO: [15.18] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:40.344722+00:00] sql.INFO: [17.79] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:40' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:16:42.260686+00:00] sql.INFO: [34.4] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:16:42.291451+00:00] sql.INFO: [27.09] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:16:42.317460+00:00] sql.INFO: [23.66] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:16:42.343130+00:00] sql.INFO: [24.24] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:16:42' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:17:36.130603+00:00] sql.INFO: [75.16] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:17:36.175197+00:00] sql.INFO: [16.37] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:17:36.192640+00:00] sql.INFO: [16.25] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:17:36.472665+00:00] sql.INFO: [17.18] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:17:36' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:17:39.256036+00:00] sql.INFO: [225.47] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:17:39.276784+00:00] sql.INFO: [17.56] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:17:39.293433+00:00] sql.INFO: [15.4] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:17:39.311483+00:00] sql.INFO: [16.53] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:17:39' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:17:42.357689+00:00] sql.INFO: [17.95] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:17:42.380414+00:00] sql.INFO: [19.15] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:17:42.606743+00:00] sql.INFO: [224.97] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:17:42.625357+00:00] sql.INFO: [16.37] update `col_article` set `catid` = '1', `col_article`.`updated_at` = '2024-11-14 07:17:42' where `id` in ('207', '208', '209', '210', '211', '212') [] []
+[2024-11-14T07:29:34.748509+00:00] sql.INFO: [1311.86] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:29:34.796319+00:00] sql.INFO: [14.83] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:29:34.813070+00:00] sql.INFO: [15.31] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:29:34.940505+00:00] sql.INFO: [126.06] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:31:03.034666+00:00] sql.INFO: [1132.16] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:31:03.294003+00:00] sql.INFO: [225.97] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:31:03.312653+00:00] sql.INFO: [16.68] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:31:03.331943+00:00] sql.INFO: [17.49] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:31:12.281666+00:00] sql.INFO: [72.89] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:31:12.330601+00:00] sql.INFO: [16.87] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:31:12.347149+00:00] sql.INFO: [15.21] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:31:12.366725+00:00] sql.INFO: [18.35] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:31:41.839589+00:00] sql.INFO: [18.84] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:31:42.066600+00:00] sql.INFO: [224.23] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:31:42.291848+00:00] sql.INFO: [224.19] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:31:42.309044+00:00] sql.INFO: [15.49] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:31:44.420575+00:00] sql.INFO: [18.45] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:31:44.443966+00:00] sql.INFO: [18.52] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:31:44.670393+00:00] sql.INFO: [224.91] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:31:44.692031+00:00] sql.INFO: [17.67] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:31:53.588757+00:00] sql.INFO: [1538.17] select `id` from `col_article` where `rule_id` = '3' and `state` = '0' [] []
+[2024-11-14T07:31:53.632762+00:00] sql.INFO: [16.78] select `id` from `col_article` where `rule_id` = '3' and `state` = '1' [] []
+[2024-11-14T07:31:53.651035+00:00] sql.INFO: [16.97] select `catid` from `col_article` where `id` in ('206') limit 1 [] []
+[2024-11-14T07:31:53.877000+00:00] sql.INFO: [224.77] select count(*) as aggregate from `col_article` where `id` in ('207', '208', '209', '210', '211', '212') and `catid` is null [] []
+[2024-11-14T07:44:25.350511+00:00] sql.INFO: [68.54] insert into `col_article` (`title`) values ('1111') [] []
+[2024-11-14T07:59:16.631357+00:00] sql.INFO: [1546.06] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:17.140850+00:00] sql.INFO: [238.62] select * from `col_rule` where `name` = '中华人民共和国公安部-时政要闻' [] []
+[2024-11-14T07:59:23.876592+00:00] sql.INFO: [14.5] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:23.893677+00:00] sql.INFO: [15.96] select * from `col_rule` where `name` = '中华人民共和国公安部-111' [] []
+[2024-11-14T07:59:24.223327+00:00] sql.INFO: [328.78] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-111', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 15:59:23') [] []
+[2024-11-14T07:59:31.506812+00:00] sql.INFO: [67.97] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:31.550333+00:00] sql.INFO: [28.26] select * from `col_rule` where `name` = '中华人民共和国公安部-22222' [] []
+[2024-11-14T07:59:31.659937+00:00] sql.INFO: [108.07] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-22222', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 15:59:31') [] []
+[2024-11-14T07:59:38.365869+00:00] sql.INFO: [17.84] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:38.384408+00:00] sql.INFO: [16.98] select * from `col_rule` where `name` = '中华人民共和国公安部-0000' [] []
+[2024-11-14T07:59:38.727007+00:00] sql.INFO: [341.76] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-0000', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 15:59:38') [] []
+[2024-11-14T07:59:48.614789+00:00] sql.INFO: [229.36] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:48.633377+00:00] sql.INFO: [17.26] select * from `col_rule` where `name` = '中华人民共和国公安部-888' [] []
+[2024-11-14T07:59:48.712992+00:00] sql.INFO: [78.62] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-888', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 15:59:48') [] []
+[2024-11-14T07:59:53.922613+00:00] sql.INFO: [14.83] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T07:59:53.939668+00:00] sql.INFO: [15.79] select * from `col_rule` where `name` = '中华人民共和国公安部-85555' [] []
+[2024-11-14T07:59:53.998261+00:00] sql.INFO: [57.64] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-85555', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 15:59:53') [] []
+[2024-11-14T08:00:02.976025+00:00] sql.INFO: [68.19] select * from `col_web` where `id` = '4' [] []
+[2024-11-14T08:00:02.998312+00:00] sql.INFO: [20.52] select * from `col_rule` where `name` = '中华人民共和国公安部-9999999' [] []
+[2024-11-14T08:00:03.208690+00:00] sql.INFO: [209.61] insert into `col_rule` (`name`, `first_url`, `second_url`, `start`, `end`, `tit_start`, `tit_end`, `con_start`, `con_end`, `source_start`, `source_end`, `writer_start`, `writer_end`, `writer`, `web_id`, `created_at`) values ('中华人民共和国公安部-9999999', 'https://www.mps.gov.cn/n7598382/index.html', 'https://www.mps.gov.cn/n7598382/index.html', '<html lang="en">', '    </body>    </html>', ' <h1 id="ti">', '</h1>', ' <div class="pages_content" id="UCAP-CONTENT">', ' <div style="display:none">                                    </div>            </div>', '<span class="font">', '</span>', '', '', '佚名', '4', '2024-11-14 16:00:02') [] []
+[2024-11-15T03:23:40.363318+00:00] sql.INFO: [391.34] select * from `col_article` where (`rule_id` = '1' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:23:54.218076+00:00] sql.INFO: [301.54] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:23:56.117292+00:00] sql.INFO: [42.19] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:23:57.367536+00:00] sql.INFO: [17.39] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:23:58.650836+00:00] sql.INFO: [18.25] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:00.061066+00:00] sql.INFO: [35.62] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:01.634101+00:00] sql.INFO: [300.37] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:03.681194+00:00] sql.INFO: [831.94] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:05.064327+00:00] sql.INFO: [16.57] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:06.440170+00:00] sql.INFO: [35.84] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:24:07.874464+00:00] sql.INFO: [33.31] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:25:50.988666+00:00] sql.INFO: [750.77] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T03:29:39.544456+00:00] sql.INFO: [90.22] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T04:59:58.642819+00:00] sql.INFO: [273.23] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:01:51.849257+00:00] sql.INFO: [1263.34] select `col_article`.*, `col_article_data`.`content` from `col_article` left join `col_article_data` on `article_id` = `id` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:28.615323+00:00] sql.INFO: [1307.11] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:28.670954+00:00] sql.INFO: [31.54] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:31.797500+00:00] sql.INFO: [18.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:31.865866+00:00] sql.INFO: [65.35] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:59.166462+00:00] sql.INFO: [358.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:09:59.426980+00:00] sql.INFO: [232.16] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:10:21.378906+00:00] sql.INFO: [15.92] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:10:21.400495+00:00] sql.INFO: [19.5] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:10:31.970739+00:00] sql.INFO: [272.77] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:10:32.030807+00:00] sql.INFO: [31.64] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:10:32.902266+00:00] sql.INFO: [860.38] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') [] []
+[2024-11-15T05:12:40.138616+00:00] sql.INFO: [502.48] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:12:40.256535+00:00] sql.INFO: [66.21] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:12:44.951743+00:00] sql.INFO: [4684.43] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T05:15:33.212273+00:00] sql.INFO: [684.48] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:15:33.276378+00:00] sql.INFO: [41.19] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:15:36.142845+00:00] sql.INFO: [2856.31] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T05:16:12.405998+00:00] sql.INFO: [856.14] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:16:12.425675+00:00] sql.INFO: [17.35] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:16:12.877817+00:00] sql.INFO: [449.45] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T05:16:19.127527+00:00] sql.INFO: [709.75] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:16:20.245864+00:00] sql.INFO: [1091.36] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:16:24.984751+00:00] sql.INFO: [4726.9] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T05:42:37.338903+00:00] sql.INFO: [1652.75] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:42:37.805140+00:00] sql.INFO: [441.72] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:42:46.064115+00:00] sql.INFO: [8237.19] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T05:50:16.977726+00:00] sql.INFO: [70.63] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T05:50:17.303690+00:00] sql.INFO: [303.05] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T05:50:18.371522+00:00] sql.INFO: [1059.49] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:26:01.453736+00:00] sql.INFO: [67.1] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:26:01.576530+00:00] sql.INFO: [101.98] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:26:01.666418+00:00] sql.INFO: [78.7] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:26:58.925624+00:00] sql.INFO: [18.78] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:26:58.963614+00:00] sql.INFO: [25.42] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:26:59.033564+00:00] sql.INFO: [67.41] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:27:00.675630+00:00] sql.INFO: [16.11] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:27:00.698430+00:00] sql.INFO: [19.96] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:27:00.753466+00:00] sql.INFO: [52.28] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:27:07.132704+00:00] sql.INFO: [278.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:27:07.190097+00:00] sql.INFO: [36.74] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:27:07.270900+00:00] sql.INFO: [69.37] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:27:08.986657+00:00] sql.INFO: [53.96] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:27:09.037521+00:00] sql.INFO: [47.41] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:27:09.098612+00:00] sql.INFO: [58.62] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:27:10.611111+00:00] sql.INFO: [19.15] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:27:10.636527+00:00] sql.INFO: [23.03] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:27:11.030817+00:00] sql.INFO: [391.6] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:38:24.343756+00:00] sql.INFO: [2354.37] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:38:24.739366+00:00] sql.INFO: [393.09] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:38:26.344914+00:00] sql.INFO: [1599.09] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:48:16.871884+00:00] sql.INFO: [186.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:48:16.963891+00:00] sql.INFO: [72.05] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:48:17.038193+00:00] sql.INFO: [53.86] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:23.160021+00:00] sql.INFO: [1072.45] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:23.201380+00:00] sql.INFO: [18.64] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:23.254916+00:00] sql.INFO: [43.35] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:26.001444+00:00] sql.INFO: [16.13] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:26.023746+00:00] sql.INFO: [19.39] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:26.068831+00:00] sql.INFO: [42.39] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:46.453240+00:00] sql.INFO: [16.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:46.473789+00:00] sql.INFO: [18.04] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:48.009356+00:00] sql.INFO: [1532.96] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:49.792360+00:00] sql.INFO: [17.57] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:49.817221+00:00] sql.INFO: [21.95] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:49.887692+00:00] sql.INFO: [68.34] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:51.799672+00:00] sql.INFO: [16.13] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:51.820044+00:00] sql.INFO: [17.39] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:51.874488+00:00] sql.INFO: [51.51] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:52:53.455055+00:00] sql.INFO: [17.17] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:52:53.480961+00:00] sql.INFO: [22.86] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:52:53.531212+00:00] sql.INFO: [46.93] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:54:26.192646+00:00] sql.INFO: [72.13] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:54:26.242097+00:00] sql.INFO: [22.13] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T06:54:26.300764+00:00] sql.INFO: [48.85] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') order by `article_id` asc [] []
+[2024-11-15T06:54:32.166882+00:00] sql.INFO: [68.95] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:54:32.208201+00:00] sql.INFO: [19.71] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T06:54:32.260551+00:00] sql.INFO: [43.77] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') [] []
+[2024-11-15T07:01:04.591887+00:00] sql.INFO: [695.19] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:01:04.656529+00:00] sql.INFO: [39.76] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:09:55.132080+00:00] sql.INFO: [121.88] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:09:55.176210+00:00] sql.INFO: [19.42] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:31.986857+00:00] sql.INFO: [73.98] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:32.028778+00:00] sql.INFO: [20.18] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:54.118673+00:00] sql.INFO: [17] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:54.143508+00:00] sql.INFO: [22.2] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:56.023154+00:00] sql.INFO: [223.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:13:56.045956+00:00] sql.INFO: [19.37] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:02.042236+00:00] sql.INFO: [71.8] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:02.089917+00:00] sql.INFO: [26.94] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:49.855121+00:00] sql.INFO: [16.98] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:49.878105+00:00] sql.INFO: [20.02] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:51.535300+00:00] sql.INFO: [18.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:14:51.558437+00:00] sql.INFO: [20.5] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:51:35.136579+00:00] sql.INFO: [1317.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:51:35.213685+00:00] sql.INFO: [52.78] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:54:42.104034+00:00] sql.INFO: [354.61] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:54:42.125740+00:00] sql.INFO: [18.95] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:54:52.891107+00:00] sql.INFO: [1150.07] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:54:52.949205+00:00] sql.INFO: [22.39] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null [] []
+[2024-11-15T07:54:53.003741+00:00] sql.INFO: [43.42] select * from `col_article_data` where `article_id` in ('1265', '1262', '1263', '1264', '1261') [] []
+[2024-11-15T08:02:55.620548+00:00] sql.INFO: [67.99] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:03:12.678708+00:00] sql.INFO: [69.69] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:03:18.208173+00:00] sql.INFO: [73] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:08:13.479323+00:00] sql.INFO: [67.95] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:08:19.363613+00:00] sql.INFO: [162.34] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:08:33.279675+00:00] sql.INFO: [18.12] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:08:39.306801+00:00] sql.INFO: [77.27] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:08:40.968855+00:00] sql.INFO: [17.31] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:09:52.260432+00:00] sql.INFO: [59.11] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:09:59.272422+00:00] sql.INFO: [1138.08] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:08.779151+00:00] sql.INFO: [73.19] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:10.329530+00:00] sql.INFO: [14.96] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:11.769244+00:00] sql.INFO: [16.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:33.429747+00:00] sql.INFO: [17.8] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:35.682855+00:00] sql.INFO: [16.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:37.316936+00:00] sql.INFO: [19.53] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:11:39.726760+00:00] sql.INFO: [20.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:12:06.607345+00:00] sql.INFO: [64.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:12:06.675931+00:00] sql.INFO: [41.41] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:12:28.803866+00:00] sql.INFO: [292.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:12:39.372271+00:00] sql.INFO: [924.68] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:18.137615+00:00] sql.INFO: [482.28] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:18.202044+00:00] sql.INFO: [37.51] select `title`, `catid`, `level`, `introduce`, `keyword`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:19.035125+00:00] sql.INFO: [822.83] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:13:34.982041+00:00] sql.INFO: [718.16] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:35.024997+00:00] sql.INFO: [19.04] select `title`, `catid`, `level`, `introduce`, `keyword`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:35.453055+00:00] sql.INFO: [418] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:13:42.329557+00:00] sql.INFO: [932.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:43.296914+00:00] sql.INFO: [944.79] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:13:46.343862+00:00] sql.INFO: [3035.81] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:14:00.536770+00:00] sql.INFO: [17.32] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:14:00.559009+00:00] sql.INFO: [19.58] select * from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:14:00.950087+00:00] sql.INFO: [388.59] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:14:09.053288+00:00] sql.INFO: [272.75] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:14:09.115209+00:00] sql.INFO: [39.75] select `title`, `catid`, `level`, `introduce`, `keyword`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:14:16.602250+00:00] sql.INFO: [7476.91] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:17:38.096944+00:00] sql.INFO: [61.39] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:17:38.163303+00:00] sql.INFO: [42.44] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:17:38.865133+00:00] sql.INFO: [689.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:59:31.195963+00:00] sql.INFO: [72.61] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:59:31.239839+00:00] sql.INFO: [19.27] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:59:31.294908+00:00] sql.INFO: [42.61] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T08:59:33.290269+00:00] sql.INFO: [16.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:59:33.310463+00:00] sql.INFO: [18.26] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-15T08:59:33.358248+00:00] sql.INFO: [44.98] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-15T09:25:41.502241+00:00] sql.INFO: [86.91] select * from `col_web` where `id` = '4' [] []
+[2024-11-15T09:25:41.975892+00:00] sql.INFO: [203.3] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-15T09:25:41.995536+00:00] sql.INFO: [15.73] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-15T09:28:10.863349+00:00] sql.INFO: [293.43] select * from `col_web` where `id` = '4' [] []
+[2024-11-15T09:28:11.229510+00:00] sql.INFO: [88.93] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-15T09:28:11.248628+00:00] sql.INFO: [15.31] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-15T09:29:33.123325+00:00] sql.INFO: [1072.3] select * from `col_web` where `id` = '4' [] []
+[2024-11-15T09:29:33.187448+00:00] sql.INFO: [61.07] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-15T09:29:33.217481+00:00] sql.INFO: [22.58] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-15T09:31:31.074077+00:00] sql.INFO: [91.05] select * from `col_web` where `id` = '4' [] []
+[2024-11-15T09:31:32.774889+00:00] sql.INFO: [1699.44] select `col_rule`.*, (select count(*) from `col_article` where `col_rule`.`id` = `col_article`.`rule_id`) as `arts_count` from `col_rule` where `web_id` = '4' order by `created_at` desc limit 56 offset 0 [] []
+[2024-11-15T09:31:32.798845+00:00] sql.INFO: [18.25] select count(*) as aggregate from `col_rule` where `web_id` = '4' [] []
+[2024-11-15T09:32:20.597287+00:00] sql.INFO: [16.71] select * from `col_rule` where `id` = '3' limit 1 [] []
+[2024-11-15T09:33:09.829260+00:00] sql.INFO: [292.08] select * from `col_rule` where `id` = '3' limit 1 [] []
+[2024-11-15T09:33:37.085713+00:00] sql.INFO: [176.43] select * from `col_rule` where `id` = '3' limit 1 [] []
+[2024-11-15T09:33:56.244960+00:00] sql.INFO: [916.07] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:28.627657+00:00] sql.INFO: [71.25] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:28.668550+00:00] sql.INFO: [17.41] select * from `col_rule` where `name` = '中华人民共和国公安部-9999999' limit 1 [] []
+[2024-11-15T09:47:37.550881+00:00] sql.INFO: [16.22] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:37.569725+00:00] sql.INFO: [17.17] select * from `col_rule` where `name` = '中华人民共和国公安部-999' limit 1 [] []
+[2024-11-15T09:47:37.956023+00:00] sql.INFO: [150.31] update `col_rule` set `name` = '中华人民共和国公安部-999', `first_url` = 'https://www.mps.gov.cn/n7598382/index.html', `second_start` = 'https://www.mps.gov.cn/n759838', `second_num` = '2', `second_end` = '/index.html', `start` = '.list_2 ul', `title` = '#titile', `content` = ' .pages_content', `source` = '.font', `writer_class` = '.writer', `writer` = '佚名', `id` = '4', `col_rule`.`updated_at` = '2024-11-15 09:47:37' where `id` = '4' [] []
+[2024-11-15T09:47:44.714905+00:00] sql.INFO: [18.48] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:44.734078+00:00] sql.INFO: [17.8] select * from `col_rule` where `name` = '中华人民共和国公安部-999' limit 1 [] []
+[2024-11-15T09:47:53.556962+00:00] sql.INFO: [17.52] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:53.575533+00:00] sql.INFO: [17.3] select * from `col_rule` where `name` = '中华人民共和国公安部-9999' limit 1 [] []
+[2024-11-15T09:47:53.709988+00:00] sql.INFO: [133.54] update `col_rule` set `name` = '中华人民共和国公安部-9999', `first_url` = 'https://www.mps.gov.cn/n7598382/index.html', `second_start` = 'https://www.mps.gov.cn/n759838', `second_num` = '2', `second_end` = '/index.html', `start` = '.list_2 ul', `title` = '#titile', `content` = ' .pages_content', `source` = '.font', `writer_class` = '.writer', `writer` = '佚名', `id` = '4', `col_rule`.`updated_at` = '2024-11-15 09:47:53' where `id` = '4' [] []
+[2024-11-15T09:47:56.970223+00:00] sql.INFO: [16.98] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:47:56.988937+00:00] sql.INFO: [17.14] select * from `col_rule` where `name` = '中华人民共和国公安部-9999' limit 1 [] []
+[2024-11-15T09:48:11.825981+00:00] sql.INFO: [16.2] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:48:11.843504+00:00] sql.INFO: [16.55] select * from `col_rule` where `name` = '中华人民共和国公安部-9999' limit 1 [] []
+[2024-11-15T09:48:13.754813+00:00] sql.INFO: [17.12] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:48:13.773162+00:00] sql.INFO: [17.01] select * from `col_rule` where `name` = '中华人民共和国公安部-9999' limit 1 [] []
+[2024-11-15T09:48:22.148556+00:00] sql.INFO: [154.07] select * from `col_rule` where `id` = '4' limit 1 [] []
+[2024-11-15T09:48:22.373879+00:00] sql.INFO: [206.52] select * from `col_rule` where `name` = '中华人民共和国公安部-999' limit 1 [] []
+[2024-11-15T09:48:22.674103+00:00] sql.INFO: [67.99] update `col_rule` set `name` = '中华人民共和国公安部-999', `first_url` = 'https://www.mps.gov.cn/n7598382/index.html', `second_start` = 'https://www.mps.gov.cn/n759838', `second_num` = '2', `second_end` = '/index.html', `start` = '.list_2 ul', `title` = '#titile', `content` = ' .pages_content', `source` = '.font', `writer_class` = '.writer', `writer` = '佚名', `id` = '4', `col_rule`.`updated_at` = '2024-11-15 09:48:22' where `id` = '4' [] []
+[2024-11-18T00:49:29.401064+00:00] sql.INFO: [612.7] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:49:29.444319+00:00] sql.INFO: [18.02] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:49:30.363872+00:00] sql.INFO: [912.19] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:28.591466+00:00] sql.INFO: [191.59] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:28.632023+00:00] sql.INFO: [37.72] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:28.741357+00:00] sql.INFO: [103.89] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:36.483793+00:00] sql.INFO: [143.64] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:36.538703+00:00] sql.INFO: [31.04] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:36.642974+00:00] sql.INFO: [94.61] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:38.243572+00:00] sql.INFO: [35.27] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:38.265084+00:00] sql.INFO: [18.37] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:38.302922+00:00] sql.INFO: [33.38] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:39.687225+00:00] sql.INFO: [15.71] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:39.710301+00:00] sql.INFO: [20.55] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:39.747746+00:00] sql.INFO: [35.15] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:41.129695+00:00] sql.INFO: [18.42] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:41.158384+00:00] sql.INFO: [25.32] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:41.202223+00:00] sql.INFO: [40.87] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:42.726498+00:00] sql.INFO: [19.15] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:42.746628+00:00] sql.INFO: [17.94] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:42.785212+00:00] sql.INFO: [35.89] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:44.175892+00:00] sql.INFO: [16.26] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:44.198836+00:00] sql.INFO: [20.06] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:44.237047+00:00] sql.INFO: [34.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:45.684779+00:00] sql.INFO: [14.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:45.705779+00:00] sql.INFO: [17.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:45.740969+00:00] sql.INFO: [31.9] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:51:47.172870+00:00] sql.INFO: [17.73] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:47.195096+00:00] sql.INFO: [19.83] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:51:47.231711+00:00] sql.INFO: [33.58] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:52:22.144480+00:00] sql.INFO: [18.12] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:52:22.184128+00:00] sql.INFO: [36.93] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:52:25.807593+00:00] sql.INFO: [3620.99] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:52:30.998134+00:00] sql.INFO: [707.21] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:52:31.068242+00:00] sql.INFO: [48.7] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:52:32.158541+00:00] sql.INFO: [1081.4] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:53:07.160914+00:00] sql.INFO: [1425.45] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:53:07.208624+00:00] sql.INFO: [21.95] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:53:14.410914+00:00] sql.INFO: [7191.07] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:53:55.098424+00:00] sql.INFO: [19.96] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:53:55.122369+00:00] sql.INFO: [20.98] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:53:55.211106+00:00] sql.INFO: [86.11] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:54:00.616058+00:00] sql.INFO: [72.82] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:54:00.661052+00:00] sql.INFO: [17.58] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:54:00.710154+00:00] sql.INFO: [39.66] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:59:20.694912+00:00] sql.INFO: [375.94] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:20.765437+00:00] sql.INFO: [46.52] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:20.946961+00:00] sql.INFO: [170.25] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:59:25.289857+00:00] sql.INFO: [113.74] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:25.332806+00:00] sql.INFO: [18.68] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:25.431750+00:00] sql.INFO: [87.48] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T00:59:27.025312+00:00] sql.INFO: [344.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:27.051282+00:00] sql.INFO: [21.55] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `created_at`, `updated_at`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T00:59:27.102628+00:00] sql.INFO: [47.7] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:08:05.052381+00:00] sql.INFO: [189.63] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:05.106843+00:00] sql.INFO: [29.43] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:05.199312+00:00] sql.INFO: [83.86] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:08:06.859201+00:00] sql.INFO: [35.24] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:06.879578+00:00] sql.INFO: [17.58] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:06.917774+00:00] sql.INFO: [35.76] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:08:08.215145+00:00] sql.INFO: [15.77] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:08.239063+00:00] sql.INFO: [21.48] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:08.351119+00:00] sql.INFO: [109.18] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:08:09.804748+00:00] sql.INFO: [18.81] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:09.828095+00:00] sql.INFO: [20.64] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:08:09.930007+00:00] sql.INFO: [99.23] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:18:46.373848+00:00] sql.INFO: [83.03] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:18:46.417794+00:00] sql.INFO: [19.27] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:18:46.483140+00:00] sql.INFO: [56.75] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') [] []
+[2024-11-18T01:20:14.261473+00:00] sql.INFO: [209.26] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:14.316505+00:00] sql.INFO: [30.87] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:15.128728+00:00] sql.INFO: [802.58] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:20:20.945554+00:00] sql.INFO: [17.03] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:20.969944+00:00] sql.INFO: [21.65] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:21.126856+00:00] sql.INFO: [154.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:20:22.623582+00:00] sql.INFO: [18.19] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:22.646534+00:00] sql.INFO: [20.25] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:22.739178+00:00] sql.INFO: [89.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:20:28.062759+00:00] sql.INFO: [89.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:28.102927+00:00] sql.INFO: [18.39] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:28.227934+00:00] sql.INFO: [115.63] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:20:53.805124+00:00] sql.INFO: [226.83] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:53.836664+00:00] sql.INFO: [28.33] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:20:54.488573+00:00] sql.INFO: [648.74] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:21:00.227590+00:00] sql.INFO: [282.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:21:00.270025+00:00] sql.INFO: [18.52] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:21:00.739810+00:00] sql.INFO: [458.46] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:22:31.703771+00:00] sql.INFO: [128.2] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:22:31.747028+00:00] sql.INFO: [17.5] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:22:32.100887+00:00] sql.INFO: [345.68] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:22:43.175005+00:00] sql.INFO: [132.4] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:22:43.221637+00:00] sql.INFO: [18.39] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:22:43.514475+00:00] sql.INFO: [281.68] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:01.910180+00:00] sql.INFO: [139.24] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:02.162269+00:00] sql.INFO: [229.3] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:02.268486+00:00] sql.INFO: [85.3] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:04.078670+00:00] sql.INFO: [225.93] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:04.100969+00:00] sql.INFO: [19.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:04.431961+00:00] sql.INFO: [328.75] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:05.857574+00:00] sql.INFO: [18.49] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:05.879820+00:00] sql.INFO: [18.95] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:05.992083+00:00] sql.INFO: [109.39] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:07.499633+00:00] sql.INFO: [16.67] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:07.523472+00:00] sql.INFO: [21.19] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:09.411826+00:00] sql.INFO: [1885.76] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:15.415565+00:00] sql.INFO: [281.31] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:15.456340+00:00] sql.INFO: [18.22] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:15.866634+00:00] sql.INFO: [398.98] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:22.298974+00:00] sql.INFO: [16.8] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:22.318560+00:00] sql.INFO: [17.32] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:26.183420+00:00] sql.INFO: [3862.12] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:23:32.925750+00:00] sql.INFO: [1314.12] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:32.973146+00:00] sql.INFO: [18.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:23:33.706003+00:00] sql.INFO: [719.72] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:24:01.277741+00:00] sql.INFO: [100.99] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:01.322852+00:00] sql.INFO: [18.88] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:01.375363+00:00] sql.INFO: [41.48] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:24:07.930460+00:00] sql.INFO: [1300.07] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:08.186021+00:00] sql.INFO: [231.38] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:08.756321+00:00] sql.INFO: [559.12] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:24:50.631521+00:00] sql.INFO: [282.14] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:50.686339+00:00] sql.INFO: [25.46] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:24:50.796933+00:00] sql.INFO: [98.75] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:25:06.984126+00:00] sql.INFO: [335.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:25:07.031833+00:00] sql.INFO: [18.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:25:07.095152+00:00] sql.INFO: [51.84] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:29:52.637448+00:00] sql.INFO: [76.2] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:52.679005+00:00] sql.INFO: [18.41] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:52.735275+00:00] sql.INFO: [44.79] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:29:54.438097+00:00] sql.INFO: [17.47] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:54.836252+00:00] sql.INFO: [395.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:54.924687+00:00] sql.INFO: [82.02] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:29:56.328419+00:00] sql.INFO: [18.47] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:56.352220+00:00] sql.INFO: [21.53] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:29:56.393338+00:00] sql.INFO: [37.55] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:42:55.395502+00:00] sql.INFO: [1098.09] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:42:55.449150+00:00] sql.INFO: [28.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:42:55.589829+00:00] sql.INFO: [131.34] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:47:18.581594+00:00] sql.INFO: [102.76] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:47:19.725648+00:00] sql.INFO: [1124.19] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:47:20.378729+00:00] sql.INFO: [632.03] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:52:19.072480+00:00] sql.INFO: [392.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:52:19.149445+00:00] sql.INFO: [25.48] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:52:19.308163+00:00] sql.INFO: [149.76] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:52:55.745594+00:00] sql.INFO: [16.81] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:52:55.765836+00:00] sql.INFO: [17.66] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:52:55.871937+00:00] sql.INFO: [103.16] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:02.398787+00:00] sql.INFO: [66.4] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:02.649733+00:00] sql.INFO: [229.23] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:02.960760+00:00] sql.INFO: [288.23] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:16.428117+00:00] sql.INFO: [60.41] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:16.497042+00:00] sql.INFO: [48.45] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:16.871010+00:00] sql.INFO: [370.37] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:23.044825+00:00] sql.INFO: [68.34] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:23.084189+00:00] sql.INFO: [18.45] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:23.199259+00:00] sql.INFO: [104.47] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:25.930574+00:00] sql.INFO: [225] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:25.952665+00:00] sql.INFO: [19.34] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:27.863756+00:00] sql.INFO: [1908.41] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:50.659687+00:00] sql.INFO: [16.4] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:50.954974+00:00] sql.INFO: [292.33] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:51.051558+00:00] sql.INFO: [93.59] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:54.375402+00:00] sql.INFO: [14.82] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:54.396067+00:00] sql.INFO: [17.8] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:54.450671+00:00] sql.INFO: [52.62] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:53:57.474556+00:00] sql.INFO: [18.57] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:57.496880+00:00] sql.INFO: [19.41] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:53:57.543063+00:00] sql.INFO: [43.53] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:06.285872+00:00] sql.INFO: [24.22] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:06.314157+00:00] sql.INFO: [25.8] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:06.735318+00:00] sql.INFO: [418.39] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:10.768092+00:00] sql.INFO: [22.46] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:10.796726+00:00] sql.INFO: [25.62] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:10.860026+00:00] sql.INFO: [60.64] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:12.640687+00:00] sql.INFO: [324.49] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:12.666961+00:00] sql.INFO: [23.66] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:13.712096+00:00] sql.INFO: [1042.61] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:15.466060+00:00] sql.INFO: [235.06] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:15.504489+00:00] sql.INFO: [32.86] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:15.690944+00:00] sql.INFO: [183.34] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:17.103486+00:00] sql.INFO: [21.54] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:17.131909+00:00] sql.INFO: [25.92] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:17.563026+00:00] sql.INFO: [428.24] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:43.050273+00:00] sql.INFO: [334.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:43.091429+00:00] sql.INFO: [33.62] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:43.411377+00:00] sql.INFO: [313.74] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:54:51.072286+00:00] sql.INFO: [2345.09] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:51.371977+00:00] sql.INFO: [273.44] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:54:51.511423+00:00] sql.INFO: [116.36] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T01:55:22.941781+00:00] sql.INFO: [293.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:55:22.985316+00:00] sql.INFO: [20.2] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T01:55:24.459653+00:00] sql.INFO: [1463.3] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:01:11.884579+00:00] sql.INFO: [175.13] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:01:11.931017+00:00] sql.INFO: [20.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:01:13.509388+00:00] sql.INFO: [1569.26] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:37.017900+00:00] sql.INFO: [73.43] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:37.059291+00:00] sql.INFO: [18.27] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:37.111663+00:00] sql.INFO: [42.5] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:38.576295+00:00] sql.INFO: [27.93] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:38.597896+00:00] sql.INFO: [18.54] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:38.882377+00:00] sql.INFO: [281.53] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:40.368445+00:00] sql.INFO: [18.86] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:40.391718+00:00] sql.INFO: [20.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:40.439692+00:00] sql.INFO: [44.97] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:41.756942+00:00] sql.INFO: [17.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:41.778157+00:00] sql.INFO: [18.62] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:41.929914+00:00] sql.INFO: [149.15] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:43.252548+00:00] sql.INFO: [18.26] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:43.273963+00:00] sql.INFO: [18.78] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:43.918394+00:00] sql.INFO: [641.81] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:06:45.338757+00:00] sql.INFO: [17.01] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:45.361096+00:00] sql.INFO: [19.3] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:06:45.440424+00:00] sql.INFO: [76.56] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:09:50.763769+00:00] sql.INFO: [312.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:09:50.824678+00:00] sql.INFO: [37.1] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:09:51.419069+00:00] sql.INFO: [583.45] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:10:26.161109+00:00] sql.INFO: [102.5] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:10:26.218185+00:00] sql.INFO: [19.07] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:10:26.988574+00:00] sql.INFO: [761.86] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:10:44.336609+00:00] sql.INFO: [541.05] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:10:44.399290+00:00] sql.INFO: [18.43] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:10:44.670740+00:00] sql.INFO: [261.04] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:13:06.918894+00:00] sql.INFO: [1161.51] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:06.942315+00:00] sql.INFO: [19.51] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:07.303253+00:00] sql.INFO: [357.8] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:13:12.917102+00:00] sql.INFO: [70.51] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:12.957538+00:00] sql.INFO: [19.78] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:13.073491+00:00] sql.INFO: [105.93] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:13:14.729491+00:00] sql.INFO: [16.74] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:15.030685+00:00] sql.INFO: [298.29] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:15.215359+00:00] sql.INFO: [179.25] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:13:32.904344+00:00] sql.INFO: [137.06] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:32.965017+00:00] sql.INFO: [38.53] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:13:33.295495+00:00] sql.INFO: [319.48] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:14:30.072714+00:00] sql.INFO: [71.98] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:14:30.117733+00:00] sql.INFO: [19.72] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:14:30.173457+00:00] sql.INFO: [44.43] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:18:16.090282+00:00] sql.INFO: [337.83] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:16.147600+00:00] sql.INFO: [29.21] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:16.231436+00:00] sql.INFO: [72.89] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:18:53.116796+00:00] sql.INFO: [18.26] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:53.351505+00:00] sql.INFO: [232.03] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:53.720360+00:00] sql.INFO: [362.54] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:18:55.213829+00:00] sql.INFO: [18.67] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:55.236162+00:00] sql.INFO: [19.61] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:55.590960+00:00] sql.INFO: [351.84] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:18:58.047519+00:00] sql.INFO: [18.64] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:58.071579+00:00] sql.INFO: [21.07] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:58.151929+00:00] sql.INFO: [78.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:18:59.572039+00:00] sql.INFO: [71.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:59.594479+00:00] sql.INFO: [19.82] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:18:59.751835+00:00] sql.INFO: [154.45] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:23:49.448740+00:00] sql.INFO: [79.77] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:23:49.493331+00:00] sql.INFO: [18.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:23:49.566613+00:00] sql.INFO: [63.66] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:23:51.473653+00:00] sql.INFO: [18.31] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:23:51.524715+00:00] sql.INFO: [47.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:23:51.646742+00:00] sql.INFO: [119.41] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:24:12.589466+00:00] sql.INFO: [273.92] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:24:12.629802+00:00] sql.INFO: [18.37] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:24:13.127513+00:00] sql.INFO: [486.92] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:40:21.408314+00:00] sql.INFO: [211.29] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:40:21.470528+00:00] sql.INFO: [38.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:43:27.720665+00:00] sql.INFO: [74.88] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:43:27.761083+00:00] sql.INFO: [17.28] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:43:28.193232+00:00] sql.INFO: [420.34] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:43:42.173363+00:00] sql.INFO: [72.51] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:43:42.221683+00:00] sql.INFO: [18.76] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:43:42.724760+00:00] sql.INFO: [490.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:44:02.854576+00:00] sql.INFO: [17.19] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:02.877083+00:00] sql.INFO: [20.05] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:02.990457+00:00] sql.INFO: [111.04] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:44:09.375578+00:00] sql.INFO: [63.52] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:09.416245+00:00] sql.INFO: [20.11] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:22.598757+00:00] sql.INFO: [16.85] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:22.625453+00:00] sql.INFO: [21.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:29.029910+00:00] sql.INFO: [72.92] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:29.072392+00:00] sql.INFO: [19.36] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:30.887719+00:00] sql.INFO: [18.62] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:30.911009+00:00] sql.INFO: [20.46] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:32.575785+00:00] sql.INFO: [22.33] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:32.599818+00:00] sql.INFO: [20.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:56.286258+00:00] sql.INFO: [17.05] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:44:56.307244+00:00] sql.INFO: [18.57] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:05.427366+00:00] sql.INFO: [69.85] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:05.468984+00:00] sql.INFO: [18.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:05.520066+00:00] sql.INFO: [42.82] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:45:27.978702+00:00] sql.INFO: [108.15] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:28.022756+00:00] sql.INFO: [19.5] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:28.305474+00:00] sql.INFO: [272.7] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:45:47.491499+00:00] sql.INFO: [91.88] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:47.534053+00:00] sql.INFO: [18.37] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `source`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:47.613625+00:00] sql.INFO: [70.29] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:45:52.785562+00:00] sql.INFO: [71.04] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:52.828853+00:00] sql.INFO: [20.03] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:45:52.879895+00:00] sql.INFO: [41.65] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:45:53.111471+00:00] sql.INFO: [219.5] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:48:12.308083+00:00] sql.INFO: [108.59] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:48:12.562458+00:00] sql.INFO: [231.68] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:48:12.913372+00:00] sql.INFO: [334.17] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:48:13.089384+00:00] sql.INFO: [161.75] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:49:18.219596+00:00] sql.INFO: [263.48] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:49:18.268446+00:00] sql.INFO: [24.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:49:19.146034+00:00] sql.INFO: [865.85] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:49:19.248459+00:00] sql.INFO: [90.2] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:50:00.636705+00:00] sql.INFO: [21.81] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:00.663432+00:00] sql.INFO: [23.19] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:00.717878+00:00] sql.INFO: [51.82] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:50:00.738887+00:00] sql.INFO: [18.24] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:50:07.661513+00:00] sql.INFO: [465.41] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:07.723383+00:00] sql.INFO: [36] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:07.892734+00:00] sql.INFO: [159.61] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:50:08.392473+00:00] sql.INFO: [487.94] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:50:55.793637+00:00] sql.INFO: [90.86] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:55.840884+00:00] sql.INFO: [25.09] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:50:55.905917+00:00] sql.INFO: [54.98] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:50:56.257459+00:00] sql.INFO: [339.55] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:52:20.010547+00:00] sql.INFO: [67.32] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:52:20.032649+00:00] sql.INFO: [19.46] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:52:21.181197+00:00] sql.INFO: [1146.04] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:52:21.688878+00:00] sql.INFO: [502.37] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T02:53:22.122123+00:00] sql.INFO: [73.73] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:53:22.165229+00:00] sql.INFO: [20.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:53:22.218759+00:00] sql.INFO: [42.38] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:54:55.107061+00:00] sql.INFO: [1775.37] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:54:55.137759+00:00] sql.INFO: [24.5] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:02.410236+00:00] sql.INFO: [1116.87] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:02.482403+00:00] sql.INFO: [50.82] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:02.938202+00:00] sql.INFO: [445.83] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:55:12.382667+00:00] sql.INFO: [876.53] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:12.404921+00:00] sql.INFO: [19.55] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:12.575065+00:00] sql.INFO: [167.47] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:55:17.747176+00:00] sql.INFO: [69.23] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:17.786054+00:00] sql.INFO: [17.48] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:17.838088+00:00] sql.INFO: [42.94] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:55:19.389846+00:00] sql.INFO: [54.85] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:19.451218+00:00] sql.INFO: [59.05] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:19.495409+00:00] sql.INFO: [41.47] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:55:25.970867+00:00] sql.INFO: [41.9] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:26.215332+00:00] sql.INFO: [238.54] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:27.144156+00:00] sql.INFO: [925.15] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:55:50.447252+00:00] sql.INFO: [84.02] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:50.489960+00:00] sql.INFO: [18.72] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:55:50.674686+00:00] sql.INFO: [174.21] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:08.832608+00:00] sql.INFO: [19.5] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:08.858506+00:00] sql.INFO: [22.84] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:09.465900+00:00] sql.INFO: [604.02] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:14.842723+00:00] sql.INFO: [73.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:14.897167+00:00] sql.INFO: [33.48] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:15.214093+00:00] sql.INFO: [307.57] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:32.485728+00:00] sql.INFO: [231.27] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:32.508728+00:00] sql.INFO: [20.36] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:32.588262+00:00] sql.INFO: [76.73] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:37.943954+00:00] sql.INFO: [396.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:38.076218+00:00] sql.INFO: [88.13] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:38.180555+00:00] sql.INFO: [95.2] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:50.682798+00:00] sql.INFO: [17.01] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:50.706516+00:00] sql.INFO: [20.6] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:50.754223+00:00] sql.INFO: [44.28] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:52.341587+00:00] sql.INFO: [17.71] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:52.363585+00:00] sql.INFO: [18.51] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:52.406192+00:00] sql.INFO: [39.81] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:56:57.121784+00:00] sql.INFO: [67.97] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:57.169268+00:00] sql.INFO: [19] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:56:57.222865+00:00] sql.INFO: [43.7] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:57:19.677547+00:00] sql.INFO: [122.97] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:19.721542+00:00] sql.INFO: [21.43] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:19.781065+00:00] sql.INFO: [50.28] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:57:24.712898+00:00] sql.INFO: [75.81] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:24.755831+00:00] sql.INFO: [20.22] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:24.814166+00:00] sql.INFO: [46.4] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:57:50.293869+00:00] sql.INFO: [19.07] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:50.317850+00:00] sql.INFO: [20.7] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:50.664421+00:00] sql.INFO: [343.43] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:57:52.356988+00:00] sql.INFO: [232.19] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:52.389277+00:00] sql.INFO: [26.63] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:52.844626+00:00] sql.INFO: [451.85] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:57:57.987725+00:00] sql.INFO: [268.56] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:59.076502+00:00] sql.INFO: [1062.05] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:57:59.665297+00:00] sql.INFO: [567.45] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:28.562814+00:00] sql.INFO: [84.39] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:29.125454+00:00] sql.INFO: [545.76] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:29.427110+00:00] sql.INFO: [297.36] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:31.008059+00:00] sql.INFO: [17.46] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:31.029864+00:00] sql.INFO: [19.82] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:31.365341+00:00] sql.INFO: [333.05] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:33.009341+00:00] sql.INFO: [228.69] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:33.032120+00:00] sql.INFO: [19.16] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:33.374373+00:00] sql.INFO: [339.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:38.761006+00:00] sql.INFO: [83.75] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:38.802042+00:00] sql.INFO: [18.79] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:39.122454+00:00] sql.INFO: [309.73] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:42.401037+00:00] sql.INFO: [20.57] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:42.442538+00:00] sql.INFO: [38.94] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:42.826511+00:00] sql.INFO: [381.29] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:44.339007+00:00] sql.INFO: [20.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:44.577091+00:00] sql.INFO: [235.1] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:45.814981+00:00] sql.INFO: [1231.82] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:47.591311+00:00] sql.INFO: [235.69] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:47.643839+00:00] sql.INFO: [49.63] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:49.246181+00:00] sql.INFO: [1600.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:58:50.141249+00:00] sql.INFO: [19.69] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:50.164250+00:00] sql.INFO: [20.22] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:58:51.409384+00:00] sql.INFO: [1241.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T02:59:22.168269+00:00] sql.INFO: [283.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:59:22.216836+00:00] sql.INFO: [20.63] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T02:59:22.508601+00:00] sql.INFO: [279.74] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:00:09.582395+00:00] sql.INFO: [124.2] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:00:09.642249+00:00] sql.INFO: [33.49] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:00:09.699197+00:00] sql.INFO: [46.8] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:01:14.711310+00:00] sql.INFO: [292.42] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:01:14.783198+00:00] sql.INFO: [47.34] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:01:15.542157+00:00] sql.INFO: [746.94] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:05:36.613947+00:00] sql.INFO: [65.41] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:05:36.652741+00:00] sql.INFO: [18.53] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:05:36.705886+00:00] sql.INFO: [43.87] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:06:44.857767+00:00] sql.INFO: [203.96] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:06:44.917171+00:00] sql.INFO: [34.6] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:06:45.113906+00:00] sql.INFO: [186.43] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:07:15.697068+00:00] sql.INFO: [29.71] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:15.720330+00:00] sql.INFO: [20.62] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:15.822741+00:00] sql.INFO: [100.18] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:07:22.427597+00:00] sql.INFO: [66.95] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:22.487195+00:00] sql.INFO: [37.28] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:23.231038+00:00] sql.INFO: [732.91] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:07:49.066403+00:00] sql.INFO: [103.79] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:49.087648+00:00] sql.INFO: [19.4] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:49.159053+00:00] sql.INFO: [68.29] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:07:50.798590+00:00] sql.INFO: [15.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:50.819280+00:00] sql.INFO: [17.83] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:50.874987+00:00] sql.INFO: [53.09] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:07:56.982043+00:00] sql.INFO: [73.04] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:57.022375+00:00] sql.INFO: [19.45] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:07:57.078135+00:00] sql.INFO: [45] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:08:29.702150+00:00] sql.INFO: [17.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:29.725990+00:00] sql.INFO: [21.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:30.446870+00:00] sql.INFO: [718.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:08:36.575357+00:00] sql.INFO: [113.67] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:36.617859+00:00] sql.INFO: [20.51] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:36.911765+00:00] sql.INFO: [282.38] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:08:57.820291+00:00] sql.INFO: [18.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:57.845279+00:00] sql.INFO: [22.17] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:57.940202+00:00] sql.INFO: [92.64] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:08:59.649804+00:00] sql.INFO: [17.98] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:59.673602+00:00] sql.INFO: [20.13] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:08:59.758357+00:00] sql.INFO: [81.88] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:09:04.776627+00:00] sql.INFO: [73.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:09:04.817615+00:00] sql.INFO: [18.45] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:09:04.869725+00:00] sql.INFO: [42.36] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:09:08.540178+00:00] sql.INFO: [38.94] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:09:08.565978+00:00] sql.INFO: [23.24] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:09:08.612759+00:00] sql.INFO: [43.92] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:11:55.969360+00:00] sql.INFO: [362.49] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:11:56.005892+00:00] sql.INFO: [33.13] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:11:56.127208+00:00] sql.INFO: [118.13] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:12:01.453542+00:00] sql.INFO: [300.87] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:12:01.520255+00:00] sql.INFO: [21.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:12:01.656664+00:00] sql.INFO: [127.53] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:12:23.703126+00:00] sql.INFO: [65.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:12:23.744844+00:00] sql.INFO: [19.79] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:12:23.797912+00:00] sql.INFO: [43.15] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:16:00.044485+00:00] sql.INFO: [1296.71] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:16:00.116908+00:00] sql.INFO: [48.57] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:16:01.479846+00:00] sql.INFO: [1352.94] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:16:24.035108+00:00] sql.INFO: [1398.34] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:16:24.078796+00:00] sql.INFO: [19.74] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:16:24.429313+00:00] sql.INFO: [339.96] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:19:55.241357+00:00] sql.INFO: [78.07] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:19:55.282338+00:00] sql.INFO: [18.47] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:19:55.375517+00:00] sql.INFO: [80.89] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:20:02.714058+00:00] sql.INFO: [20.11] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:20:02.737197+00:00] sql.INFO: [20.77] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:20:04.872227+00:00] sql.INFO: [2132.24] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:20:19.415017+00:00] sql.INFO: [97.23] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:20:19.455215+00:00] sql.INFO: [19.52] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:20:19.767590+00:00] sql.INFO: [302.97] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T03:27:34.148670+00:00] sql.INFO: [67.23] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:27:34.188700+00:00] sql.INFO: [18.94] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T03:27:34.246178+00:00] sql.INFO: [47.24] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T04:59:51.948547+00:00] sql.INFO: [561.04] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T04:59:51.986723+00:00] sql.INFO: [34.52] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T04:59:52.111883+00:00] sql.INFO: [122.09] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T04:59:58.065425+00:00] sql.INFO: [208.78] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T04:59:58.131304+00:00] sql.INFO: [42.28] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T04:59:58.302835+00:00] sql.INFO: [162.42] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:00:15.785243+00:00] sql.INFO: [739.82] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:15.882779+00:00] sql.INFO: [74.57] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:16.099687+00:00] sql.INFO: [206.71] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:00:16.227455+00:00] sql.INFO: [113.53] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:00:48.351011+00:00] sql.INFO: [239] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:48.389516+00:00] sql.INFO: [19.14] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:48.550639+00:00] sql.INFO: [158.26] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:00:48.782950+00:00] sql.INFO: [229.63] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:00:50.772632+00:00] sql.INFO: [16.83] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:51.453499+00:00] sql.INFO: [677.5] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:00:52.183821+00:00] sql.INFO: [727.02] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:00:52.207007+00:00] sql.INFO: [19.75] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:02:11.992061+00:00] sql.INFO: [1284.44] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:02:12.515941+00:00] sql.INFO: [497.39] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:02:20.765081+00:00] sql.INFO: [77.76] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:02:20.809526+00:00] sql.INFO: [21] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:02:22.139733+00:00] sql.INFO: [1319.91] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:02:22.409075+00:00] sql.INFO: [249.27] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:03:17.888041+00:00] sql.INFO: [17.66] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:03:17.913092+00:00] sql.INFO: [22.25] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:03:17.987313+00:00] sql.INFO: [71.57] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:03:18.010586+00:00] sql.INFO: [20.29] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:03:24.019973+00:00] sql.INFO: [314.42] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:03:24.076320+00:00] sql.INFO: [31.82] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:03:24.320184+00:00] sql.INFO: [234.21] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:03:24.606280+00:00] sql.INFO: [272.54] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:04:01.628675+00:00] sql.INFO: [174.02] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:04:01.798019+00:00] sql.INFO: [166.66] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:04:02.592585+00:00] sql.INFO: [791.58] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:04:02.628745+00:00] sql.INFO: [33.27] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:04:07.801928+00:00] sql.INFO: [267.22] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:04:07.851197+00:00] sql.INFO: [25.57] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:04:07.996382+00:00] sql.INFO: [135.53] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:04:08.071449+00:00] sql.INFO: [63.73] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:05:08.141970+00:00] sql.INFO: [833.87] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:05:08.258614+00:00] sql.INFO: [84.66] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:05:08.860040+00:00] sql.INFO: [591.28] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:05:09.434230+00:00] sql.INFO: [562.55] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:10:41.902638+00:00] sql.INFO: [401.84] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:10:41.952442+00:00] sql.INFO: [25.6] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:10:42.033364+00:00] sql.INFO: [71.03] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:10:42.589752+00:00] sql.INFO: [545.35] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:14:01.774150+00:00] sql.INFO: [68.97] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:14:01.815419+00:00] sql.INFO: [19.25] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:14:01.916395+00:00] sql.INFO: [90.22] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:14:03.030005+00:00] sql.INFO: [1102.86] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:14:05.017841+00:00] sql.INFO: [16.57] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:14:05.040206+00:00] sql.INFO: [19.7] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:14:05.842926+00:00] sql.INFO: [799.83] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:14:06.101723+00:00] sql.INFO: [252.96] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:15:15.773154+00:00] sql.INFO: [66.72] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:15:15.815162+00:00] sql.INFO: [19.33] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:15:15.863877+00:00] sql.INFO: [38.04] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:15:15.939161+00:00] sql.INFO: [60.68] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:15:57.784774+00:00] sql.INFO: [17.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:15:57.807302+00:00] sql.INFO: [18.58] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:15:58.116176+00:00] sql.INFO: [305.98] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:15:58.137182+00:00] sql.INFO: [18.39] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:16:05.747655+00:00] sql.INFO: [264.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:16:05.791343+00:00] sql.INFO: [19.08] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:16:05.844625+00:00] sql.INFO: [43.45] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:16:05.921199+00:00] sql.INFO: [66.15] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:16:25.541299+00:00] sql.INFO: [74.64] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:16:25.585084+00:00] sql.INFO: [21.03] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:16:25.668395+00:00] sql.INFO: [72.65] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:16:25.864373+00:00] sql.INFO: [182.85] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:20:03.423564+00:00] sql.INFO: [1927.75] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:20:03.467021+00:00] sql.INFO: [18.67] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:20:11.832289+00:00] sql.INFO: [285.43] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:20:11.878402+00:00] sql.INFO: [19.67] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:20:11.988313+00:00] sql.INFO: [76.23] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:20:12.208459+00:00] sql.INFO: [204.44] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:21:11.149935+00:00] sql.INFO: [65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:11.191895+00:00] sql.INFO: [19.25] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:11.270549+00:00] sql.INFO: [42.48] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:21:11.553424+00:00] sql.INFO: [268.66] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:21:20.705268+00:00] sql.INFO: [15.4] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:20.725761+00:00] sql.INFO: [17.44] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:21.002890+00:00] sql.INFO: [262.25] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:21:21.033821+00:00] sql.INFO: [25.86] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:21:22.621077+00:00] sql.INFO: [16.2] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:22.642705+00:00] sql.INFO: [18.44] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:22.936006+00:00] sql.INFO: [282.51] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:21:22.958194+00:00] sql.INFO: [18.99] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:21:24.497652+00:00] sql.INFO: [16.06] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:24.519766+00:00] sql.INFO: [19.04] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:21:24.952809+00:00] sql.INFO: [422.87] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:21:24.977893+00:00] sql.INFO: [20.07] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:24:32.233412+00:00] sql.INFO: [65.24] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:24:32.257612+00:00] sql.INFO: [21.73] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:24:32.395640+00:00] sql.INFO: [121.84] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:24:33.148921+00:00] sql.INFO: [750.9] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:24:42.757986+00:00] sql.INFO: [1079.95] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:24:42.817976+00:00] sql.INFO: [36.06] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:24:44.425263+00:00] sql.INFO: [1577.72] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:25:23.933202+00:00] sql.INFO: [1251.31] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:25:23.977138+00:00] sql.INFO: [18.44] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:25:24.168269+00:00] sql.INFO: [180.5] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:25:24.251551+00:00] sql.INFO: [66.33] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:25:56.653785+00:00] sql.INFO: [68.45] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:25:57.182069+00:00] sql.INFO: [506.06] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:25:57.365847+00:00] sql.INFO: [173.18] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:25:57.443511+00:00] sql.INFO: [64.14] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:26:05.903815+00:00] sql.INFO: [2005.94] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:05.984649+00:00] sql.INFO: [57.89] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:06.157360+00:00] sql.INFO: [164.02] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:26:06.246017+00:00] sql.INFO: [74.33] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:26:40.919438+00:00] sql.INFO: [70.26] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:40.964578+00:00] sql.INFO: [17.54] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:41.015564+00:00] sql.INFO: [42.02] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:26:41.106345+00:00] sql.INFO: [77.38] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T05:26:48.427740+00:00] sql.INFO: [72.7] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:48.472315+00:00] sql.INFO: [19.2] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T05:26:48.525686+00:00] sql.INFO: [45.72] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T05:26:48.602437+00:00] sql.INFO: [62.99] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:30:47.714278+00:00] sql.INFO: [69.07] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:30:47.735430+00:00] sql.INFO: [17.95] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:30:47.806304+00:00] sql.INFO: [68.16] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:30:47.873376+00:00] sql.INFO: [64.24] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:30:53.682171+00:00] sql.INFO: [63.5] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:30:53.722360+00:00] sql.INFO: [17.97] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:30:53.770585+00:00] sql.INFO: [36.9] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:30:53.865528+00:00] sql.INFO: [81.54] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:32:20.895328+00:00] sql.INFO: [78.77] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:32:20.935053+00:00] sql.INFO: [19.23] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:32:20.987916+00:00] sql.INFO: [41.96] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:32:21.109769+00:00] sql.INFO: [108.33] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:33:38.005391+00:00] sql.INFO: [62.95] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:33:38.045919+00:00] sql.INFO: [17.59] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:33:38.098932+00:00] sql.INFO: [42.56] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:37:52.850617+00:00] sql.INFO: [73.61] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:37:52.893267+00:00] sql.INFO: [17.22] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:37:52.942646+00:00] sql.INFO: [40.06] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:41:21.639534+00:00] sql.INFO: [270.25] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:21.663756+00:00] sql.INFO: [21.38] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:21.718046+00:00] sql.INFO: [51.51] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:41:23.184764+00:00] sql.INFO: [19.9] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:23.205248+00:00] sql.INFO: [17.63] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:23.784894+00:00] sql.INFO: [576.42] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:41:43.021685+00:00] sql.INFO: [573.61] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:43.078932+00:00] sql.INFO: [31.57] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:41:43.283452+00:00] sql.INFO: [194.59] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:42:51.724473+00:00] sql.INFO: [469.38] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:42:51.777675+00:00] sql.INFO: [28.24] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:42:51.872728+00:00] sql.INFO: [87.15] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:42:56.839298+00:00] sql.INFO: [17.15] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:42:56.863034+00:00] sql.INFO: [20.49] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:42:56.990983+00:00] sql.INFO: [124.95] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:43:20.601009+00:00] sql.INFO: [67.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:43:20.640503+00:00] sql.INFO: [17.92] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:43:20.686339+00:00] sql.INFO: [37.6] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:43:55.261076+00:00] sql.INFO: [264.54] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:43:55.305521+00:00] sql.INFO: [20.29] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:43:55.390692+00:00] sql.INFO: [76.42] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:45:23.684833+00:00] sql.INFO: [62.59] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:23.704998+00:00] sql.INFO: [17.63] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:23.751788+00:00] sql.INFO: [44.09] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:45:25.345915+00:00] sql.INFO: [17.83] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:25.370307+00:00] sql.INFO: [21.48] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:25.415466+00:00] sql.INFO: [42.18] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:45:46.844222+00:00] sql.INFO: [93.22] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:46.890176+00:00] sql.INFO: [21.59] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:45:46.952050+00:00] sql.INFO: [52.94] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:46:21.717822+00:00] sql.INFO: [20.36] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:46:21.749927+00:00] sql.INFO: [29.34] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:46:21.812453+00:00] sql.INFO: [56] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:46:28.270866+00:00] sql.INFO: [75.55] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:46:28.314636+00:00] sql.INFO: [20.37] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:46:28.368531+00:00] sql.INFO: [43.74] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:47:37.487930+00:00] sql.INFO: [97.86] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:47:37.532477+00:00] sql.INFO: [21.59] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:47:37.596725+00:00] sql.INFO: [55.19] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:48:48.644701+00:00] sql.INFO: [72.22] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:48:48.684384+00:00] sql.INFO: [18.49] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:48:48.735220+00:00] sql.INFO: [43.12] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:50:36.815270+00:00] sql.INFO: [1313.3] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:50:36.863740+00:00] sql.INFO: [19.39] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:50:36.969180+00:00] sql.INFO: [96.1] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:51:54.351704+00:00] sql.INFO: [68.78] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:51:54.391706+00:00] sql.INFO: [17.91] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:51:54.442319+00:00] sql.INFO: [41.66] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:51:57.535659+00:00] sql.INFO: [16.93] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:51:57.558347+00:00] sql.INFO: [19.96] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:51:57.603398+00:00] sql.INFO: [42.04] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:52:43.440658+00:00] sql.INFO: [15.92] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:43.460469+00:00] sql.INFO: [16.99] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:43.553100+00:00] sql.INFO: [90.05] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:52:44.906704+00:00] sql.INFO: [19.73] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:44.943180+00:00] sql.INFO: [29.49] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:45.068821+00:00] sql.INFO: [122.68] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:52:51.350998+00:00] sql.INFO: [66.14] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:51.387991+00:00] sql.INFO: [18.6] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:52:51.440526+00:00] sql.INFO: [42.24] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:53:10.380890+00:00] sql.INFO: [72.93] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:10.420601+00:00] sql.INFO: [18.46] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:10.472223+00:00] sql.INFO: [42.52] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:53:33.231119+00:00] sql.INFO: [17.35] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:33.253501+00:00] sql.INFO: [19.62] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:33.298650+00:00] sql.INFO: [41.89] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:53:39.853434+00:00] sql.INFO: [272.2] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:39.900001+00:00] sql.INFO: [19.22] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:53:39.972292+00:00] sql.INFO: [60.36] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:54:12.941259+00:00] sql.INFO: [16.69] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:12.965348+00:00] sql.INFO: [21.78] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:13.039804+00:00] sql.INFO: [71.29] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:54:19.418721+00:00] sql.INFO: [73.14] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:19.459258+00:00] sql.INFO: [19.42] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:19.508331+00:00] sql.INFO: [42.25] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:54:29.523315+00:00] sql.INFO: [18.89] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:29.545645+00:00] sql.INFO: [19.59] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:29.590322+00:00] sql.INFO: [42.36] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:54:31.046222+00:00] sql.INFO: [18.65] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:31.110466+00:00] sql.INFO: [60.95] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:31.204174+00:00] sql.INFO: [68.29] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:54:56.967499+00:00] sql.INFO: [108.46] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:57.008274+00:00] sql.INFO: [20.16] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:54:57.060033+00:00] sql.INFO: [43.37] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:56:47.947157+00:00] sql.INFO: [59.24] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:56:47.969305+00:00] sql.INFO: [19.46] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:56:48.036858+00:00] sql.INFO: [65.58] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:56:53.372220+00:00] sql.INFO: [73.34] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:56:53.413560+00:00] sql.INFO: [20.72] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:56:53.487058+00:00] sql.INFO: [43.24] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:56:53.683499+00:00] sql.INFO: [183.91] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:57:09.200448+00:00] sql.INFO: [17.14] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:09.222328+00:00] sql.INFO: [19.45] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:09.276878+00:00] sql.INFO: [42.72] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:57:09.303421+00:00] sql.INFO: [24.12] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:57:10.715830+00:00] sql.INFO: [21.52] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:10.738007+00:00] sql.INFO: [20.23] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:10.798052+00:00] sql.INFO: [49.31] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:57:10.822815+00:00] sql.INFO: [21.66] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:57:16.796719+00:00] sql.INFO: [71.42] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:16.833779+00:00] sql.INFO: [18.25] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:16.906575+00:00] sql.INFO: [43.56] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:57:16.983110+00:00] sql.INFO: [63.88] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []
+[2024-11-18T06:57:27.930490+00:00] sql.INFO: [18.6] select `id` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:27.955110+00:00] sql.INFO: [20.69] select `title`, `catid`, `level`, `introduce`, `keyword`, `author`, `copyfrom`, `fromurl`, `hits`, `islink`, `imgurl`, `admin_user_id`, `is_original` from `col_article` where (`rule_id` = '3' and `state` = '0') and `catid` is not null order by `id` asc [] []
+[2024-11-18T06:57:28.012143+00:00] sql.INFO: [43.35] select `content` from `col_article_data` where `article_id` in ('1261', '1262', '1263', '1264', '1265') order by `article_id` asc [] []
+[2024-11-18T06:57:28.034959+00:00] sql.INFO: [20.05] insert into `article` (`admin_user_id`, `author`, `catid`, `copyfrom`, `fromurl`, `hits`, `imgurl`, `introduce`, `is_original`, `islink`, `keyword`, `level`, `title`) values ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231017_3911400.htm', '0', '', '', '0', '0', '', '0', '财政部辽宁监管局:“三举措” 推动地方预决算公开情况专项检查工作'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/hunancaizhengxinxilianbo/202310/t20231013_3911028.htm', '0', '', '', '0', '0', '', '0', '湖南省岳阳市平江县财政:加强法治建设 护航财政高质量发展'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/jiangsucaizhengxinxilianbo/202310/t20231016_3911130.htm', '0', '', '', '0', '0', '', '0', '江苏丹阳财政:“四轮驱动”助推乡村振兴迈出坚实步伐'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911123.htm', '0', '', '', '0', '0', '', '0', '财政部四川监管局:加强财会监督“四举措”推动部门预算监管提质增效'), ('', '刘德华', '1', '中华人民共和国财政部', 'https://www.mof.gov.cn/zhengwuxinxi/xinwenlianbo/caizhengbu/202310/t20231016_3911128.htm', '0', '', '', '0', '0', '', '0', '财政部内蒙古监管局:秉持“精、细、准、实”四字方针 做好重点绩效评价工作') [] []

Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott