rkljw 2 months ago
parent
commit
b9995402c0

+ 153 - 111
app/JsonRpc/WebsiteService.php

@@ -21,6 +21,7 @@ use App\Model\WebsiteCategory;
 use App\Model\WebsiteTemplate;
 use App\Model\WebsiteTemplate;
 use App\Model\WebsiteTemplateInfo;
 use App\Model\WebsiteTemplateInfo;
 use Hamcrest\Arrays\IsArray;
 use Hamcrest\Arrays\IsArray;
+use PhpParser\Node\Stmt\Return_;
 
 
 use function PHPUnit\Framework\isNull;
 use function PHPUnit\Framework\isNull;
 // use Illuminate\Support\Facades\DB;
 // use Illuminate\Support\Facades\DB;
@@ -1091,22 +1092,25 @@ class WebsiteService implements WebsiteServiceInterface
         $query = Website::where('website.status', 1)
         $query = Website::where('website.status', 1)
             ->leftJoin("website_template_info", "website_template_info.website_id", "website.id")
             ->leftJoin("website_template_info", "website_template_info.website_id", "website.id")
             ->leftJoin("template", "template.id", "website_template_info.template_id")
             ->leftJoin("template", "template.id", "website_template_info.template_id")
+            ->leftJoin("template_class", "template_class.id", "template.template_class_id")
             ->select(
             ->select(
+                "website_template_info.id",
+                "template_class.name",
+                "website.id as website_id",
                 "website.website_name",
                 "website.website_name",
                 "website.website_url",
                 "website.website_url",
-                "website_template_info.id as tid",
+                "website_template_info.action_id",
                 "website_template_info.created_at",
                 "website_template_info.created_at",
                 "website_template_info.updated_at",
                 "website_template_info.updated_at",
                 "website_template_info.page_type",
                 "website_template_info.page_type",
                 DB::raw("COALESCE(website_template_info.status, 0) as template_status"),
                 DB::raw("COALESCE(website_template_info.status, 0) as template_status"),
                 "template.template_name"
                 "template.template_name"
             );
             );
-
         //若存在条件;则在$query的基础上进行筛选
         //若存在条件;则在$query的基础上进行筛选
