Переглянути джерело

自助建站-获取及搜索网站

15313670163 2 місяців тому
батько
коміт
356249b2ce
2 змінених файлів з 411 додано та 10 видалено
  1. 10 10
      app/JsonRpc/WebsiteService.php
  2. 401 0
      runtime/logs/hyperf.log

+ 10 - 10
app/JsonRpc/WebsiteService.php

@@ -21,6 +21,7 @@ use App\Model\WebsiteCategory;
 use App\Model\WebsiteTemplate;
 use App\Model\WebsiteTemplateInfo;
 use Hamcrest\Arrays\IsArray;
+use PhpParser\Node\Stmt\Return_;
 
 use function PHPUnit\Framework\isNull;
 // use Illuminate\Support\Facades\DB;
@@ -1106,10 +1107,10 @@ class WebsiteService implements WebsiteServiceInterface
                 "template.template_name"
             );
         //若存在条件;则在$query的基础上进行筛选
-        if (isset($data['website_name'])) {
+        if(isset($data['website_name']) && !empty($data['website_name'])){
             $query->where('website.website_name', 'like', '%' . $data['website_name'] . '%');
         }
-        if (isset($data['status'])) {
+        if(isset($data['status']) && !empty($data['status'])){
             $query->where('website_template_info.status', $data['status']);
         }
         $count = $query->count();
@@ -1212,7 +1213,7 @@ class WebsiteService implements WebsiteServiceInterface
     public function getWebsiteTemplateintel(array $data): array
     {
        
-        $result = WebsiteTemplateInfo::where('website_template_info.id',$data['id'])
+        $result = WebsiteTemplateInfo::where('website_template_info.website_id',$data['website_id'])
         ->leftJoin('footer_category','footer_category.website_id','website_template_info.website_id')
         ->leftJoin('website','website.id','website_template_info.website_id')
         ->select(
@@ -1313,8 +1314,6 @@ class WebsiteService implements WebsiteServiceInterface
                                     $query->whereJsonContains('template_img', ['value' => $value]);
                                 }
                             })
-                            ->leftJoin('template_class', 'template_class.id', 'template.template_class_id')
-                            ->select('template.*', 'template_class.name', 'template_class.id as class_id')
                             ->limit($data['pageSize'])
                             ->offset(($data['page'] - 1) * $data['pageSize'])
                             ->orderBy("template.updated_at", "desc")
@@ -1333,8 +1332,6 @@ class WebsiteService implements WebsiteServiceInterface
                                     $query->whereJsonContains('template_img', ['value' => $value]);
                                 }
                             })
-                            ->leftJoin('template_class','template_class.id','template.template_class_id')
-                            ->select('template.*','template_class.name','template_class.id as class_id')
                             ->limit($data['pageSize'])
                             ->offset(($data['page'] - 1) * $data['pageSize'])
                             ->orderBy("template.updated_at", "desc")
@@ -1435,16 +1432,19 @@ class WebsiteService implements WebsiteServiceInterface
             'template.id as tid',
             'template_class.name',
             'template_class.id as class_id',
-            'website_template_info.*')
+            'website_template_info.page_type',
+            'website_template_info.website_id')
         ->first();
+        // return Result::success($result);
         // 过滤 template_img 字段  只获取 基础信息中 包含的模板图片
-        $template_img = json_decode($result['template_img'], true);
-        $page_type = json_decode($result['page_type'], true);
+        $template_img = $result['template_img'] !== null ? json_decode($result['template_img'], true) : [];
+        $page_type = $result['page_type'] !== null ? json_decode($result['page_type'], true) : [];
         foreach ($template_img as $key => $value) {
             if (!in_array($value['value'], $page_type)) {
                 unset($template_img[$key]);
             }
         }
+        // return Result::success($result);
         $result['template_img'] = $template_img;
         if (empty($result)) {
             return Result::error("没有查找到相关数据", 0);

+ 401 - 0
runtime/logs/hyperf.log

@@ -2813,3 +2813,404 @@
 [2025-02-05T16:24:56.457082+08:00] sql.INFO: [13.35] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
 [2025-02-05T16:24:56.480637+08:00] sql.INFO: [15.61] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
 [2025-02-05T16:24:56.495899+08:00] sql.INFO: [13.91] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:49:18.889669+08:00] sql.INFO: [66.52] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:49:18.926700+08:00] sql.INFO: [16.53] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:49:47.018595+08:00] sql.INFO: [17.14] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:49:47.033812+08:00] sql.INFO: [14.05] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:49:47.053302+08:00] sql.INFO: [18.42] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:49:47.071638+08:00] sql.INFO: [17.1] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:51:08.494098+08:00] sql.INFO: [54.62] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:51:08.510064+08:00] sql.INFO: [14.9] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:51:08.525168+08:00] sql.INFO: [14.13] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:51:08.541549+08:00] sql.INFO: [15.08] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:51:13.031984+08:00] sql.INFO: [15.8] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:51:13.047860+08:00] sql.INFO: [14.92] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:51:13.064600+08:00] sql.INFO: [15.62] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:51:13.079518+08:00] sql.INFO: [13.15] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:09.804649+08:00] sql.INFO: [15.55] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:09.819703+08:00] sql.INFO: [14.28] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:09.836126+08:00] sql.INFO: [15.64] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:09.850599+08:00] sql.INFO: [13.19] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:15.338706+08:00] sql.INFO: [16.73] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:15.565839+08:00] sql.INFO: [226.08] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:15.582081+08:00] sql.INFO: [15.31] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:15.599010+08:00] sql.INFO: [15.53] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:41.726421+08:00] sql.INFO: [16.48] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:41.740935+08:00] sql.INFO: [13.55] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:41.757803+08:00] sql.INFO: [15.93] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:41.772957+08:00] sql.INFO: [13.86] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:51.850814+08:00] sql.INFO: [17.49] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:51.868045+08:00] sql.INFO: [16.12] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:51.886348+08:00] sql.INFO: [17.01] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:51.905808+08:00] sql.INFO: [17.94] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:52.976462+08:00] sql.INFO: [16.37] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:52.992868+08:00] sql.INFO: [15.55] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:53.010964+08:00] sql.INFO: [17.16] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:53.025150+08:00] sql.INFO: [12.83] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:54.066474+08:00] sql.INFO: [14.46] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:54.081674+08:00] sql.INFO: [14.41] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:54.098506+08:00] sql.INFO: [15.74] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:54.112596+08:00] sql.INFO: [12.65] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:52:58.646295+08:00] sql.INFO: [16.23] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:52:58.660878+08:00] sql.INFO: [13.45] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:52:58.679206+08:00] sql.INFO: [17.3] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:52:58.695606+08:00] sql.INFO: [14.67] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:53:44.873072+08:00] sql.INFO: [17.72] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:53:44.887904+08:00] sql.INFO: [13.88] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:53:44.903359+08:00] sql.INFO: [14.53] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:53:44.919165+08:00] sql.INFO: [14.35] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:54:25.849863+08:00] sql.INFO: [15.87] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:54:25.864864+08:00] sql.INFO: [14.1] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:54:25.881418+08:00] sql.INFO: [15.61] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:54:25.895423+08:00] sql.INFO: [12.87] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:55:05.799406+08:00] sql.INFO: [17.67] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:55:05.813587+08:00] sql.INFO: [13.04] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:55:05.828806+08:00] sql.INFO: [14.09] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:55:05.843269+08:00] sql.INFO: [13.12] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:55:40.325232+08:00] sql.INFO: [303.71] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:55:40.400564+08:00] sql.INFO: [74.5] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:55:40.503566+08:00] sql.INFO: [101.97] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:55:40.855889+08:00] sql.INFO: [351.13] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:55:45.033367+08:00] sql.INFO: [417.01] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:55:45.152454+08:00] sql.INFO: [98.55] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:55:45.254106+08:00] sql.INFO: [93.18] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:55:45.289036+08:00] sql.INFO: [33.33] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:56:22.810620+08:00] sql.INFO: [16.25] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:56:22.826644+08:00] sql.INFO: [15.12] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:56:22.844353+08:00] sql.INFO: [16.69] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:56:22.861901+08:00] sql.INFO: [16.06] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T17:56:27.390623+08:00] sql.INFO: [15.33] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T17:56:27.408351+08:00] sql.INFO: [16.67] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T17:56:27.426424+08:00] sql.INFO: [17.13] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T17:56:27.441821+08:00] sql.INFO: [14.04] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:07:57.956528+08:00] sql.INFO: [1296.94] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:07:57.990587+08:00] sql.INFO: [15.19] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:07:58.018879+08:00] sql.INFO: [16.78] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:07:58.039464+08:00] sql.INFO: [19.54] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:08:23.957737+08:00] sql.INFO: [17.66] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T18:08:23.974528+08:00] sql.INFO: [16.06] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-05T18:08:29.359302+08:00] sql.INFO: [17.08] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:08:29.377172+08:00] sql.INFO: [17] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:08:29.395800+08:00] sql.INFO: [17.71] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:08:29.412867+08:00] sql.INFO: [15.83] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:09:02.898934+08:00] sql.INFO: [17.01] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:09:02.917547+08:00] sql.INFO: [17.65] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:09:02.935041+08:00] sql.INFO: [16.67] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:09:02.953199+08:00] sql.INFO: [17.04] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:09:04.325240+08:00] sql.INFO: [17.44] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:09:04.342390+08:00] sql.INFO: [15.93] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:09:04.360799+08:00] sql.INFO: [17.35] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:09:04.378623+08:00] sql.INFO: [16.54] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:09:05.399791+08:00] sql.INFO: [17.05] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:09:05.420024+08:00] sql.INFO: [19.49] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:09:05.437698+08:00] sql.INFO: [16.81] select `template`.*, `template_class`.`name`, `template_class`.`id` as `class_id` from `template` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:09:05.455858+08:00] sql.INFO: [17.06] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:12:54.723052+08:00] sql.INFO: [76.44] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:12:54.763694+08:00] sql.INFO: [13.87] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:12:54.782437+08:00] sql.INFO: [14.65] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:12:54.801779+08:00] sql.INFO: [17.77] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:16:22.279665+08:00] sql.INFO: [56.1] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:16:22.293354+08:00] sql.INFO: [12.62] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:16:22.309002+08:00] sql.INFO: [14.43] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:16:22.324948+08:00] sql.INFO: [13.8] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:16:26.263464+08:00] sql.INFO: [16.04] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:16:26.277424+08:00] sql.INFO: [13.15] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:16:26.294999+08:00] sql.INFO: [16.58] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:16:26.310618+08:00] sql.INFO: [14.24] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:16:55.922777+08:00] sql.INFO: [15.54] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:16:55.937589+08:00] sql.INFO: [14.12] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:16:55.952794+08:00] sql.INFO: [14.28] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:16:55.967490+08:00] sql.INFO: [13.42] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:16:56.932383+08:00] sql.INFO: [16.77] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:16:56.946536+08:00] sql.INFO: [13.24] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:16:56.962572+08:00] sql.INFO: [15.1] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:16:56.976893+08:00] sql.INFO: [13.11] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:16:57.847633+08:00] sql.INFO: [15.16] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:16:57.861674+08:00] sql.INFO: [13.24] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:16:57.877223+08:00] sql.INFO: [14.69] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:16:57.893533+08:00] sql.INFO: [14.42] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T18:17:01.956947+08:00] sql.INFO: [17.13] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T18:17:01.971803+08:00] sql.INFO: [13.93] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T18:17:01.985925+08:00] sql.INFO: [13.16] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T18:17:02.003809+08:00] sql.INFO: [16.49] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:25:10.524484+08:00] sql.INFO: [58.74] select count(*) as aggregate from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' and `website`.`website_name` like '%网站%' [] []