-        if (isset($data['website_name'])) {
+        if(isset($data['website_name']) && !empty($data['website_name'])){
             $query->where('website.website_name', 'like', '%' . $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']);
             $query->where('website_template_info.status', $data['status']);
         }
         }
         $count = $query->count();
         $count = $query->count();
@@ -1149,7 +1153,33 @@ class WebsiteService implements WebsiteServiceInterface
         if (empty($website['website_column_id'])) {
         if (empty($website['website_column_id'])) {
             return Result::error("请先关联导航池!", 0);
             return Result::error("请先关联导航池!", 0);
         }
         }
-        if (isset($data['page_type'])) {
+         // 获取此网站的底部导航  类型   type:  0:内容型底部导航(只有一条详情内容);1:列表型底部导航(可以有多条详情内容)
+         $foot_type = FooterCategory::where('website_id',$data['website_id'])->pluck('type')->toArray();
+         if (empty($foot_type)) {
+             return Result::error("请先关联底部导航池!", 0);
+         } elseif (in_array(1, $foot_type)) {
+             $foot_type = 1;
+         } else {
+             $foot_type = 0;
+         }
+         $result['foot_type'] = $foot_type;
+         //  友情链接类型'1:图片 2:文字 3:底部';
+         $types = Link::where('website_id', $data['website_id'])->pluck('type')->toArray();
+         $missingTypes = [];
+         if (!in_array(1, $types)) {
+             $missingTypes[] = "文字链接";
+         }
+         if (!in_array(2, $types)) {
+             $missingTypes[] = "图片链接";
+         }
+         if (!in_array(3, $types)) {
+             $missingTypes[] = "底部链接";
+         }
+         if (!empty($missingTypes)) {
+             $errorMessage = "请先添加 " . implode(" 和 ", $missingTypes) . "!";
+             return Result::error($errorMessage, 0);
+         }
+        if(isset($data['page_type'])){
             // 删除重复元素并重新索引数组
             // 删除重复元素并重新索引数组
             $data['page_type'] = array_unique($data['page_type']);
             $data['page_type'] = array_unique($data['page_type']);
             $data['page_type'] = array_values($data['page_type']);
             $data['page_type'] = array_values($data['page_type']);
@@ -1158,41 +1188,16 @@ class WebsiteService implements WebsiteServiceInterface
                 $info = WebsiteTemplateInfo::where('website_id', $data['website_id'])->first();
                 $info = WebsiteTemplateInfo::where('website_id', $data['website_id'])->first();
                 if (empty($info)) {
                 if (empty($info)) {
                     // 将数组转换为 JSON 字符串
                     // 将数组转换为 JSON 字符串
-                    $data['page_type'] = json_encode($data['page_type']) ?? '';
+                    $data['page_type'] = json_encode($data['page_type'])??'';
+                    // 操作状态:1:填写完成基础信息;2:选择完成模板;0:未构建
+                    $data['action_id'] = 1;
                     $result = WebsiteTemplateInfo::insertGetId($data);
                     $result = WebsiteTemplateInfo::insertGetId($data);
                 } else {
                 } else {
-                    return Result::error("该网站已经存在首页和底部导航详情页!", 0);
-                }
+                    return Result::error("该网站已经构建过了!", 0);
+                } 
             } else {
             } else {
                 return Result::error("请先选择首页和底部导航详情页!", 0);
                 return Result::error("请先选择首页和底部导航详情页!", 0);
             }
             }
-        } else {
-            // 获取此网站的底部导航  类型   type:  0:内容型底部导航(只有一条详情内容);1:列表型底部导航(可以有多条详情内容)
-            $foot_type = FooterCategory::where('website_id', $data['website_id'])->pluck('type')->toArray();
-            if (empty($foot_type)) {
-                return Result::error("请先关联导航池!", 0);
-            } elseif (in_array(1, $foot_type)) {
-                $foot_type = 1;
-            } else {
-                $foot_type = 0;
-            }
-            $result['foot_type'] = $foot_type;
-            //  友情链接类型'1:图片 2:文字 3:底部';
-            $types = Link::where('website_id', $data['website_id'])->pluck('type')->toArray();
-            $missingTypes = [];
-            if (!in_array(1, $types)) {
-                $missingTypes[] = "文字链接";
-            }
-            if (!in_array(2, $types)) {
-                $missingTypes[] = "图片链接";
-            }
-            if (!in_array(3, $types)) {
-                $missingTypes[] = "底部链接";
-            }
-            if (!empty($missingTypes)) {
-                $errorMessage = "请先添加 " . implode(" 和 ", $missingTypes) . "!";
-                return Result::error($errorMessage, 0);
-            }
         }
         }
         if (empty($result)) {
         if (empty($result)) {
             return Result::error("添加失败!", 0);
             return Result::error("添加失败!", 0);
@@ -1207,17 +1212,18 @@ class WebsiteService implements WebsiteServiceInterface
      */
      */
     public function getWebsiteTemplateintel(array $data): array
     public function getWebsiteTemplateintel(array $data): array
     {
     {
-
-        $result = WebsiteTemplateInfo::where('website_template_info.id', $data['id'])
-            ->leftJoin('footer_category', 'footer_category.website_id', 'website_template_info.website_id')
-            ->leftJoin('website', 'website.id', 'website_template_info.website_id')
-            ->select(
-                "website_template_info.*",
-                "footer_category.type",
-                "website.website_name"
-            )
-            ->first();
-        if (empty($result['website_name'])) {
+       
+        $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(
+            "website_template_info.*",
+            "footer_category.type",
+            "website.website_name",
+            "website.id as website_id"
+        )
+        ->first();
+        if(empty($result['website_name'])){
             return Result::error("请输入正确的网站id!", 0);
             return Result::error("请输入正确的网站id!", 0);
         }
         }
         if ($result) {
         if ($result) {
@@ -1231,7 +1237,7 @@ class WebsiteService implements WebsiteServiceInterface
      * 修改网站基础信息
      * 修改网站基础信息
      *
      *
      * @return array
      * @return array
-     */
+    */
     public function upWebsiteTemplateintel(array $data): array
     public function upWebsiteTemplateintel(array $data): array
     {
     {
         $web = Website::where('website.id', $data['website_id'])->first();
         $web = Website::where('website.id', $data['website_id'])->first();
@@ -1286,21 +1292,22 @@ class WebsiteService implements WebsiteServiceInterface
      */
      */
     public function getWebsiteTemplateList(array $data): array
     public function getWebsiteTemplateList(array $data): array
     {
     {
-        $website = Website::where('website.id', $data['website_id'])->first();
-        if (empty($website)) {
-            $message = "请输入正确的网站id!";
-        } else {
-            $page_type = WebsiteTemplateInfo::where('website_id', $data['website_id'])->select('page_type')->first();
-            if (empty($page_type)) {
-                $message = "此网站还未添加基础信息!";
-            } else {
+
+        $website = Website::where('website.id',$data['website_id'])->first();
+        if(empty($website)){
+            return Result::error("请输入正确的网站id!",0);
+        }else{
+            $page_type = WebsiteTemplateInfo::where('website_id',$data['website_id'])->select('page_type')->first();
+            if(empty($page_type)){
+                return Result::error("此网站还未添加基础信息!",0);
+            } else{
                 $where = json_decode($page_type['page_type'], true);
                 $where = json_decode($page_type['page_type'], true);
-                // $where = $data["page_type"];
-                if (isset($data['template_class_id'])) {
-                    $template_class = TemplateClass::where('id', $data['template_class_id'])->first();
-                    if (empty($template_class)) {
-                        $message = "请输入正确的模板风格id!";
-                    } else {
+                 // $where = $data["page_type"];
+                if(isset($data['template_class_id']) && !empty($data['template_class_id'])){
+                    $template_class = TemplateClass::where('id',$data['template_class_id'])->first();
+                    if(empty($template_class)){
+                        return Result::error("请输入正确的模板风格id!",0);
+                    }else{
                         // 获取指定风格下的模板
                         // 获取指定风格下的模板
                         $rep = Template::where('template_class_id', $data['template_class_id'])
                         $rep = Template::where('template_class_id', $data['template_class_id'])
                             ->where(function ($query) use ($where) {
                             ->where(function ($query) use ($where) {
@@ -1308,8 +1315,6 @@ class WebsiteService implements WebsiteServiceInterface
                                     $query->whereJsonContains('template_img', ['value' => $value]);
                                     $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'])
                             ->limit($data['pageSize'])
                             ->offset(($data['page'] - 1) * $data['pageSize'])
                             ->offset(($data['page'] - 1) * $data['pageSize'])
                             ->orderBy("template.updated_at", "desc")
                             ->orderBy("template.updated_at", "desc")
@@ -1321,40 +1326,58 @@ class WebsiteService implements WebsiteServiceInterface
                                 }
                                 }
                             })->count();
                             })->count();
                     }
                     }
-                } else {
+                }else{
+
                     //获取所有模板
                     //获取所有模板
                     $rep = Template::where(function ($query) use ($where) {
                     $rep = Template::where(function ($query) use ($where) {
+                                foreach ($where as $value) {
+                                    $query->whereJsonContains('template_img', ['value' => $value]);
+                                }
+                            })
+                            ->limit($data['pageSize'])
+                            ->offset(($data['page'] - 1) * $data['pageSize'])
+                            ->orderBy("template.updated_at", "desc")
+                            ->get();
+                    $count = Template::where(function ($query) use ($where) {
                         foreach ($where as $value) {
                         foreach ($where as $value) {
                             $query->whereJsonContains('template_img', ['value' => $value]);
                             $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")
-                        ->get();
-                    $count = Template::where('template_class_id', $data['template_class_id'])
-                        ->where(function ($query) use ($where) {
-                            foreach ($where as $value) {
-                                $query->whereJsonContains('template_img', ['value' => $value]);
-                            }
-                        })->count();
-
+                    })->count();
+                        
+                    
                 }
                 }
-                if (empty($rep) || $rep->count() == 0) {
-                    $message = "没有查找到相关数据!";
-                } else {
+                if(empty($rep) || $rep->count()==0){
+                    return Result::error("没有查找到相关数据!",0);
+                }else{
                     // 过滤 template_img 字段 只获取 基础信息中 包含的模板图片
                     // 过滤 template_img 字段 只获取 基础信息中 包含的模板图片
+                    // $rep->each(function ($item) use ($where) {
+                    //     $template_img = json_decode($item->template_img, true);
+                    //     if(is_array($template_img)){
+                    //         $filtered_img = array_filter($template_img, function ($img) use ($where) {
+                    //             return isset($img['value']) && in_array($img['value'], $where);
+                    //         });
+                    //     }   
+                                            
+                    //     $item->template_img = $filtered_img;
+                    // });
+                    // $result = [
+                    //     "rows" => $rep->toArray(),
+                    //     "count" => $count
+                    // ];
                     $rep->each(function ($item) use ($where) {
                     $rep->each(function ($item) use ($where) {
                         $template_img = json_decode($item->template_img, true);
                         $template_img = json_decode($item->template_img, true);
                         if (is_array($template_img)) {
                         if (is_array($template_img)) {
                             $filtered_img = array_filter($template_img, function ($img) use ($where) {
                             $filtered_img = array_filter($template_img, function ($img) use ($where) {
                                 return isset($img['value']) && in_array($img['value'], $where);
                                 return isset($img['value']) && in_array($img['value'], $where);
                             });
                             });
+                            // 对过滤后的数组进行重新排序
+                            $sorted_img = array_values($filtered_img);
+                            $item->template_img = $sorted_img;
+                        } else {
+                            $item->template_img = []; // 如果无法解码为数组,则设置为空数组
                         }
                         }
-                        $item->template_img = $filtered_img;
                     });
                     });
+                    
                     $result = [
                     $result = [
                         "rows" => $rep->toArray(),
                         "rows" => $rep->toArray(),
                         "count" => $count,
                         "count" => $count,
@@ -1362,11 +1385,8 @@ class WebsiteService implements WebsiteServiceInterface
                 }
                 }
             }
             }
         }
         }
-        if (!empty($message)) {
-            return Result::error($message, 0);
-        } else {
             return Result::success($result);
             return Result::success($result);
-        }
+            
     }
     }
 
 
     /**
     /**
@@ -1384,10 +1404,10 @@ class WebsiteService implements WebsiteServiceInterface
             return Result::error("请输入正确的网站id", 0);
             return Result::error("请输入正确的网站id", 0);
         }
         }
 
 
-        $result = WebsiteTemplateInfo::where('website_id', $data['website_id'])->update(['template_id' => $data['template_id']]);
-        if (empty($result)) {
-            return Result::error("添加失败", 0);
-        } else {
+        $result = WebsiteTemplateInfo::where('website_id',$data['website_id'])->update(['template_id'=>$data['template_id'],'action_id'=>2]);
+        if(empty($result)){
+            return Result::error("添加失败",0);
+        }else{
             return Result::success($result);
             return Result::success($result);
         }
         }
 
 
@@ -1408,33 +1428,55 @@ class WebsiteService implements WebsiteServiceInterface
             ['website_template_info.website_id', $data['website_id']],
             ['website_template_info.website_id', $data['website_id']],
             ['template_id', '!=', null],
             ['template_id', '!=', null],
         ])
         ])
-            ->leftJoin('template', 'template.id', 'website_template_info.template_id')
-            ->leftJoin('template_class', 'template_class.id', 'template.template_class_id')
-            ->where(function ($query) use ($page_type) {
-                // 假设 $data['page_type'] 是一个数组,包含需要匹配的 page_type 值
-                foreach ($page_type as $pageType) {
-                    $query->orWhereJsonContains('template.template_img', ['value' => $pageType]);
-                }
-            })
-            ->select(
-                'template.template_name',
-                'template.template_img',
-                'template.id as tid', 'template_class.name',
-                'template_class.id as class_id',
-                'website_template_info.*')
-            ->first();
+        ->leftJoin('template','template.id','website_template_info.template_id')
+        ->leftJoin('template_class','template_class.id','template.template_class_id')
+        ->where(function ($query) use ($page_type) {
+            // 假设 $data['page_type'] 是一个数组,包含需要匹配的 page_type 值
+            foreach ($page_type as $pageType) {
+                $query->orWhereJsonContains('template.template_img', ['value' => $pageType]);
+            }
+        })
+        ->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')
+        ->first();
+        // return Result::success($result);
         // 过滤 template_img 字段  只获取 基础信息中 包含的模板图片
         // 过滤 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) {
         foreach ($template_img as $key => $value) {
             if (!in_array($value['value'], $page_type)) {
             if (!in_array($value['value'], $page_type)) {
                 unset($template_img[$key]);
                 unset($template_img[$key]);
             }
             }
         }
         }
-        $result['template_img'] = $template_img;
-        if (empty($result)) {
-            return Result::error("没有查找到相关数据", 0);
-        } else {
+        // return Result::success($result);
+        $result['template_img'] = array_values($template_img);
+        $result['page_type'] = $page_type;
+
+        // $templateList = $this->getWebsiteTemplateList($data);
+        // $count = $templateList['data']['count']??'';
+        // $pages = $count / $data['pageSize'];
+        // $found = false;
+        // while ($pages && !$found) {
+        //     $templates = $this->getWebsiteTemplateList($pages,$data['pageSize']);
+        //     $index = array_search($template['template_id'], array_column($templates['rows'], 'id'));
+        //     if ($index !== false) {
+        //         $found = true;
+        //         $result['page'] = $pages;
+        //         $pages = 0;
+        //         // echo "查询到的 template 在第 $page 页";
+        //     }
+        //     $pages--;
+        // }
+
+        if(empty($result)){
+            return Result::error("没有查找到相关数据",0);
+        }else{
             return Result::success($result);
             return Result::success($result);
         }
         }
     }
     }

File diff suppressed because it is too large
+ 1 - 0
runtime/container/scan.cache


+ 0 - 1
runtime/hyperf.pid

@@ -1 +0,0 @@
-1026

+ 883 - 0
runtime/logs/hyperf.log

@@ -2614,3 +2614,886 @@
 [2025-01-23T17:01:03.607193+08:00] sql.INFO: [126.33] select `website_name`, `id` from `website` [] []
 [2025-01-23T17:01:03.607193+08:00] sql.INFO: [126.33] select `website_name`, `id` from `website` [] []
 [2025-01-23T17:01:03.715546+08:00] sql.INFO: [103.36] select `footer_category`.*, `website`.`website_name`, `website`.`id` as `website_id` from `footer_category` left join `website` on `website`.`id` = `footer_category`.`website_id` where `footer_category`.`id` = '55' limit 1 [] []
 [2025-01-23T17:01:03.715546+08:00] sql.INFO: [103.36] select `footer_category`.*, `website`.`website_name`, `website`.`id` as `website_id` from `footer_category` left join `website` on `website`.`id` = `footer_category`.`website_id` where `footer_category`.`id` = '55' limit 1 [] []
 [2025-01-23T17:03:12.194569+08:00] sql.INFO: [517.93] select `website_name`, `id` from `website` [] []
 [2025-01-23T17:03:12.194569+08:00] sql.INFO: [517.93] select `website_name`, `id` from `website` [] []
+[2025-02-05T13:20:39.601201+08:00] sql.INFO: [63.82] 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` where `website`.`status` = '1' [] []
+[2025-02-05T13:20:39.622661+08:00] sql.INFO: [16.61] select `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T13:26:19.580951+08:00] sql.INFO: [60.23] select * from `website` where `website`.`id` = '7' limit 1 [] []
+[2025-02-05T13:26:25.962359+08:00] sql.INFO: [16.94] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-05T13:26:25.986986+08:00] sql.INFO: [17.1] select * from `website_template_info` where `website_id` = '5' limit 1 [] []
+[2025-02-05T13:26:31.537274+08:00] sql.INFO: [19.74] select * from `website` where `website`.`id` = '3' limit 1 [] []
+[2025-02-05T13:26:31.556596+08:00] sql.INFO: [18.28] select * from `website_template_info` where `website_id` = '3' limit 1 [] []
+[2025-02-05T13:26:39.049284+08:00] sql.INFO: [18.87] select * from `website` where `website`.`id` = '13' limit 1 [] []
+[2025-02-05T13:27:51.330332+08:00] sql.INFO: [60.4] 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` where `website`.`status` = '1' [] []
+[2025-02-05T13:27:51.350476+08:00] sql.INFO: [14.09] select `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T13:28:12.197278+08:00] sql.INFO: [15.08] 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` where `website`.`status` = '1' and `website`.`website_name` like '%测试%' [] []
+[2025-02-05T13:28:12.213284+08:00] sql.INFO: [15.25] select `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' and `website`.`website_name` like '%测试%' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T13:29:13.762463+08:00] sql.INFO: [58.88] 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` where `website`.`status` = '1' and `website`.`website_name` like '%网站%' [] []
+[2025-02-05T13:29:13.778605+08:00] sql.INFO: [15.43] select `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' and `website`.`website_name` like '%网站%' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T13:30:49.794194+08:00] sql.INFO: [62.18] 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` where `website`.`status` = '1' [] []
+[2025-02-05T13:30:49.812060+08:00] sql.INFO: [17.09] select `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T13:32:38.185764+08:00] sql.INFO: [59.46] select * from `website` where `website`.`id` = '13' limit 1 [] []
+[2025-02-05T13:32:44.450439+08:00] sql.INFO: [19.09] select `website_template_info`.*, `footer_category`.`type`, `website`.`website_name` from `website_template_info` left join `footer_category` on `footer_category`.`website_id` = `website_template_info`.`website_id` left join `website` on `website`.`id` = `website_template_info`.`website_id` where `website_template_info`.`id` = '1' limit 1 [] []
+[2025-02-05T13:36:36.989273+08:00] sql.INFO: [62.56] select * from `website` where `website`.`id` = '100' limit 1 [] []
+[2025-02-05T13:36:45.104784+08:00] sql.INFO: [17.51] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:36:45.122759+08:00] sql.INFO: [16.93] select * from `website_template_info` where (`website_id` = '1') limit 1 [] []
+[2025-02-05T13:36:50.157794+08:00] sql.INFO: [17.18] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:36:50.176342+08:00] sql.INFO: [17.57] select * from `website_template_info` where (`website_id` = '1') limit 1 [] []
+[2025-02-05T13:36:50.209625+08:00] sql.INFO: [16.28] update `website_template_info` set `page_type` = '["1","2","7"]', `statement` = '不是一个人的王者,而是团队的荣耀!', `organizer` = '王者荣耀', `copyright_information` = '全军出击', `project_logo` = 'Timi', `record_number` = '666777777', `record_number_url` = '请文明发言', `icp_number` = '您已被举报!', `icp_number_url` = '您已被禁言!', `customer_service_qq` = '46132135464', `communications` = '46846844684', `website_template_info`.`updated_at` = '2025-02-05 13:36:50' where (`website_id` = '1') [] []
+[2025-02-05T13:36:59.383254+08:00] sql.INFO: [19.33] select `website_template_info`.*, `footer_category`.`type`, `website`.`website_name` from `website_template_info` left join `footer_category` on `footer_category`.`website_id` = `website_template_info`.`website_id` left join `website` on `website`.`id` = `website_template_info`.`website_id` where `website_template_info`.`id` = '1' limit 1 [] []
+[2025-02-05T13:37:14.875169+08:00] sql.INFO: [16.31] select * from `template_class` [] []
+[2025-02-05T13:37:23.098532+08:00] sql.INFO: [17.55] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:37:23.114528+08:00] sql.INFO: [15.15] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-05T13:37:23.131179+08:00] sql.INFO: [15.74] select * from `template_class` where `id` = '1' limit 1 [] []
+[2025-02-05T13:37:23.154080+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 `template_class_id` = '1' and (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-05T13:37:23.173207+08:00] sql.INFO: [17.22] select count(*) as aggregate from `template` where `template_class_id` = '1' and (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T13:38:19.825636+08:00] sql.INFO: [17.72] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:38:19.842219+08:00] sql.INFO: [15.76] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-05T13:38:19.860617+08:00] sql.INFO: [17.39] 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-05T13:38:24.119368+08:00] sql.INFO: [18.11] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:38:24.137287+08:00] sql.INFO: [17.1] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-05T13:38:24.153518+08:00] sql.INFO: [15.45] select * from `template_class` where `id` = '1' limit 1 [] []
+[2025-02-05T13:38:24.170770+08:00] sql.INFO: [16.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 `template_class_id` = '1' and (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-05T13:38:24.185820+08:00] sql.INFO: [13.92] select count(*) as aggregate from `template` where `template_class_id` = '1' and (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T13:38:43.309035+08:00] sql.INFO: [16.89] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T13:38:43.325267+08:00] sql.INFO: [15.35] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-05T13:38:43.625638+08:00] sql.INFO: [299.22] 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-05T13:55:49.150417+08:00] sql.INFO: [63.3] 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` where `website`.`status` = '1' [] []
+[2025-02-05T13:55:49.173930+08:00] sql.INFO: [18.23] select `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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` where `website`.`status` = '1' order by `website_template_info`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T14:40:06.344808+08:00] sql.INFO: [68] select * from `website_template_info` where `website_id` = '10' limit 1 [] []
+[2025-02-05T14:40:06.385710+08:00] sql.INFO: [17.18] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.* 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` = '10' 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-05T14:40:14.097329+08:00] sql.INFO: [16.61] 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-05T14:40:14.129932+08:00] sql.INFO: [31.93] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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-05T14:41:51.743022+08:00] sql.INFO: [1056.08] 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-05T14:41:51.759699+08:00] sql.INFO: [15.72] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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-05T15:07:17.538528+08:00] sql.INFO: [62.75] 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-05T15:07:17.561568+08:00] sql.INFO: [18.46] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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-05T15:10:34.502878+08:00] sql.INFO: [60.72] 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-05T15:10:34.521688+08:00] sql.INFO: [18.14] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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-05T15:13:01.490794+08:00] sql.INFO: [87.37] select * from `website` where `website`.`id` = '13' limit 1 [] []
+[2025-02-05T15:13:07.863442+08:00] sql.INFO: [16.72] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T15:13:07.888007+08:00] sql.INFO: [15.61] select `type` from `footer_category` where `website_id` = '1' [] []
+[2025-02-05T15:13:07.907798+08:00] sql.INFO: [15.57] select `type` from `link` where `website_id` = '1' [] []
+[2025-02-05T15:13:16.441353+08:00] sql.INFO: [17.2] select * from `website` where `website`.`id` = '3' limit 1 [] []
+[2025-02-05T15:13:16.457608+08:00] sql.INFO: [15.27] select `type` from `footer_category` where `website_id` = '3' [] []
+[2025-02-05T15:13:22.687037+08:00] sql.INFO: [16.36] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-05T15:13:22.702412+08:00] sql.INFO: [14.68] select `type` from `footer_category` where `website_id` = '5' [] []
+[2025-02-05T15:13:22.718563+08:00] sql.INFO: [15.6] select `type` from `link` where `website_id` = '5' [] []
+[2025-02-05T15:19:38.785835+08:00] sql.INFO: [53.2] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T15:19:38.799952+08:00] sql.INFO: [13.21] select `type` from `footer_category` where `website_id` = '1' [] []
+[2025-02-05T15:19:38.814414+08:00] sql.INFO: [13.8] select `type` from `link` where `website_id` = '1' [] []
+[2025-02-05T15:20:33.320316+08:00] sql.INFO: [14.25] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:20:33.335133+08:00] sql.INFO: [13.95] select `type` from `footer_category` where `website_id` = '2' [] []
+[2025-02-05T15:20:33.348418+08:00] sql.INFO: [12.76] select `type` from `link` where `website_id` = '2' [] []
+[2025-02-05T15:20:33.369749+08:00] sql.INFO: [14.25] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:20:33.386248+08:00] sql.INFO: [15.92] insert into `website_template_info` (`website_id`, `page_type`, `statement`, `organizer`, `copyright_information`, `contact_number`, `company_address`, `project_logo`, `project_name`, `project_url`, `company_logo`, `company_name`, `company_url`, `record_number`, `record_number_url`, `icp_number`, `icp_number_url`, `customer_service_qq`, `communications`, `action_id`) values ('2', '["1","7","2","5","6"]', '不是一个人的王者,而是团队的荣耀!', '王者荣耀', '敌方还有五秒到达战场!全军出击!', '1684635684', '王者峡谷上半野区的蓝心草(在蓝buff旁边的新出的草丛中)', 'Timi', '排位赛;站至巅峰!', '请选择你要去往的分路!', '匹配赛', '召集模式;我很急!', '我跟你说这成吉思汗优化的不行啊!', '666', '请文明发言', '您已被举报!', '您已被禁言!', '这人机队友也太坑了吧!真的无语住了!', '为什么不去推塔呀?家都不要了?高地不守就算了还去送人头?是嫌输的不够快吗?!!!', '1') [] []
+[2025-02-05T15:20:38.934959+08:00] sql.INFO: [18.12] select `website_template_info`.*, `footer_category`.`type`, `website`.`website_name` from `website_template_info` left join `footer_category` on `footer_category`.`website_id` = `website_template_info`.`website_id` left join `website` on `website`.`id` = `website_template_info`.`website_id` where `website_template_info`.`id` = '1' limit 1 [] []
+[2025-02-05T15:20:57.349921+08:00] sql.INFO: [17.26] 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-05T15:20:57.366848+08:00] sql.INFO: [16.29] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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-05T15:21:21.948586+08:00] sql.INFO: [15.65] 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-05T15:21:21.965687+08:00] sql.INFO: [16.36] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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 20 offset 0 [] []
+[2025-02-05T15:24:41.664256+08:00] sql.INFO: [57.73] 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-05T15:24:41.681563+08:00] sql.INFO: [16.62] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `tid`, `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 20 offset 0 [] []
+[2025-02-05T15:34:37.726165+08:00] sql.INFO: [59.68] 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-05T15:34:37.746988+08:00] sql.INFO: [16.76] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id` as `info_id`, `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 20 offset 0 [] []
+[2025-02-05T15:35:06.095662+08:00] sql.INFO: [66.85] 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-05T15:35:06.118614+08:00] sql.INFO: [17.78] select `template_class`.`name`, `website`.`id` as `website_id`, `website`.`website_name`, `website`.`website_url`, `website_template_info`.`id`, `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 20 offset 0 [] []
+[2025-02-05T15:35:30.304753+08:00] sql.INFO: [60.24] 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-05T15:35:30.326775+08:00] sql.INFO: [18.11] 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 20 offset 0 [] []
+[2025-02-05T15:35:53.071139+08:00] sql.INFO: [16.8] select * from `website` where `website`.`id` = '10' limit 1 [] []
+[2025-02-05T15:35:53.093213+08:00] sql.INFO: [16.03] select `type` from `footer_category` where `website_id` = '10' [] []
+[2025-02-05T15:35:53.115092+08:00] sql.INFO: [16.51] select `type` from `link` where `website_id` = '10' [] []
+[2025-02-05T15:35:57.569336+08:00] sql.INFO: [15.94] select * from `website` where `website`.`id` = '19' limit 1 [] []
+[2025-02-05T15:35:57.584283+08:00] sql.INFO: [14.06] select `type` from `footer_category` where `website_id` = '19' [] []
+[2025-02-05T15:36:03.028682+08:00] sql.INFO: [16.35] select * from `website` where `website`.`id` = '20' limit 1 [] []
+[2025-02-05T15:36:03.042566+08:00] sql.INFO: [13.13] select `type` from `footer_category` where `website_id` = '20' [] []
+[2025-02-05T15:36:16.921279+08:00] sql.INFO: [15.6] select * from `template_class` [] []
+[2025-02-05T15:36:28.572315+08:00] sql.INFO: [17.07] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:36:28.589892+08:00] sql.INFO: [12.42] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:36:28.609988+08:00] sql.INFO: [15.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":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T15:38:19.218175+08:00] sql.INFO: [269.61] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:38:19.234290+08:00] sql.INFO: [15.04] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:38:19.251309+08:00] sql.INFO: [15.85] 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":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T15:38:24.097195+08:00] sql.INFO: [62.2] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:38:24.146467+08:00] sql.INFO: [17.19] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:38:24.177764+08:00] sql.INFO: [17.07] 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":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-05T15:38:24.193692+08:00] sql.INFO: [14.87] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-05T15:39:16.318650+08:00] sql.INFO: [32.22] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-05T15:39:16.390077+08:00] sql.INFO: [70.52] select * from `website_template_info` where (`website_id` = '1') limit 1 [] []
+[2025-02-05T15:39:20.523786+08:00] sql.INFO: [16.65] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:39:20.540483+08:00] sql.INFO: [15.87] select * from `website_template_info` where (`website_id` = '2') limit 1 [] []
+[2025-02-05T15:39:20.563038+08:00] sql.INFO: [16.28] update `website_template_info` set `page_type` = '["1","2","7"]', `statement` = '不是一个人的王者,而是团队的荣耀!', `organizer` = '王者荣耀', `copyright_information` = '全军出击', `project_logo` = 'Timi', `record_number` = '666777777', `record_number_url` = '请文明发言', `icp_number` = '您已被举报!', `icp_number_url` = '您已被禁言!', `customer_service_qq` = '46132135464', `communications` = '46846844684', `website_template_info`.`updated_at` = '2025-02-05 15:39:20' where (`website_id` = '2') [] []
+[2025-02-05T15:39:24.754089+08:00] sql.INFO: [18.76] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:39:24.769278+08:00] sql.INFO: [14.42] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:39:24.788064+08:00] sql.INFO: [17.94] 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-05T15:39:24.804088+08:00] sql.INFO: [14.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-05T15:39:57.761127+08:00] sql.INFO: [68.8] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:39:57.828531+08:00] sql.INFO: [66.53] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:39:57.901356+08:00] sql.INFO: [66.48] select * from `template_class` where `id` = '2' limit 1 [] []
+[2025-02-05T15:39:57.970853+08:00] sql.INFO: [68.17] 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 `template_class_id` = '2' and (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-05T15:39:58.037143+08:00] sql.INFO: [65.52] select count(*) as aggregate from `template` where `template_class_id` = '2' and (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}')) [] []
+[2025-02-05T15:40:03.619693+08:00] sql.INFO: [79.39] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T15:40:03.704620+08:00] sql.INFO: [83.97] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:40:03.796911+08:00] sql.INFO: [91.06] 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-05T15:40:03.881987+08:00] sql.INFO: [83.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-05T15:40:49.695962+08:00] sql.INFO: [44.2] select * from `template` where `id` = '1' limit 1 [] []
+[2025-02-05T15:40:49.737968+08:00] sql.INFO: [41.06] select * from `website` where `id` = '15200' limit 1 [] []
+[2025-02-05T15:41:14.094382+08:00] sql.INFO: [61.18] select * from `template` where `id` = '16' limit 1 [] []
+[2025-02-05T15:41:14.144630+08:00] sql.INFO: [49.3] select * from `website` where `id` = '2' limit 1 [] []
+[2025-02-05T15:41:14.190084+08:00] sql.INFO: [44.25] update `website_template_info` set `template_id` = '16', `action_id` = '2', `website_template_info`.`updated_at` = '2025-02-05 15:41:14' where `website_id` = '2' [] []
+[2025-02-05T15:41:18.577660+08:00] sql.INFO: [42.65] select * from `template` where `id` = '2200' limit 1 [] []
+[2025-02-05T15:41:18.621839+08:00] sql.INFO: [43.63] select * from `website` where `id` = '2' limit 1 [] []
+[2025-02-05T15:41:26.621844+08:00] sql.INFO: [29.71] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T15:41:26.654669+08:00] sql.INFO: [31.78] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.* 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-05T16:08:20.569153+08:00] sql.INFO: [61.2] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:08:20.604096+08:00] sql.INFO: [16.18] select `template`.`template_name`, `template`.`template_img`, `template`.`id` as `tid`, `template_class`.`name`, `template_class`.`id` as `class_id`, `website_template_info`.* 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-05T16:11:06.237142+08:00] sql.INFO: [1075.69] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:11:06.255654+08:00] sql.INFO: [17.1] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:11:06.279482+08:00] sql.INFO: [16.39] 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:11:06.293832+08:00] sql.INFO: [13.26] 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-05T16:11:15.284787+08:00] sql.INFO: [16.68] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:11:15.298702+08:00] sql.INFO: [12.74] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:11:15.316948+08:00] sql.INFO: [17.46] 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:11:15.333129+08:00] sql.INFO: [14.82] 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-05T16:12:09.537760+08:00] sql.INFO: [17.39] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:12:09.552889+08:00] sql.INFO: [14.25] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:12:09.571263+08:00] sql.INFO: [17.11] 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:12:09.588867+08:00] sql.INFO: [16.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-05T16:12:10.449171+08:00] sql.INFO: [16.51] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:12:10.463065+08:00] sql.INFO: [13.03] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:12:10.480306+08:00] sql.INFO: [16.1] 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:12:10.495438+08:00] sql.INFO: [13.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-05T16:12:14.711721+08:00] sql.INFO: [899.87] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:12:14.741698+08:00] sql.INFO: [13.73] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:12:14.765006+08:00] sql.INFO: [14.76] 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:12:14.779669+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-05T16:20:57.370395+08:00] sql.INFO: [56.86] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:20:57.402722+08:00] sql.INFO: [14.23] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:20:57.426500+08:00] sql.INFO: [13.95] 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:20:57.440647+08:00] sql.INFO: [12.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-05T16:21:00.901923+08:00] sql.INFO: [70.65] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:00.936353+08:00] sql.INFO: [14.88] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:00.962434+08:00] sql.INFO: [16.57] 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:21:00.980205+08:00] sql.INFO: [16.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-05T16:21:03.031792+08:00] sql.INFO: [17.32] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:03.049948+08:00] sql.INFO: [17.2] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:03.068220+08:00] sql.INFO: [17.39] 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:21:03.086775+08:00] sql.INFO: [17.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-05T16:21:04.274744+08:00] sql.INFO: [16.52] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:04.292927+08:00] sql.INFO: [17.18] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:04.310080+08:00] sql.INFO: [16.11] 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:21:04.328055+08:00] sql.INFO: [16.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-05T16:21:27.459075+08:00] sql.INFO: [17.91] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:27.477003+08:00] sql.INFO: [17.15] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:27.495141+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-05T16:21:27.512840+08:00] sql.INFO: [16.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-05T16:21:28.626517+08:00] sql.INFO: [16.08] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:28.642728+08:00] sql.INFO: [15.42] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:28.660852+08:00] sql.INFO: [17.26] 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:21:28.678687+08:00] sql.INFO: [16.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-05T16:21:31.970821+08:00] sql.INFO: [67.13] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:31.997369+08:00] sql.INFO: [13.71] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:32.023677+08:00] sql.INFO: [18.59] 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:21:32.039464+08:00] sql.INFO: [14.63] 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-05T16:21:34.351528+08:00] sql.INFO: [17.55] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:21:34.367431+08:00] sql.INFO: [14.8] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:21:34.384914+08:00] sql.INFO: [16.43] 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:21:34.399343+08:00] sql.INFO: [13.01] 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-05T16:22:55.814630+08:00] sql.INFO: [54.97] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:22:55.829017+08:00] sql.INFO: [13.56] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:22:55.846924+08:00] sql.INFO: [17.03] 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:22:55.860663+08:00] sql.INFO: [12.43] 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-05T16:23:00.444534+08:00] sql.INFO: [69.76] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:23:00.481594+08:00] sql.INFO: [16.02] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:23:00.508055+08:00] sql.INFO: [18.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-05T16:23:00.524097+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-05T16:24:32.596100+08:00] sql.INFO: [275.74] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-05T16:24:32.629961+08:00] sql.INFO: [13.94] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-05T16:24:32.935117+08:00] sql.INFO: [295.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-05T16:24:33.185784+08:00] sql.INFO: [249.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-05T16:24:56.425475+08:00] sql.INFO: [1124.1] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[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 [] []
+[2025-02-06T13:57:50.384814+08:00] sql.INFO: [2182.64] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:57:50.645021+08:00] sql.INFO: [243.27] 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-06T13:57:50.883963+08:00] sql.INFO: [232.47] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:57:50.902320+08:00] sql.INFO: [16.61] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:57:51.140039+08:00] sql.INFO: [232.26] 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-06T13:57:51.157214+08:00] sql.INFO: [16.21] 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-06T13:58:20.635130+08:00] sql.INFO: [261.26] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:20.654998+08:00] sql.INFO: [18.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-06T13:58:20.882570+08:00] sql.INFO: [226.85] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:58:21.114874+08:00] sql.INFO: [231.31] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:21.347531+08:00] sql.INFO: [230.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 1 offset 0 [] []
+[2025-02-06T13:58:21.366851+08:00] sql.INFO: [17.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-06T13:58:24.933458+08:00] sql.INFO: [271.35] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:24.967630+08:00] sql.INFO: [16.53] 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-06T13:58:24.988042+08:00] sql.INFO: [14.79] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:58:25.003359+08:00] sql.INFO: [14.68] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:25.022519+08:00] sql.INFO: [14.32] 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-06T13:58:25.036953+08:00] sql.INFO: [13.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-06T13:58:36.701050+08:00] sql.INFO: [716.71] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:36.947720+08:00] sql.INFO: [244.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-06T13:58:36.965942+08:00] sql.INFO: [16.44] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:58:36.981261+08:00] sql.INFO: [14.28] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:36.997423+08:00] sql.INFO: [15.21] 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-06T13:58:37.013215+08:00] sql.INFO: [14.85] 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-06T13:58:40.507898+08:00] sql.INFO: [494.55] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:40.540177+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`.`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-06T13:58:40.558437+08:00] sql.INFO: [13.8] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:58:40.572795+08:00] sql.INFO: [13.65] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:58:40.591403+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 1 offset 0 [] []
+[2025-02-06T13:58:40.606552+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-06T13:59:20.283492+08:00] sql.INFO: [60.09] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:20.317513+08:00] sql.INFO: [16.75] 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-06T13:59:20.337814+08:00] sql.INFO: [14.81] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:59:20.352930+08:00] sql.INFO: [14.41] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:20.371480+08:00] sql.INFO: [14.47] 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-06T13:59:20.600180+08:00] sql.INFO: [227.97] 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-06T13:59:22.097444+08:00] sql.INFO: [277.52] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:22.116596+08:00] sql.INFO: [17.87] 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-06T13:59:22.133977+08:00] sql.INFO: [16.2] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:59:22.148737+08:00] sql.INFO: [13.47] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:22.164772+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 1 offset 0 [] []
+[2025-02-06T13:59:22.392353+08:00] sql.INFO: [226.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-06T13:59:31.055370+08:00] sql.INFO: [305.5] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:31.074411+08:00] sql.INFO: [17.72] 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-06T13:59:31.090330+08:00] sql.INFO: [15.01] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:59:31.320443+08:00] sql.INFO: [229.19] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:31.337121+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 1 offset 0 [] []
+[2025-02-06T13:59:31.353144+08:00] sql.INFO: [15.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-06T13:59:34.423905+08:00] sql.INFO: [108.28] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:34.458322+08:00] sql.INFO: [17.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-06T13:59:34.480710+08:00] sql.INFO: [17.76] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:59:34.496239+08:00] sql.INFO: [14.8] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:34.514703+08:00] sql.INFO: [13.79] 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-06T13:59:34.530989+08:00] sql.INFO: [15.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-06T13:59:51.140260+08:00] sql.INFO: [287.37] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:51.155408+08:00] sql.INFO: [13.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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T13:59:51.171917+08:00] sql.INFO: [15.51] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T13:59:51.400969+08:00] sql.INFO: [228.17] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T13:59:51.634371+08:00] sql.INFO: [231.68] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T13:59:51.648845+08:00] sql.INFO: [13.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:01:42.292889+08:00] sql.INFO: [62.48] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:42.325298+08:00] sql.INFO: [15.34] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:01:42.346209+08:00] sql.INFO: [16.89] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:01:42.362169+08:00] sql.INFO: [14.99] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:42.381636+08:00] sql.INFO: [14.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:01:42.395496+08:00] sql.INFO: [12.97] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:01:43.676403+08:00] sql.INFO: [16.37] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:43.693003+08:00] sql.INFO: [15.58] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:01:43.719409+08:00] sql.INFO: [25.68] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:01:43.733900+08:00] sql.INFO: [13.61] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:43.751479+08:00] sql.INFO: [16.48] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:01:43.765022+08:00] sql.INFO: [12.48] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:01:47.157763+08:00] sql.INFO: [69.52] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:47.192118+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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:01:47.212729+08:00] sql.INFO: [16.01] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:01:47.228357+08:00] sql.INFO: [14.95] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:47.248521+08:00] sql.INFO: [16.09] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:01:47.266514+08:00] sql.INFO: [17.09] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:01:58.843961+08:00] sql.INFO: [16.5] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:58.862658+08:00] sql.INFO: [17.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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:01:58.879305+08:00] sql.INFO: [15.77] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:01:58.895526+08:00] sql.INFO: [15.26] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:01:58.921140+08:00] sql.INFO: [24.71] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:01:58.938518+08:00] sql.INFO: [16.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:02.525041+08:00] sql.INFO: [280.21] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:02.558197+08:00] sql.INFO: [16.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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:02:02.579488+08:00] sql.INFO: [17.06] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:02.596077+08:00] sql.INFO: [15.71] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:02.617818+08:00] sql.INFO: [17.4] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:02:02.635174+08:00] sql.INFO: [16.25] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:14.870171+08:00] sql.INFO: [18.73] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:15.104600+08:00] sql.INFO: [233.14] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:02:15.123537+08:00] sql.INFO: [17.91] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:15.141827+08:00] sql.INFO: [17.49] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:15.159446+08:00] sql.INFO: [16.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:02:15.176010+08:00] sql.INFO: [15.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:16.188318+08:00] sql.INFO: [18.28] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:16.207027+08:00] sql.INFO: [17.48] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:02:16.225947+08:00] sql.INFO: [18.15] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:16.242283+08:00] sql.INFO: [15.62] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:16.260298+08:00] sql.INFO: [17.24] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:02:16.279284+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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:19.036450+08:00] sql.INFO: [69.94] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:19.073198+08:00] sql.INFO: [18.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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:02:19.093831+08:00] sql.INFO: [16.59] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:19.109812+08:00] sql.INFO: [15.13] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:19.131556+08:00] sql.INFO: [17.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:02:19.147503+08:00] sql.INFO: [15.03] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:21.694998+08:00] sql.INFO: [16.79] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:21.714359+08:00] sql.INFO: [18.17] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:02:21.731414+08:00] sql.INFO: [16.37] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:21.748399+08:00] sql.INFO: [16.11] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:21.765577+08:00] sql.INFO: [16.39] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:02:21.781501+08:00] sql.INFO: [15.18] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:02:45.587996+08:00] sql.INFO: [16.17] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:02:45.605956+08:00] sql.INFO: [16.98] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:02:45.623459+08:00] sql.INFO: [16.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T14:02:45.641878+08:00] sql.INFO: [17.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:08:56.973073+08:00] sql.INFO: [63.49] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:08:57.005483+08:00] sql.INFO: [16.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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:08:57.025058+08:00] sql.INFO: [15.28] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:08:57.039618+08:00] sql.INFO: [13.7] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:08:57.058998+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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:08:57.073800+08:00] sql.INFO: [14.09] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:08:59.356100+08:00] sql.INFO: [17.06] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:08:59.372190+08:00] sql.INFO: [14.87] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:08:59.388350+08:00] sql.INFO: [15.13] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:08:59.404304+08:00] sql.INFO: [15.01] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:08:59.419814+08:00] sql.INFO: [14.54] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 1 offset 0 [] []
+[2025-02-06T14:08:59.436623+08:00] sql.INFO: [15.85] 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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:15:34.477454+08:00] sql.INFO: [62.82] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:15:34.513657+08:00] sql.INFO: [16.07] 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"}') or json_contains(`template`.`template_img`, '{"value":"5"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T14:27:35.558973+08:00] sql.INFO: [1487.59] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:27:35.573648+08:00] sql.INFO: [13.17] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:27:35.592273+08:00] sql.INFO: [14.07] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T14:27:35.606315+08:00] sql.INFO: [13.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:33:11.470412+08:00] sql.INFO: [58.44] select * from `website` where `website`.`id` = '3' limit 1 [] []
+[2025-02-06T14:33:11.491324+08:00] sql.INFO: [13.63] select `type` from `footer_category` where `website_id` = '3' [] []
+[2025-02-06T14:33:19.497525+08:00] sql.INFO: [17.38] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T14:33:19.511936+08:00] sql.INFO: [13.37] select `type` from `footer_category` where `website_id` = '1' [] []
+[2025-02-06T14:33:19.529221+08:00] sql.INFO: [14.08] select `type` from `link` where `website_id` = '1' [] []
+[2025-02-06T14:33:44.285880+08:00] sql.INFO: [15.46] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T14:33:44.299860+08:00] sql.INFO: [13.06] select `type` from `footer_category` where `website_id` = '1' [] []
+[2025-02-06T14:33:44.315448+08:00] sql.INFO: [15.09] select `type` from `link` where `website_id` = '1' [] []
+[2025-02-06T14:33:44.351137+08:00] sql.INFO: [35.07] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T14:33:44.369525+08:00] sql.INFO: [16.63] insert into `website_template_info` (`website_id`, `page_type`, `statement`, `organizer`, `copyright_information`, `contact_number`, `company_address`, `project_logo`, `project_name`, `project_url`, `company_logo`, `company_name`, `company_url`, `record_number`, `record_number_url`, `icp_number`, `icp_number_url`, `customer_service_qq`, `communications`, `action_id`) values ('1', '["1","7","2","5","6"]', '不是一个人的王者,而是团队的荣耀!', '王者荣耀', '敌方还有五秒到达战场!全军出击!', '1684635684', '王者峡谷上半野区的蓝心草(在蓝buff旁边的新出的草丛中)', 'Timi', '排位赛;站至巅峰!', '请选择你要去往的分路!', '匹配赛', '召集模式;我很急!', '我跟你说这成吉思汗优化的不行啊!', '666', '请文明发言', '您已被举报!', '您已被禁言!', '这人机队友也太坑了吧!真的无语住了!', '为什么不去推塔呀?家都不要了?高地不守就算了还去送人头?是嫌输的不够快吗?!!!', '1') [] []
+[2025-02-06T14:34:09.022818+08:00] sql.INFO: [17.9] select * from `website` where `website`.`id` = '7' limit 1 [] []
+[2025-02-06T14:34:22.953924+08:00] sql.INFO: [16.96] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-06T14:34:22.970069+08:00] sql.INFO: [15.31] select `type` from `footer_category` where `website_id` = '5' [] []
+[2025-02-06T14:34:22.986317+08:00] sql.INFO: [15.65] select `type` from `link` where `website_id` = '5' [] []
+[2025-02-06T14:37:05.169656+08:00] sql.INFO: [63.28] select * from `website` where `website`.`id` = '2' limit 1 [] []
+[2025-02-06T14:37:05.183510+08:00] sql.INFO: [13.06] select `page_type` from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T14:37:05.201307+08:00] sql.INFO: [16.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T14:37:05.217803+08:00] sql.INFO: [15.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"}') and json_contains(`template_img`, '{"value":"5"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T14:37:16.936257+08:00] sql.INFO: [16.89] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-06T14:37:16.952231+08:00] sql.INFO: [15.33] select `page_type` from `website_template_info` where `website_id` = '5' limit 1 [] []
+[2025-02-06T14:37:23.251706+08:00] sql.INFO: [15.9] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-06T14:37:23.267382+08:00] sql.INFO: [14.88] select `type` from `footer_category` where `website_id` = '5' [] []
+[2025-02-06T14:37:23.283802+08:00] sql.INFO: [15.7] select `type` from `link` where `website_id` = '5' [] []
+[2025-02-06T16:04:46.893541+08:00] sql.INFO: [62.53] select * from `website` where `website`.`id` = '5' limit 1 [] []
+[2025-02-06T16:04:46.930233+08:00] sql.INFO: [18.68] select `page_type` from `website_template_info` where `website_id` = '5' limit 1 [] []
+[2025-02-06T16:04:51.514986+08:00] sql.INFO: [17.3] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:04:51.529360+08:00] sql.INFO: [13.68] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:04:51.548246+08:00] sql.INFO: [15.08] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:04:51.562539+08:00] sql.INFO: [13.59] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:06:58.116877+08:00] sql.INFO: [68.92] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:06:58.148783+08:00] sql.INFO: [14.72] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:06:58.170226+08:00] sql.INFO: [15.59] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:06:58.185328+08:00] sql.INFO: [14.16] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:10:52.861904+08:00] sql.INFO: [295.97] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:10:52.877041+08:00] sql.INFO: [14.2] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:10:52.894043+08:00] sql.INFO: [16] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:10:52.932846+08:00] sql.INFO: [37.73] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:10:56.274029+08:00] sql.INFO: [63.69] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:10:56.308084+08:00] sql.INFO: [15.26] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:10:56.328829+08:00] sql.INFO: [15.94] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:10:56.344654+08:00] sql.INFO: [15.1] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:11:26.730199+08:00] sql.INFO: [18.4] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:11:27.174485+08:00] sql.INFO: [443.42] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:11:27.190211+08:00] sql.INFO: [14.69] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:11:27.205510+08:00] sql.INFO: [14.32] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:11:37.009349+08:00] sql.INFO: [96.63] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:11:37.043519+08:00] sql.INFO: [13.53] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:11:37.064479+08:00] sql.INFO: [16.3] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:11:37.080752+08:00] sql.INFO: [15.19] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:11:39.799361+08:00] sql.INFO: [71.76] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:11:39.834778+08:00] sql.INFO: [16.42] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:11:39.857223+08:00] sql.INFO: [17.48] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:11:39.875710+08:00] sql.INFO: [17.81] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:11:49.839922+08:00] sql.INFO: [18.53] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:11:49.858113+08:00] sql.INFO: [17.24] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:11:49.876113+08:00] sql.INFO: [17.03] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:11:49.894754+08:00] sql.INFO: [17.86] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:11:53.159761+08:00] sql.INFO: [68.79] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:11:53.195060+08:00] sql.INFO: [16.28] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:11:53.213692+08:00] sql.INFO: [14.98] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:11:53.228419+08:00] sql.INFO: [14.02] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:10.732616+08:00] sql.INFO: [62.35] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:10.766316+08:00] sql.INFO: [16.14] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:10.784524+08:00] sql.INFO: [14.25] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:10.800210+08:00] sql.INFO: [14.7] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:14.098780+08:00] sql.INFO: [17.69] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:14.114958+08:00] sql.INFO: [15.09] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:14.132107+08:00] sql.INFO: [16.33] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:14.146852+08:00] sql.INFO: [13.96] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:15.084465+08:00] sql.INFO: [16.89] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:15.100233+08:00] sql.INFO: [14.94] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:15.118241+08:00] sql.INFO: [16.97] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:15.132853+08:00] sql.INFO: [13.61] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:16.056400+08:00] sql.INFO: [16.22] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:16.071331+08:00] sql.INFO: [14.03] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:16.089476+08:00] sql.INFO: [17.3] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:16.103542+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":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:16.882895+08:00] sql.INFO: [16.01] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:16.897867+08:00] sql.INFO: [14.24] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:16.916211+08:00] sql.INFO: [17.43] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:16.932942+08:00] sql.INFO: [15.89] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:23.656058+08:00] sql.INFO: [69.8] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:23.691090+08:00] sql.INFO: [15.33] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:23.713936+08:00] sql.INFO: [16.04] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:23.729166+08:00] sql.INFO: [14.43] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:55.499440+08:00] sql.INFO: [61.13] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:55.539284+08:00] sql.INFO: [21.98] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:55.563393+08:00] sql.INFO: [19.42] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:55.584687+08:00] sql.INFO: [20.44] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:12:59.121751+08:00] sql.INFO: [68.99] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:12:59.159626+08:00] sql.INFO: [16.43] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:12:59.182702+08:00] sql.INFO: [16.92] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:12:59.199391+08:00] sql.INFO: [15.81] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:13:09.945591+08:00] sql.INFO: [16.76] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:13:09.962954+08:00] sql.INFO: [16.63] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:13:09.980566+08:00] sql.INFO: [16.83] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:13:09.997992+08:00] sql.INFO: [16.66] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:13:10.967571+08:00] sql.INFO: [18.72] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:13:10.982602+08:00] sql.INFO: [14.16] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:13:11.002622+08:00] sql.INFO: [19.04] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:13:11.020540+08:00] sql.INFO: [16.78] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:13:14.148531+08:00] sql.INFO: [60.81] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:13:14.177476+08:00] sql.INFO: [13.25] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:13:14.198208+08:00] sql.INFO: [16.13] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:13:14.212816+08:00] sql.INFO: [13.81] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:13:58.690469+08:00] sql.INFO: [73.31] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:13:58.724698+08:00] sql.INFO: [14.88] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:13:58.747897+08:00] sql.INFO: [18.27] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:13:58.769908+08:00] sql.INFO: [21.31] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:14:02.944337+08:00] sql.INFO: [66.18] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:14:02.981504+08:00] sql.INFO: [16.05] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:14:03.003315+08:00] sql.INFO: [16.59] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:14:03.017961+08:00] sql.INFO: [13.88] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:14:10.995231+08:00] sql.INFO: [16.94] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:14:11.012074+08:00] sql.INFO: [15.87] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:14:11.028852+08:00] sql.INFO: [15.81] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:14:11.045674+08:00] sql.INFO: [15.79] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:14:20.444647+08:00] sql.INFO: [20.65] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:14:20.464560+08:00] sql.INFO: [18.95] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:14:20.485952+08:00] sql.INFO: [20.39] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:14:20.503966+08:00] sql.INFO: [16.83] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:15:27.066144+08:00] sql.INFO: [62.23] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:15:27.097281+08:00] sql.INFO: [15.72] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:15:27.118257+08:00] sql.INFO: [16.58] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:15:27.135263+08:00] sql.INFO: [16.03] select count(*) as aggregate from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []
+[2025-02-06T16:20:11.846544+08:00] sql.INFO: [359.85] select * from `website_template_info` where `website_id` = '2' limit 1 [] []
+[2025-02-06T16:20:16.513464+08:00] sql.INFO: [20.16] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:20:16.540314+08:00] sql.INFO: [16.98] 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` = '1' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"7"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"3"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T16:20:18.983357+08:00] sql.INFO: [20.01] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:20:19.012973+08:00] sql.INFO: [28.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` = '1' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"7"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"3"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T16:20:25.472833+08:00] sql.INFO: [797.19] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:20:25.492378+08:00] sql.INFO: [18.53] 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` = '1' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"7"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"3"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T16:20:37.680347+08:00] sql.INFO: [18.71] 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-06T16:20:37.700976+08:00] sql.INFO: [19.99] 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-06T16:21:49.373958+08:00] sql.INFO: [70.44] 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-06T16:21:49.391964+08:00] sql.INFO: [17.22] 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-06T16:22:11.858738+08:00] sql.INFO: [17.66] select * from `template` where `id` = '1' limit 1 [] []
+[2025-02-06T16:22:11.887888+08:00] sql.INFO: [28.21] select * from `website` where `id` = '1' limit 1 [] []
+[2025-02-06T16:22:11.916605+08:00] sql.INFO: [17.42] update `website_template_info` set `template_id` = '1', `action_id` = '2', `website_template_info`.`updated_at` = '2025-02-06 16:22:11' where `website_id` = '1' [] []
+[2025-02-06T16:22:16.912269+08:00] sql.INFO: [22.95] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:22:17.146609+08:00] sql.INFO: [233.25] 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` = '1' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"7"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"3"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T16:24:43.470530+08:00] sql.INFO: [107.12] select * from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:24:43.520333+08:00] sql.INFO: [18.62] 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` = '1' and `template_id` is not null) and (json_contains(`template`.`template_img`, '{"value":"1"}') or json_contains(`template`.`template_img`, '{"value":"7"}') or json_contains(`template`.`template_img`, '{"value":"2"}') or json_contains(`template`.`template_img`, '{"value":"3"}') or json_contains(`template`.`template_img`, '{"value":"6"}')) limit 1 [] []
+[2025-02-06T16:31:14.592976+08:00] sql.INFO: [62.07] select * from `website` where `website`.`id` = '1' limit 1 [] []
+[2025-02-06T16:31:14.622513+08:00] sql.INFO: [14.16] select `page_type` from `website_template_info` where `website_id` = '1' limit 1 [] []
+[2025-02-06T16:31:14.643214+08:00] sql.INFO: [15.73] select * from `template` where (json_contains(`template_img`, '{"value":"1"}') and json_contains(`template_img`, '{"value":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) order by `template`.`updated_at` desc limit 10 offset 0 [] []
+[2025-02-06T16:31:14.657514+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":"7"}') and json_contains(`template_img`, '{"value":"2"}') and json_contains(`template_img`, '{"value":"3"}') and json_contains(`template_img`, '{"value":"6"}')) [] []

+ 2 - 2
vendor/composer/installed.php

@@ -3,7 +3,7 @@
         'name' => 'hyperf/hyperf-skeleton',
         'name' => 'hyperf/hyperf-skeleton',
         'pretty_version' => 'dev-master',
         'pretty_version' => 'dev-master',
         'version' => 'dev-master',
         'version' => 'dev-master',
-        'reference' => 'f04c8ad51f49a50e1c83a4633d7861cd7cf556f1',
+        'reference' => '7f5b599de24baabc034ff41ae5bf0be5a5d776ec',
         'type' => 'project',
         'type' => 'project',
         'install_path' => __DIR__ . '/../../',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
         'aliases' => array(),
@@ -457,7 +457,7 @@
         'hyperf/hyperf-skeleton' => array(
         'hyperf/hyperf-skeleton' => array(
             'pretty_version' => 'dev-master',
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'f04c8ad51f49a50e1c83a4633d7861cd7cf556f1',
+            'reference' => '7f5b599de24baabc034ff41ae5bf0be5a5d776ec',
             'type' => 'project',
             'type' => 'project',
             'install_path' => __DIR__ . '/../../',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
             'aliases' => array(),

Some files were not shown because too many files changed in this diff