+[2025-02-06T08:25:10.563393+08:00] sql.INFO: [16.75] select `website_template_info`.`id`, `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`action_id`, `website_template_info`.`created_at`, `website_template_info`.`updated_at`, `website_template_info`.`page_type`, COALESCE(website_template_info.status, 0) as template_status, `template`.`template_name` from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' and `website`.`website_name` like '%网站%' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:25:21.087670+08:00] sql.INFO: [14.97] select count(*) as aggregate from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' [] []
+[2025-02-06T08:25:21.105213+08:00] sql.INFO: [17.09] select `website_template_info`.`id`, `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`action_id`, `website_template_info`.`created_at`, `website_template_info`.`updated_at`, `website_template_info`.`page_type`, COALESCE(website_template_info.status, 0) as template_status, `template`.`template_name` from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:25:41.811967+08:00] sql.INFO: [15.61] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:25:41.830210+08:00] sql.INFO: [13.16] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:25:41.851788+08:00] sql.INFO: [17.31] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:25:41.876045+08:00] sql.INFO: [23.12] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:26:02.433824+08:00] sql.INFO: [16.49] select * from `template` where `id` = '1' limit 1 [] []
+[2025-02-06T08:26:02.450238+08:00] sql.INFO: [15.61] select * from `website` where `id` = '2' limit 1 [] []
+[2025-02-06T08:26:02.470987+08:00] sql.INFO: [13.64] update `website_template_info` set `template_id` = '1', `action_id` = '2', `website_template_info`.`updated_at` = '2025-02-06 08:26:02' where `website_id` = '2' [] []
+[2025-02-06T08:26:08.586198+08:00] sql.INFO: [17] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:26:08.601915+08:00] sql.INFO: [15] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:26:08.617604+08:00] sql.INFO: [14.93] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:26:08.633915+08:00] sql.INFO: [15.11] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:28:30.551475+08:00] sql.INFO: [1725.89] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:28:30.776529+08:00] sql.INFO: [223.9] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:28:31.498573+08:00] sql.INFO: [720.94] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:28:31.730053+08:00] sql.INFO: [229.27] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:28:35.841047+08:00] sql.INFO: [1189] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:28:35.909642+08:00] sql.INFO: [52.25] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:28:35.957111+08:00] sql.INFO: [42.3] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:28:36.027315+08:00] sql.INFO: [68.31] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:30:02.746653+08:00] sql.INFO: [63.42] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:30:02.779448+08:00] sql.INFO: [12.75] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:30:02.797290+08:00] sql.INFO: [13.17] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:30:02.812186+08:00] sql.INFO: [13.92] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:30:19.086796+08:00] sql.INFO: [16.02] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:30:19.101467+08:00] sql.INFO: [13.93] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:30:19.117570+08:00] sql.INFO: [15.33] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:30:19.133144+08:00] sql.INFO: [14.58] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:30:20.061560+08:00] sql.INFO: [17.09] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:30:20.076419+08:00] sql.INFO: [14.01] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:30:20.091320+08:00] sql.INFO: [13.99] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:30:20.105100+08:00] sql.INFO: [12.47] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:30:23.774312+08:00] sql.INFO: [66.05] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:30:23.804066+08:00] sql.INFO: [15.68] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:30:23.825433+08:00] sql.INFO: [15.8] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:30:23.843056+08:00] sql.INFO: [16.5] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:30:23.969839+08:00] sql.INFO: [15.77] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:30:23.992344+08:00] sql.INFO: [16.49] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:31:32.210030+08:00] sql.INFO: [71.1] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:31:32.245682+08:00] sql.INFO: [16.58] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:31:32.267483+08:00] sql.INFO: [17.61] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:31:32.286263+08:00] sql.INFO: [17.55] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:31:32.440960+08:00] sql.INFO: [16.71] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:31:32.463313+08:00] sql.INFO: [17.03] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:32:09.505072+08:00] sql.INFO: [16.65] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:32:09.520977+08:00] sql.INFO: [15.03] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:09.538613+08:00] sql.INFO: [16.93] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:32:09.556728+08:00] sql.INFO: [16.44] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:32:09.576081+08:00] sql.INFO: [16.35] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:09.593371+08:00] sql.INFO: [16.5] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:32:10.624776+08:00] sql.INFO: [16.3] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:32:10.639411+08:00] sql.INFO: [13.67] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:10.656379+08:00] sql.INFO: [15.95] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:32:10.674784+08:00] sql.INFO: [17.12] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:32:10.694734+08:00] sql.INFO: [16.93] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:10.713304+08:00] sql.INFO: [17.55] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:32:13.697785+08:00] sql.INFO: [64.1] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:32:13.730131+08:00] sql.INFO: [15.19] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:13.751617+08:00] sql.INFO: [16.52] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:32:13.765953+08:00] sql.INFO: [13.22] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:32:13.934397+08:00] sql.INFO: [16.19] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:32:13.956264+08:00] sql.INFO: [14.93] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:33:51.646826+08:00] sql.INFO: [62.8] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:33:51.680882+08:00] sql.INFO: [14.27] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:33:51.702533+08:00] sql.INFO: [16.12] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:33:51.717052+08:00] sql.INFO: [13.4] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:33:51.865803+08:00] sql.INFO: [14.4] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:33:51.885844+08:00] sql.INFO: [14.1] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:35:44.697167+08:00] sql.INFO: [52.87] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:35:44.711105+08:00] sql.INFO: [13.13] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:35:44.727507+08:00] sql.INFO: [15.37] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:35:44.741309+08:00] sql.INFO: [12.68] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:33.581756+08:00] sql.INFO: [63.68] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:33.614902+08:00] sql.INFO: [14.99] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:33.659320+08:00] sql.INFO: [39.59] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:33.676367+08:00] sql.INFO: [15.49] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:33.858351+08:00] sql.INFO: [42.27] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:33.881506+08:00] sql.INFO: [16.97] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:45.278783+08:00] sql.INFO: [17.13] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:45.293280+08:00] sql.INFO: [13.53] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:45.309250+08:00] sql.INFO: [14.82] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:45.325577+08:00] sql.INFO: [14.84] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:45.345260+08:00] sql.INFO: [16.69] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:45.362160+08:00] sql.INFO: [15.89] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:46.437491+08:00] sql.INFO: [16.51] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:46.453177+08:00] sql.INFO: [14.87] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:46.469882+08:00] sql.INFO: [15.94] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:46.487494+08:00] sql.INFO: [16.46] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:46.507580+08:00] sql.INFO: [17.04] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:46.524238+08:00] sql.INFO: [15.5] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:49.472431+08:00] sql.INFO: [56.65] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:49.503045+08:00] sql.INFO: [14.24] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:49.522079+08:00] sql.INFO: [14.46] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:49.537344+08:00] sql.INFO: [14.24] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:49.716596+08:00] sql.INFO: [14.33] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:49.739284+08:00] sql.INFO: [15.42] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:53.845156+08:00] sql.INFO: [17.25] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:53.858468+08:00] sql.INFO: [12.41] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:53.872435+08:00] sql.INFO: [13.19] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:53.886931+08:00] sql.INFO: [13.47] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:53.905878+08:00] sql.INFO: [16.1] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:53.920472+08:00] sql.INFO: [13.79] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:54.879176+08:00] sql.INFO: [16.69] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:54.893017+08:00] sql.INFO: [12.81] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:54.910105+08:00] sql.INFO: [16.03] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:54.924026+08:00] sql.INFO: [12.47] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:54.944018+08:00] sql.INFO: [17.09] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:54.960683+08:00] sql.INFO: [15.81] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:39:55.889188+08:00] sql.INFO: [15.93] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:39:55.903169+08:00] sql.INFO: [12.96] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:55.919828+08:00] sql.INFO: [15.65] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:39:55.934551+08:00] sql.INFO: [13.38] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:39:55.951383+08:00] sql.INFO: [13.83] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:39:55.968073+08:00] sql.INFO: [15.63] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:01.784859+08:00] sql.INFO: [16.16] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:01.799326+08:00] sql.INFO: [13.56] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:01.816949+08:00] sql.INFO: [16.81] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:01.832958+08:00] sql.INFO: [14.55] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:01.849396+08:00] sql.INFO: [13.49] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:01.863891+08:00] sql.INFO: [13.51] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:02.876317+08:00] sql.INFO: [16.09] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:02.891116+08:00] sql.INFO: [13.63] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:02.906863+08:00] sql.INFO: [14.66] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:03.135295+08:00] sql.INFO: [227.27] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:03.153570+08:00] sql.INFO: [15.26] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:03.170684+08:00] sql.INFO: [16.01] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:04.158626+08:00] sql.INFO: [15.26] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:04.385833+08:00] sql.INFO: [226.16] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:04.400399+08:00] sql.INFO: [12.91] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:04.415622+08:00] sql.INFO: [13.86] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:04.434083+08:00] sql.INFO: [15.2] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:04.450387+08:00] sql.INFO: [15.32] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:34.963043+08:00] sql.INFO: [15.6] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:34.976761+08:00] sql.INFO: [12.83] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:34.992549+08:00] sql.INFO: [14.81] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:35.006899+08:00] sql.INFO: [12.75] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:35.026310+08:00] sql.INFO: [16.2] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:35.041586+08:00] sql.INFO: [14.28] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:36.132290+08:00] sql.INFO: [14.62] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:36.146244+08:00] sql.INFO: [13.2] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:36.162856+08:00] sql.INFO: [15.69] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:36.178539+08:00] sql.INFO: [14.4] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:36.196703+08:00] sql.INFO: [15.34] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:36.212428+08:00] sql.INFO: [14.88] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:37.162844+08:00] sql.INFO: [14.98] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:37.176902+08:00] sql.INFO: [13.14] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:37.191578+08:00] sql.INFO: [13.78] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:37.206715+08:00] sql.INFO: [13.62] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:37.224978+08:00] sql.INFO: [15.19] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:37.239145+08:00] sql.INFO: [12.97] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:38.233422+08:00] sql.INFO: [16.27] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:38.248744+08:00] sql.INFO: [14.46] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:38.265618+08:00] sql.INFO: [15.9] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:38.280297+08:00] sql.INFO: [13.49] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:38.298477+08:00] sql.INFO: [15.48] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:38.312886+08:00] sql.INFO: [13.51] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:39.077637+08:00] sql.INFO: [13.48] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:39.091452+08:00] sql.INFO: [13.05] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:39.107901+08:00] sql.INFO: [15.7] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:39.123131+08:00] sql.INFO: [14.04] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:39.140955+08:00] sql.INFO: [14.77] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:39.155862+08:00] sql.INFO: [14.11] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:39.994138+08:00] sql.INFO: [16.1] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:40.010298+08:00] sql.INFO: [14.97] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:40.026166+08:00] sql.INFO: [14.86] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:40.040951+08:00] sql.INFO: [13.52] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:40.060802+08:00] sql.INFO: [16.9] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:40.075616+08:00] sql.INFO: [13.8] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:40:40.974522+08:00] sql.INFO: [16.32] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:40:40.988551+08:00] sql.INFO: [12.92] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:41.003785+08:00] sql.INFO: [14.23] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:40:41.017559+08:00] sql.INFO: [12.51] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:40:41.037579+08:00] sql.INFO: [17.13] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:40:41.052861+08:00] sql.INFO: [14.24] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:41:09.167648+08:00] sql.INFO: [15.87] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:41:09.182053+08:00] sql.INFO: [13.51] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:41:09.198317+08:00] sql.INFO: [15.29] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:41:09.212610+08:00] sql.INFO: [12.99] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:41:09.229427+08:00] sql.INFO: [14.04] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:41:09.245202+08:00] sql.INFO: [14.83] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:41:12.562055+08:00] sql.INFO: [63.58] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:41:12.592130+08:00] sql.INFO: [14.1] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:41:12.610092+08:00] sql.INFO: [13.77] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:41:12.624037+08:00] sql.INFO: [12.74] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:41:12.819731+08:00] sql.INFO: [15.4] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:41:13.056804+08:00] sql.INFO: [230.91] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:42:44.130792+08:00] sql.INFO: [323.6] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:42:44.162162+08:00] sql.INFO: [15.27] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:42:44.183828+08:00] sql.INFO: [17.53] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:42:44.201110+08:00] sql.INFO: [16.06] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:42:44.379230+08:00] sql.INFO: [33.69] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:42:44.443973+08:00] sql.INFO: [58.83] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:44:15.131861+08:00] sql.INFO: [1079.42] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:44:15.148056+08:00] sql.INFO: [14.97] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:44:15.164142+08:00] sql.INFO: [15.22] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:44:15.178244+08:00] sql.INFO: [12.81] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:44:15.196972+08:00] sql.INFO: [15.84] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:44:15.211883+08:00] sql.INFO: [14.09] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:44:57.785299+08:00] sql.INFO: [276.64] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:44:57.816820+08:00] sql.INFO: [12.95] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:44:57.836586+08:00] sql.INFO: [14.66] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:44:57.850806+08:00] sql.INFO: [12.9] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:44:58.074584+08:00] sql.INFO: [45.17] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:44:58.308413+08:00] sql.INFO: [228.74] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:45:20.704883+08:00] sql.INFO: [15.4] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:45:20.720673+08:00] sql.INFO: [14.88] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:45:20.738058+08:00] sql.INFO: [16.41] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:45:20.756086+08:00] sql.INFO: [16.7] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:45:20.785158+08:00] sql.INFO: [26.06] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:45:20.803859+08:00] sql.INFO: [16.2] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:45:24.048003+08:00] sql.INFO: [71.01] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:45:24.081512+08:00] sql.INFO: [15.91] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:45:24.103380+08:00] sql.INFO: [16.29] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:45:24.125825+08:00] sql.INFO: [21.2] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:45:24.274270+08:00] sql.INFO: [17.44] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:45:24.296947+08:00] sql.INFO: [17.64] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:50:56.622361+08:00] sql.INFO: [61.87] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:50:56.657701+08:00] sql.INFO: [13.24] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:50:56.677970+08:00] sql.INFO: [15.29] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:50:56.693731+08:00] sql.INFO: [14.58] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:50:56.857555+08:00] sql.INFO: [16.1] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:50:56.878946+08:00] sql.INFO: [14.51] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:50:58.356354+08:00] sql.INFO: [16.02] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:50:58.371063+08:00] sql.INFO: [13.97] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:50:58.388773+08:00] sql.INFO: [16.96] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:50:58.404761+08:00] sql.INFO: [14.57] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:50:58.424337+08:00] sql.INFO: [16.49] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:50:58.440849+08:00] sql.INFO: [15.56] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:51:07.009947+08:00] sql.INFO: [15.09] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:51:07.023985+08:00] sql.INFO: [13.07] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:07.040898+08:00] sql.INFO: [15.72] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:51:07.055464+08:00] sql.INFO: [13.15] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:51:07.073329+08:00] sql.INFO: [15.1] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:07.088919+08:00] sql.INFO: [14.68] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:51:10.235726+08:00] sql.INFO: [60.52] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:51:10.264779+08:00] sql.INFO: [13.15] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:10.283810+08:00] sql.INFO: [14.59] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:51:10.299287+08:00] sql.INFO: [14.28] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:51:10.458180+08:00] sql.INFO: [14.17] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:10.476907+08:00] sql.INFO: [13.02] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:51:28.862192+08:00] sql.INFO: [16.39] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:51:28.876250+08:00] sql.INFO: [13.03] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:28.890659+08:00] sql.INFO: [13.62] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 2 offset 0 [] []
+[2025-02-06T08:51:28.904797+08:00] sql.INFO: [13.06] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:51:28.922871+08:00] sql.INFO: [15.27] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:28.937470+08:00] sql.INFO: [13.7] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:51:47.849543+08:00] sql.INFO: [849.17] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:51:47.865093+08:00] sql.INFO: [14.35] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:47.898939+08:00] sql.INFO: [32.66] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T08:51:48.129636+08:00] sql.INFO: [229.14] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:51:48.152194+08:00] sql.INFO: [19.61] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:51:48.167700+08:00] sql.INFO: [14.51] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:52:55.418869+08:00] sql.INFO: [695.15] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:52:55.651204+08:00] sql.INFO: [230.27] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:52:55.668786+08:00] sql.INFO: [16.18] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 2 offset 0 [] []
+[2025-02-06T08:52:55.684882+08:00] sql.INFO: [14.9] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:52:56.034234+08:00] sql.INFO: [346.49] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:52:56.053435+08:00] sql.INFO: [17.39] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:53:01.839192+08:00] sql.INFO: [16.56] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:53:01.853611+08:00] sql.INFO: [13.77] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:53:01.870134+08:00] sql.INFO: [15.78] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T08:53:01.884315+08:00] sql.INFO: [13.47] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:53:01.908414+08:00] sql.INFO: [21.23] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:53:01.924678+08:00] sql.INFO: [15.31] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:53:04.148940+08:00] sql.INFO: [15.37] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:53:04.166872+08:00] sql.INFO: [17.13] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:53:04.228781+08:00] sql.INFO: [60.96] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T08:53:04.300406+08:00] sql.INFO: [70.57] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:53:04.372165+08:00] sql.INFO: [68.86] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:53:04.441574+08:00] sql.INFO: [68.43] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T08:54:01.295104+08:00] sql.INFO: [902.39] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T08:54:01.328972+08:00] sql.INFO: [13.77] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:54:01.559417+08:00] sql.INFO: [225.13] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T08:54:01.575213+08:00] sql.INFO: [14.75] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-06T08:54:01.835871+08:00] sql.INFO: [120.61] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T08:54:01.858431+08:00] sql.INFO: [16] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.`page_type`, `website_template_info`.`website_id` from `website_template_info` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where (`website_template_info`.`website_id` = '2' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"7"}')) limit 1 [] []
+[2025-02-06T09:05:10.544595+08:00] sql.INFO: [274.54] select count(*) as aggregate from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' [] []
+[2025-02-06T09:05:10.588610+08:00] sql.INFO: [40.17] select `website_template_info`.`id`, `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`action_id`, `website_template_info`.`created_at`, `website_template_info`.`updated_at`, `website_template_info`.`page_type`, COALESCE(website_template_info.status, 0) as template_status, `template`.`template_name` from `website` left join `website_template_info` on `website_template_info`.`website_id` = `website`.`id` left join `template` on `template`.`id` = `website_template_info`.`template_id` left join `template_class` on `template_class`.`id` = `template`.`template_class_id` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []