rkljw преди 8 месеца
родител
ревизия
fb9f671de0
променени са 9 файла, в които са добавени 1958 реда и са изтрити 14 реда
  1. 1 1
      .env
  2. 40 5
      .watcher.php
  3. 14 7
      app/JsonRpc/UserService.php
  4. 27 0
      app/Model/RoleLog.php
  5. 0 0
      runtime/container/classes.cache
  6. 1 1
      runtime/hyperf.pid
  7. 1873 0
      runtime/logs/hyperf.log
  8. 1 0
      vendor/composer/autoload_classmap.php
  9. 1 0
      vendor/composer/autoload_static.php

+ 1 - 1
.env

@@ -2,7 +2,7 @@ APP_NAME=user_producer
 APP_ENV=dev
 
 DB_DRIVER=mysql
-DB_HOST=192.168.31.193
+DB_HOST=192.168.1.193
 DB_PORT=2333
 DB_DATABASE=hyperf
 DB_USERNAME=root

+ 40 - 5
.watcher.php

@@ -1,11 +1,12 @@
 <?php
 namespace App\JsonRpc;
+use App\Model\Role;
 use App\Model\Menu;
-use App\Model\UserInfo;
-use App\Model\UserLogin;
-use Hyperf\RpcServer\Annotation\RpcService;
+use App\Model\Website;
+use App\Model\WebsiteRoleUser;
 use App\Tools\Result;
-use Hyperf\DbConnection\Db;
+use Hyperf\RpcServer\Annotation\RpcService;
+
 #[RpcService(name: "AuthorityService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
 class AuthorityService implements AuthorityServiceInterface
 {
@@ -43,6 +44,7 @@ class AuthorityService implements AuthorityServiceInterface
     public function getMenuInfo(array $data): array
     {
         // TODO: Implement getMenuInfo() method.
+        return  [];
     }
 
     /**
@@ -97,7 +99,40 @@ class AuthorityService implements AuthorityServiceInterface
      */
     public function getRecursionMenu(array $data): array
     {
-        $result = Menu::get();
+        //先查询站点ID
+        $websiteData = [
+            'website_url' => $data['logindevice']
+        ];
+        $websiteInfo = Website::where($websiteData)->first();
+        if(empty($websiteInfo)){
+            return Result::error("网站不存在",0);
+        }
+        //根据网站和用户ID 查询出角色
+        $whereData = [
+            'website_id'=>$websiteInfo['id'],
+            'user_id'=>$data['user_id']??''
+        ];
+        $WebsiteRoleUserInfo = WebsiteRoleUser::where($whereData)->first();
+//        var_dump("++++:",$WebsiteRoleUserInfo['role_id']);
+        if(empty($WebsiteRoleUserInfo)){
+            return Result::error("角色不存在",0);
+        }
+
+        //根据角色查询权限信息
+        $roleWhere = [
+            'id'=>$WebsiteRoleUserInfo['role_id']
+        ];
+        $roleInfo = Role::where($roleWhere)->first();
+//        var_dump("+++++++++++",$roleInfo);
+        if(empty($roleInfo)){
+            return Result::error("没有权限",0);
+        }
+        //查询
+//        var_dump("=========:",$roleInfo['rule']);
+        $roleArr = json_decode($roleInfo['rule']);
+        var_dump($roleArr);
+        $result = Menu::whereIn('id',$roleArr)->get();
+        var_dump("+++++++++++",$result);
         if (empty($result)) {
             return Result::error("没有菜单",0,[]);
         }

+ 14 - 7
app/JsonRpc/UserService.php

@@ -5,9 +5,10 @@ use App\Model\RoleLog;
 use App\Model\User;
 use App\Model\UserInfo;
 use App\Model\UserLogin;
-use Hyperf\RpcServer\Annotation\RpcService;
 use App\Tools\Result;
 use Hyperf\DbConnection\Db;
+use Hyperf\RpcServer\Annotation\RpcService;
+
 #[RpcService(name: "UserService", protocol: "jsonrpc-http", server: "jsonrpc-http")]
 class UserService implements UserServiceInterface
 {
@@ -66,7 +67,7 @@ class UserService implements UserServiceInterface
     {
 
         $where = [
-            ['user.user_name','like','%'.$data['keyWord'].'%']
+            ['user.user_name','like','%'.$data['keyword'].'%']
         ];
         if(isset($data['pageSize'])){
             $result = User::where($where)
@@ -85,6 +86,16 @@ class UserService implements UserServiceInterface
                 ->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->orderBy("user.id","desc")->get();
         }else{
             $result = User::where($where)
+                ->select('user.*', 'user_info.id as user_info_id',
+                    'user_info.id_card',
+                    'user_info.birthday',
+                    'user_info.gender',
+                    'user_info.real_name',
+                    'user_info.business_name',
+                    'user_info.job',
+                    'user_info.city_id',
+
+                )
                 ->leftJoin('user_info', 'user.id', '=', 'user_info.user_id')
                 ->get();
         }
@@ -273,11 +284,7 @@ class UserService implements UserServiceInterface
             Db::rollBack();
             return Result::error("删除失败",0);
         }
-
-        if ($result) {
-            return Result::success($result);
-        }
-
+        return Result::success($result);
     }
     /**
      * @param array $data

+ 27 - 0
app/Model/RoleLog.php

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

Файловите разлики са ограничени, защото са твърде много
+ 0 - 0
runtime/container/classes.cache


+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-1710
+247

+ 1873 - 0
runtime/logs/hyperf.log

@@ -3680,3 +3680,1876 @@
 [2024-06-27 18:29:08] sql.INFO: [9.19] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
 [2024-06-27 18:37:59] sql.INFO: [129.46] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
 [2024-06-27 18:37:59] sql.INFO: [50.05] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-27 11:06:52] sql.INFO: [23.29] select * from `menu` [] []
+[2024-06-27 11:06:52] sql.INFO: [32.24] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-27 11:06:52] sql.INFO: [47.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-27 11:06:52] sql.INFO: [14.46] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-27 11:06:55] sql.INFO: [5.42] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-27 11:06:55] sql.INFO: [2.64] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 01:44:21] sql.INFO: [248.89] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-28 01:44:21] sql.INFO: [36.33] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 01:44:29] sql.INFO: [54.8] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 01:44:29] sql.INFO: [5.53] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 01:44:34] sql.INFO: [4.84] select * from `menu` [] []
+[2024-06-28 01:46:24] sql.INFO: [150.86] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-06-28 01:46:24] sql.INFO: [7.57] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-06-28 01:48:10] sql.INFO: [1047.45] select * from `menu` [] []
+[2024-06-28 05:15:50] sql.INFO: [199.09] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-28 05:15:50] sql.INFO: [22.2] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 05:31:04] sql.INFO: [291.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-06-28 05:31:04] sql.INFO: [5.97] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-06-28 05:32:33] sql.INFO: [237.76] select * from `menu` [] []
+[2024-06-28 05:32:34] sql.INFO: [308.26] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 05:32:37] sql.INFO: [10.61] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:32:37] sql.INFO: [4.16] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:38:51] sql.INFO: [43.74] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:38:51] sql.INFO: [5.83] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:52:00] sql.INFO: [91.27] select * from `menu` [] []
+[2024-06-28 05:52:00] sql.INFO: [240.62] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 05:52:52] sql.INFO: [12.01] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-06-28 05:52:52] sql.INFO: [10.25] select * from `menu` [] []
+[2024-06-28 05:52:52] sql.INFO: [12.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 05:55:54] sql.INFO: [37.68] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:55:54] sql.INFO: [3.02] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:55:57] sql.INFO: [2.53] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-06-28 05:55:57] sql.INFO: [5.28] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-06-28 05:55:59] sql.INFO: [2.34] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-06-28 05:55:59] sql.INFO: [1.78] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-06-28 05:56:04] sql.INFO: [9.39] select * from `menu` [] []
+[2024-06-28 05:56:20] sql.INFO: [29.17] update `menu` set `pid` = '49', `label` = '资讯分类', `url` = '/#/left/categoryList', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-06-18 15:54:09', `pid_arr` = '[49]', `menu`.`updated_at` = '2024-06-18 15:54:09' where (`id` = '52') [] []
+[2024-06-28 05:56:22] sql.INFO: [42.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 05:56:22] sql.INFO: [83.39] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:56:22] sql.INFO: [9.17] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:56:22] sql.INFO: [91] select * from `menu` [] []
+[2024-06-28 05:58:07] sql.INFO: [55.76] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:58:07] sql.INFO: [3.22] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:59:27] sql.INFO: [27.22] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:59:27] sql.INFO: [3.58] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 05:59:46] sql.INFO: [4.25] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 05:59:46] sql.INFO: [2.66] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:00:40] sql.INFO: [2.38] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:00:40] sql.INFO: [5.5] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:01:24] sql.INFO: [2.17] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:01:24] sql.INFO: [6.8] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:09:12] sql.INFO: [60.66] select * from `menu` [] []
+[2024-06-28 06:09:12] sql.INFO: [58.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:09:16] sql.INFO: [2.43] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:09:16] sql.INFO: [3.24] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:09:21] sql.INFO: [2.11] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-06-28 06:09:21] sql.INFO: [3.25] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-06-28 06:09:23] sql.INFO: [2.05] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-06-28 06:09:23] sql.INFO: [6.01] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-06-28 06:09:26] sql.INFO: [4.7] select * from `menu` [] []
+[2024-06-28 06:09:32] sql.INFO: [18.12] update `menu` set `pid` = '49', `label` = '资讯分类', `url` = '/#/left/categoryList/0', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-06-18 15:54:09', `pid_arr` = '[49]', `menu`.`updated_at` = '2024-06-18 15:54:09' where (`id` = '52') [] []
+[2024-06-28 06:09:35] sql.INFO: [98.46] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:09:35] sql.INFO: [52.43] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:09:35] sql.INFO: [207.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:09:35] sql.INFO: [450.36] select * from `menu` [] []
+[2024-06-28 06:09:39] sql.INFO: [8.23] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:09:39] sql.INFO: [4.92] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:12:33] sql.INFO: [23.25] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:12:33] sql.INFO: [3.74] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:14:17] sql.INFO: [26.84] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:14:17] sql.INFO: [7.53] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:22:58] sql.INFO: [60.08] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:22:58] sql.INFO: [2.23] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:23:04] sql.INFO: [3.1] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-06-28 06:23:04] sql.INFO: [3.45] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-06-28 06:23:42] sql.INFO: [27.53] select * from `menu` [] []
+[2024-06-28 06:23:42] sql.INFO: [210.96] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:28:55] sql.INFO: [205.88] select * from `menu` [] []
+[2024-06-28 06:28:55] sql.INFO: [251.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:30:27] sql.INFO: [41.72] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:30:27] sql.INFO: [6.61] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:33:20] sql.INFO: [102.21] select * from `menu` [] []
+[2024-06-28 06:33:20] sql.INFO: [66.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:33:52] sql.INFO: [3.02] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 06:33:52] sql.INFO: [2.12] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 06:33:54] sql.INFO: [7.15] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-28 06:33:54] sql.INFO: [3.32] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 06:36:02] sql.INFO: [121.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:36:02] sql.INFO: [121.19] select * from `menu` [] []
+[2024-06-28 06:36:49] sql.INFO: [3.91] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:36:49] sql.INFO: [19.39] select * from `menu` [] []
+[2024-06-28 06:37:23] sql.INFO: [37.8] select * from `menu` [] []
+[2024-06-28 06:37:23] sql.INFO: [52.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:37:59] sql.INFO: [22.62] select * from `menu` [] []
+[2024-06-28 06:37:59] sql.INFO: [191.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:38:51] sql.INFO: [67.46] select * from `menu` [] []
+[2024-06-28 06:38:51] sql.INFO: [33.91] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:39:28] sql.INFO: [15.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:39:28] sql.INFO: [38.75] select * from `menu` [] []
+[2024-06-28 06:40:53] sql.INFO: [71.25] select * from `menu` [] []
+[2024-06-28 06:40:53] sql.INFO: [216.26] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 06:41:05] sql.INFO: [2.4] select * from `menu` [] []
+[2024-06-28 06:51:43] sql.INFO: [37.7] select * from `menu` [] []
+[2024-06-28 06:52:38] sql.INFO: [2.52] select * from `menu` [] []
+[2024-06-28 07:10:03] sql.INFO: [11.28] select * from `menu` [] []
+[2024-06-28 07:23:38] sql.INFO: [44.79] select * from `menu` [] []
+[2024-06-28 07:25:47] sql.INFO: [51.47] select * from `menu` [] []
+[2024-06-28 07:25:47] sql.INFO: [52.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:26:01] sql.INFO: [12.62] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:26:01] sql.INFO: [10.96] select * from `menu` [] []
+[2024-06-28 07:30:26] sql.INFO: [80.97] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:30:26] sql.INFO: [141.12] select * from `menu` [] []
+[2024-06-28 07:38:01] sql.INFO: [24.79] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 07:38:01] sql.INFO: [2.47] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 07:38:50] sql.INFO: [14.42] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 07:38:50] sql.INFO: [10.25] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 07:45:02] sql.INFO: [38.61] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 07:45:02] sql.INFO: [7.59] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 07:46:14] sql.INFO: [288.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:46:14] sql.INFO: [363.04] select * from `menu` [] []
+[2024-06-28 07:46:54] sql.INFO: [1.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:46:54] sql.INFO: [8.82] select * from `menu` [] []
+[2024-06-28 07:47:56] sql.INFO: [252.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:47:56] sql.INFO: [242.3] select * from `menu` [] []
+[2024-06-28 07:53:42] sql.INFO: [113.4] select * from `menu` [] []
+[2024-06-28 07:53:42] sql.INFO: [455.43] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 07:58:27] sql.INFO: [19.57] select * from `menu` [] []
+[2024-06-28 07:58:27] sql.INFO: [49.47] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:00:42] sql.INFO: [23.51] select * from `menu` [] []
+[2024-06-28 08:00:42] sql.INFO: [225.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:06:14] sql.INFO: [263.32] select * from `menu` [] []
+[2024-06-28 08:06:14] sql.INFO: [342.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:12:07] sql.INFO: [105.46] select * from `menu` [] []
+[2024-06-28 08:12:07] sql.INFO: [101.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:12:15] sql.INFO: [50.13] select * from `menu` [] []
+[2024-06-28 08:12:15] sql.INFO: [49.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:12:31] sql.INFO: [8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:12:31] sql.INFO: [4.59] select * from `menu` [] []
+[2024-06-28 08:13:46] sql.INFO: [228.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:13:46] sql.INFO: [137.51] select * from `menu` [] []
+[2024-06-28 08:15:22] sql.INFO: [107.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:15:22] sql.INFO: [54.38] select * from `menu` [] []
+[2024-06-28 08:15:28] sql.INFO: [1.58] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:15:28] sql.INFO: [10.32] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:15:31] sql.INFO: [1.65] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:15:31] sql.INFO: [6.22] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:15:32] sql.INFO: [3.15] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-28 08:15:32] sql.INFO: [2.15] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 08:15:37] sql.INFO: [9.53] select * from `menu` [] []
+[2024-06-28 08:15:37] sql.INFO: [26.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:15:37] sql.INFO: [222.3] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-06-28 08:15:38] sql.INFO: [5.44] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-06-28 08:15:42] sql.INFO: [2.73] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:15:42] sql.INFO: [6.06] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:15:46] sql.INFO: [2.35] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-06-28 08:15:46] sql.INFO: [5.43] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-06-28 08:15:47] sql.INFO: [3.73] select * from `menu` where (`pid` = '4') limit 10 offset 0 [] []
+[2024-06-28 08:15:48] sql.INFO: [3.42] select count(*) as aggregate from `menu` where (`pid` = '4') [] []
+[2024-06-28 08:16:26] sql.INFO: [1.66] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:16:26] sql.INFO: [2.75] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:16:26] sql.INFO: [4.24] select * from `menu` [] []
+[2024-06-28 08:16:27] sql.INFO: [1.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:17:30] sql.INFO: [542.05] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:17:30] sql.INFO: [6.02] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:17:36] sql.INFO: [2.33] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-06-28 08:17:36] sql.INFO: [6.48] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-06-28 08:17:40] sql.INFO: [3.01] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-06-28 08:17:40] sql.INFO: [3.25] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-06-28 08:17:41] sql.INFO: [2.18] select * from `menu` [] []
+[2024-06-28 08:17:45] sql.INFO: [142.62] update `menu` set `pid` = '49', `label` = '资讯分类', `url` = '/#/left/categoryList', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-06-18 15:54:09', `pid_arr` = '[49]', `menu`.`updated_at` = '2024-06-18 15:54:09' where (`id` = '52') [] []
+[2024-06-28 08:17:48] sql.INFO: [12.01] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:17:48] sql.INFO: [9.39] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:17:49] sql.INFO: [245.6] select * from `menu` [] []
+[2024-06-28 08:17:49] sql.INFO: [237.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:22:15] sql.INFO: [25.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:22:15] sql.INFO: [38.03] select * from `menu` [] []
+[2024-06-28 08:27:14] sql.INFO: [36.45] select * from `menu` [] []
+[2024-06-28 08:27:14] sql.INFO: [21.26] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:30:50] sql.INFO: [22.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:30:50] sql.INFO: [59.06] select * from `menu` [] []
+[2024-06-28 08:31:20] sql.INFO: [1.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-06-28 08:31:20] sql.INFO: [4.89] select * from `menu` [] []
+[2024-06-28 08:38:25] sql.INFO: [17.13] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-06-28 08:38:25] sql.INFO: [5.39] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-06-28 08:54:58] sql.INFO: [34.43] select * from `menu` [] []
+[2024-06-28 08:54:58] sql.INFO: [69] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 00:57:40] sql.INFO: [1799.69] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-01 00:57:43] sql.INFO: [30.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 00:57:43] sql.INFO: [55.67] select * from `menu` [] []
+[2024-07-01 01:17:58] sql.INFO: [50.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:17:58] sql.INFO: [49.29] select * from `menu` [] []
+[2024-07-01 01:21:37] sql.INFO: [86.89] select * from `menu` [] []
+[2024-07-01 01:21:37] sql.INFO: [113.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:25:11] sql.INFO: [105.03] select * from `menu` [] []
+[2024-07-01 01:25:11] sql.INFO: [106.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:26:08] sql.INFO: [7.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:26:08] sql.INFO: [17.55] select * from `menu` [] []
+[2024-07-01 01:30:28] sql.INFO: [148.04] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:30:28] sql.INFO: [276.81] select * from `menu` [] []
+[2024-07-01 01:33:35] sql.INFO: [26.4] select * from `menu` [] []
+[2024-07-01 01:33:35] sql.INFO: [88.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:35:28] sql.INFO: [35.47] select * from `menu` [] []
+[2024-07-01 01:35:28] sql.INFO: [37.91] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:35:52] sql.INFO: [10.01] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:35:52] sql.INFO: [5.46] select * from `menu` [] []
+[2024-07-01 01:36:05] sql.INFO: [3.43] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 01:36:05] sql.INFO: [4.67] select * from `menu` [] []
+[2024-07-01 02:04:37] sql.INFO: [83.2] select * from `menu` [] []
+[2024-07-01 02:04:37] sql.INFO: [137.49] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:04:37] sql.INFO: [77.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:04:37] sql.INFO: [7.75] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:04:41] sql.INFO: [4.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:04:41] sql.INFO: [2.24] select * from `menu` [] []
+[2024-07-01 02:04:59] sql.INFO: [3.91] select * from `menu` [] []
+[2024-07-01 02:04:59] sql.INFO: [4.62] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:04:59] sql.INFO: [3.36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:04:59] sql.INFO: [4.2] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:04:59] sql.INFO: [5.47] select * from `menu` [] []
+[2024-07-01 02:04:59] sql.INFO: [8.38] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:05:22] sql.INFO: [1.54] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:05:22] sql.INFO: [2.77] select * from `menu` [] []
+[2024-07-01 02:05:22] sql.INFO: [4.89] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:05:22] sql.INFO: [3.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:05:27] sql.INFO: [1.79] select * from `menu` [] []
+[2024-07-01 02:05:27] sql.INFO: [4.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:06:10] sql.INFO: [1.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:06:10] sql.INFO: [6.66] select * from `menu` [] []
+[2024-07-01 02:06:10] sql.INFO: [2.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:06:10] sql.INFO: [4.43] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:06:10] sql.INFO: [6.52] select * from `menu` [] []
+[2024-07-01 02:06:10] sql.INFO: [4.57] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:06:31] sql.INFO: [46.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:06:31] sql.INFO: [2.9] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:06:31] sql.INFO: [7.75] select * from `menu` [] []
+[2024-07-01 02:06:31] sql.INFO: [7.69] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:06:37] sql.INFO: [2.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:06:37] sql.INFO: [1.98] select * from `menu` [] []
+[2024-07-01 02:14:49] sql.INFO: [303.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:14:49] sql.INFO: [283.42] select * from `menu` [] []
+[2024-07-01 02:15:18] sql.INFO: [1.87] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:15:18] sql.INFO: [16.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:15:18] sql.INFO: [2.09] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:15:18] sql.INFO: [183.04] select * from `menu` [] []
+[2024-07-01 02:15:53] sql.INFO: [1.97] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-07-01 02:15:53] sql.INFO: [5.2] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-07-01 02:15:59] sql.INFO: [3.11] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-07-01 02:15:59] sql.INFO: [9.89] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-07-01 02:16:03] sql.INFO: [2.21] select * from `menu` [] []
+[2024-07-01 02:16:08] sql.INFO: [1.72] select * from `menu` [] []
+[2024-07-01 02:16:35] sql.INFO: [95.84] insert into `menu` (`label`, `pid`, `url`, `pid_arr`) values ('富文本测试', '49', '/#/left/edit', '[67,49]') [] []
+[2024-07-01 02:16:38] sql.INFO: [42.64] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 02:16:38] sql.INFO: [80.23] select * from `menu` [] []
+[2024-07-01 02:16:39] sql.INFO: [42.72] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 02:16:39] sql.INFO: [115.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:16:43] sql.INFO: [45.48] select * from `menu` [] []
+[2024-07-01 02:16:43] sql.INFO: [3.73] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:17:14] sql.INFO: [4.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:17:14] sql.INFO: [3.68] select * from `menu` [] []
+[2024-07-01 02:17:45] sql.INFO: [175.43] select * from `menu` [] []
+[2024-07-01 02:17:45] sql.INFO: [32.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:25:55] sql.INFO: [27.12] select * from `menu` [] []
+[2024-07-01 02:25:55] sql.INFO: [83.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:25:58] sql.INFO: [10.19] select * from `menu` [] []
+[2024-07-01 02:25:58] sql.INFO: [9.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:26:21] sql.INFO: [16.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:26:21] sql.INFO: [7.06] select * from `menu` [] []
+[2024-07-01 02:29:04] sql.INFO: [25.69] select * from `menu` [] []
+[2024-07-01 02:29:04] sql.INFO: [24.91] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:29:04] sql.INFO: [7.72] select * from `menu` [] []
+[2024-07-01 02:29:04] sql.INFO: [4.96] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:29:21] sql.INFO: [55.24] select * from `menu` [] []
+[2024-07-01 02:29:21] sql.INFO: [97.74] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:48:52] sql.INFO: [23.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:48:52] sql.INFO: [29.96] select * from `menu` [] []
+[2024-07-01 02:51:02] sql.INFO: [84.92] select * from `menu` [] []
+[2024-07-01 02:51:02] sql.INFO: [69.03] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:51:12] sql.INFO: [8.02] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 02:51:12] sql.INFO: [16.37] select * from `menu` [] []
+[2024-07-01 02:51:15] sql.INFO: [1.77] select * from `menu` [] []
+[2024-07-01 02:51:15] sql.INFO: [2.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:02:47] sql.INFO: [39.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:02:47] sql.INFO: [200.03] select * from `menu` [] []
+[2024-07-01 03:02:51] sql.INFO: [2.54] select * from `menu` [] []
+[2024-07-01 03:02:51] sql.INFO: [6.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:03:05] sql.INFO: [8.38] select * from `menu` [] []
+[2024-07-01 03:03:05] sql.INFO: [11.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:09:14] sql.INFO: [43.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:09:14] sql.INFO: [137.69] select * from `menu` [] []
+[2024-07-01 03:11:15] sql.INFO: [37.99] select * from `menu` [] []
+[2024-07-01 03:11:15] sql.INFO: [100.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:11:19] sql.INFO: [2.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:11:19] sql.INFO: [2.72] select * from `menu` [] []
+[2024-07-01 03:14:35] sql.INFO: [15.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:14:35] sql.INFO: [21.06] select * from `menu` [] []
+[2024-07-01 03:14:36] sql.INFO: [4.37] select * from `menu` [] []
+[2024-07-01 03:14:36] sql.INFO: [2.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:15:16] sql.INFO: [3.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:15:16] sql.INFO: [4.06] select * from `menu` [] []
+[2024-07-01 03:15:23] sql.INFO: [1.81] select * from `menu` [] []
+[2024-07-01 03:15:23] sql.INFO: [1.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:29:46] sql.INFO: [24.85] select * from `menu` [] []
+[2024-07-01 03:29:46] sql.INFO: [95.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:29:54] sql.INFO: [1.94] select * from `menu` [] []
+[2024-07-01 03:29:54] sql.INFO: [6.4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:31:50] sql.INFO: [29.97] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 03:31:50] sql.INFO: [39.51] select * from `menu` [] []
+[2024-07-01 03:32:32] sql.INFO: [19.62] select * from `menu` [] []
+[2024-07-01 03:32:32] sql.INFO: [13.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:10:47] sql.INFO: [105.39] select * from `menu` [] []
+[2024-07-01 05:10:48] sql.INFO: [171.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:10:53] sql.INFO: [2.83] select * from `menu` [] []
+[2024-07-01 05:10:53] sql.INFO: [2.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:14:17] sql.INFO: [11.2] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 05:14:17] sql.INFO: [5.24] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 05:14:20] sql.INFO: [489.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-01 05:14:20] sql.INFO: [69.02] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-01 05:14:45] sql.INFO: [65.96] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-01 05:14:45] sql.INFO: [6.24] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-01 05:14:45] sql.INFO: [182.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:14:45] sql.INFO: [322.87] select * from `menu` [] []
+[2024-07-01 05:19:28] sql.INFO: [134.87] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-01 05:19:28] sql.INFO: [136.01] select * from `menu` [] []
+[2024-07-01 05:19:28] sql.INFO: [155.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:19:28] sql.INFO: [5.53] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-01 05:21:37] sql.INFO: [112.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-01 05:21:37] sql.INFO: [64.32] select * from `menu` [] []
+[2024-07-01 05:21:37] sql.INFO: [233.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 05:21:38] sql.INFO: [6.56] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-01 06:08:54] sql.INFO: [43.05] select * from `menu` [] []
+[2024-07-01 06:08:54] sql.INFO: [47.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 06:27:27] sql.INFO: [56.2] select * from `menu` [] []
+[2024-07-01 06:27:27] sql.INFO: [54.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 06:55:29] sql.INFO: [30.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 06:55:29] sql.INFO: [31.67] select * from `menu` [] []
+[2024-07-01 07:17:23] sql.INFO: [92.38] select * from `menu` [] []
+[2024-07-01 07:17:23] sql.INFO: [92.87] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:37:51] sql.INFO: [28.22] select * from `menu` [] []
+[2024-07-01 07:37:51] sql.INFO: [50.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:37:56] sql.INFO: [5.84] select * from `menu` [] []
+[2024-07-01 07:37:56] sql.INFO: [10.01] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:38:09] sql.INFO: [6.51] select * from `menu` [] []
+[2024-07-01 07:38:09] sql.INFO: [8.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:53:10] sql.INFO: [40.71] select * from `menu` [] []
+[2024-07-01 07:53:10] sql.INFO: [42.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:54:53] sql.INFO: [198.77] select * from `menu` [] []
+[2024-07-01 07:54:53] sql.INFO: [147.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:56:49] sql.INFO: [40.33] select * from `menu` [] []
+[2024-07-01 07:56:49] sql.INFO: [53.87] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:57:35] sql.INFO: [9.62] select * from `menu` [] []
+[2024-07-01 07:57:35] sql.INFO: [14.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 07:59:45] sql.INFO: [199.15] select * from `menu` [] []
+[2024-07-01 07:59:45] sql.INFO: [203.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 08:04:06] sql.INFO: [202.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 08:04:06] sql.INFO: [333.69] select * from `menu` [] []
+[2024-07-01 08:33:55] sql.INFO: [23.12] select * from `menu` [] []
+[2024-07-01 08:33:55] sql.INFO: [45.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 08:37:56] sql.INFO: [63.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 08:37:56] sql.INFO: [4.8] select * from `menu` [] []
+[2024-07-01 08:45:07] sql.INFO: [68.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 08:45:07] sql.INFO: [75.83] select * from `menu` [] []
+[2024-07-01 09:10:39] sql.INFO: [75.43] select * from `menu` [] []
+[2024-07-01 09:10:39] sql.INFO: [101.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:11:34] sql.INFO: [2.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:11:34] sql.INFO: [6.76] select * from `menu` [] []
+[2024-07-01 09:18:59] sql.INFO: [169.89] select * from `menu` [] []
+[2024-07-01 09:18:59] sql.INFO: [49.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:35:24] sql.INFO: [51.84] select * from `menu` [] []
+[2024-07-01 09:35:24] sql.INFO: [46.77] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:37:56] sql.INFO: [65.76] select * from `menu` [] []
+[2024-07-01 09:37:56] sql.INFO: [179.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:42:10] sql.INFO: [151.49] select * from `menu` [] []
+[2024-07-01 09:42:10] sql.INFO: [153.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:42:53] sql.INFO: [5.58] select * from `menu` [] []
+[2024-07-01 09:42:53] sql.INFO: [35.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:43:58] sql.INFO: [16.85] select * from `menu` [] []
+[2024-07-01 09:43:58] sql.INFO: [40.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 09:59:28] sql.INFO: [126.13] select * from `menu` [] []
+[2024-07-01 09:59:28] sql.INFO: [21.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:00:24] sql.INFO: [50.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:00:24] sql.INFO: [122.68] select * from `menu` [] []
+[2024-07-01 10:01:47] sql.INFO: [35.32] select * from `menu` [] []
+[2024-07-01 10:01:47] sql.INFO: [136.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:01:59] sql.INFO: [19.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:01:59] sql.INFO: [4.51] select * from `menu` [] []
+[2024-07-01 10:02:54] sql.INFO: [8.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:02:54] sql.INFO: [4.3] select * from `menu` [] []
+[2024-07-01 10:05:36] sql.INFO: [100.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:05:36] sql.INFO: [102.27] select * from `menu` [] []
+[2024-07-01 10:06:00] sql.INFO: [14.79] select * from `menu` [] []
+[2024-07-01 10:06:00] sql.INFO: [68.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:11:51] sql.INFO: [25.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:11:51] sql.INFO: [40.1] select * from `menu` [] []
+[2024-07-01 10:12:17] sql.INFO: [10.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:12:17] sql.INFO: [46.46] select * from `menu` [] []
+[2024-07-01 10:16:03] sql.INFO: [108.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:16:03] sql.INFO: [135.53] select * from `menu` [] []
+[2024-07-01 10:24:22] sql.INFO: [42.84] select * from `menu` [] []
+[2024-07-01 10:24:22] sql.INFO: [6.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:37:50] sql.INFO: [54.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:37:51] sql.INFO: [307.08] select * from `menu` [] []
+[2024-07-01 10:40:47] sql.INFO: [124.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:40:47] sql.INFO: [54.21] select * from `menu` [] []
+[2024-07-01 10:50:02] sql.INFO: [36.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:50:02] sql.INFO: [149.77] select * from `menu` [] []
+[2024-07-01 10:51:39] sql.INFO: [132.58] select * from `menu` [] []
+[2024-07-01 10:51:39] sql.INFO: [174.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:54:24] sql.INFO: [69.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:54:24] sql.INFO: [114.47] select * from `menu` [] []
+[2024-07-01 10:55:34] sql.INFO: [292.76] select * from `menu` [] []
+[2024-07-01 10:55:34] sql.INFO: [318.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:56:16] sql.INFO: [112.07] select * from `menu` [] []
+[2024-07-01 10:56:16] sql.INFO: [135.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:57:13] sql.INFO: [4.88] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:57:13] sql.INFO: [6.79] select * from `menu` [] []
+[2024-07-01 10:58:30] sql.INFO: [42.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:58:30] sql.INFO: [49.26] select * from `menu` [] []
+[2024-07-01 10:58:59] sql.INFO: [96.7] select * from `menu` [] []
+[2024-07-01 10:58:59] sql.INFO: [97.58] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 10:59:52] sql.INFO: [39.68] select * from `menu` [] []
+[2024-07-01 10:59:53] sql.INFO: [122.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:01:08] sql.INFO: [464.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:01:08] sql.INFO: [524.12] select * from `menu` [] []
+[2024-07-01 11:01:58] sql.INFO: [4.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:01:58] sql.INFO: [2.29] select * from `menu` [] []
+[2024-07-01 11:02:43] sql.INFO: [14.08] select * from `menu` [] []
+[2024-07-01 11:02:43] sql.INFO: [227.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:04:22] sql.INFO: [244.79] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:04:22] sql.INFO: [273.15] select * from `menu` [] []
+[2024-07-01 11:07:48] sql.INFO: [52.93] select * from `menu` [] []
+[2024-07-01 11:07:48] sql.INFO: [72.27] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:08:36] sql.INFO: [3.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:08:36] sql.INFO: [2.17] select * from `menu` [] []
+[2024-07-01 11:21:23] sql.INFO: [149.05] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:21:23] sql.INFO: [148.51] select * from `menu` [] []
+[2024-07-01 11:24:57] sql.INFO: [26.24] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 11:24:57] sql.INFO: [20.66] select * from `menu` [] []
+[2024-07-01 12:18:20] sql.INFO: [63.85] select * from `menu` [] []
+[2024-07-01 12:18:20] sql.INFO: [33.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 12:21:24] sql.INFO: [13.66] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-01 12:21:24] sql.INFO: [6.04] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-01 12:21:28] sql.INFO: [2.18] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-07-01 12:21:28] sql.INFO: [18.13] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-07-01 12:21:29] sql.INFO: [2.73] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-07-01 12:21:29] sql.INFO: [3.94] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-07-01 12:21:32] sql.INFO: [5.19] select * from `menu` where (`pid` = '70') limit 2 offset 0 [] []
+[2024-07-01 12:21:32] sql.INFO: [2.22] select count(*) as aggregate from `menu` where (`pid` = '70') [] []
+[2024-07-01 12:21:32] sql.INFO: [17.67] delete from `menu` where (`id` = '70') [] []
+[2024-07-01 12:21:32] sql.INFO: [4.23] select * from `menu` where (`pid` = '49') limit 10 offset 0 [] []
+[2024-07-01 12:21:32] sql.INFO: [3.24] select count(*) as aggregate from `menu` where (`pid` = '49') [] []
+[2024-07-01 12:21:39] sql.INFO: [5.79] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-01 12:21:39] sql.INFO: [49.92] select * from `menu` [] []
+[2024-07-03 02:59:10] sql.INFO: [35] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-03 02:59:11] sql.INFO: [17.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 02:59:11] sql.INFO: [34.97] select * from `menu` [] []
+[2024-07-03 03:06:45] sql.INFO: [42.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:06:45] sql.INFO: [38.64] select * from `menu` [] []
+[2024-07-03 03:18:20] sql.INFO: [13.33] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:18:20] sql.INFO: [4.1] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:18:27] sql.INFO: [5.03] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-03 03:18:27] sql.INFO: [2.06] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-03 03:18:32] sql.INFO: [6.5] select * from `menu` where (`pid` = '69') limit 10 offset 0 [] []
+[2024-07-03 03:18:32] sql.INFO: [2.79] select count(*) as aggregate from `menu` where (`pid` = '69') [] []
+[2024-07-03 03:18:35] sql.INFO: [1.84] select * from `menu` [] []
+[2024-07-03 03:19:29] sql.INFO: [21.73] insert into `menu` (`label`, `pid`, `url`, `pid_arr`) values ('列表管理', '69', '/#/left/linkList', '[68,69]') [] []
+[2024-07-03 03:19:31] sql.INFO: [1.77] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:19:31] sql.INFO: [1.68] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:19:32] sql.INFO: [1.38] select * from `menu` [] []
+[2024-07-03 03:19:32] sql.INFO: [154.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:20:31] sql.INFO: [5.02] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:20:31] sql.INFO: [4.52] select * from `menu` [] []
+[2024-07-03 03:20:31] sql.INFO: [4.23] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:20:31] sql.INFO: [18.79] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:20:48] sql.INFO: [1.4] select * from `menu` [] []
+[2024-07-03 03:21:01] sql.INFO: [10.84] update `menu` set `pid` = '0', `label` = '扩展功能', `url` = '/#/left/linkList', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-06-27 17:22:51', `pid_arr` = '[0]', `menu`.`updated_at` = '2024-06-27 17:22:51' where (`id` = '68') [] []
+[2024-07-03 03:21:02] sql.INFO: [1.69] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:21:02] sql.INFO: [4.06] select * from `menu` [] []
+[2024-07-03 03:21:02] sql.INFO: [15.44] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:21:02] sql.INFO: [106.83] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:21:25] sql.INFO: [17.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:21:25] sql.INFO: [7.81] select * from `menu` [] []
+[2024-07-03 03:21:37] sql.INFO: [4.25] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:21:37] sql.INFO: [20.24] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:21:44] sql.INFO: [2.14] select * from `menu` where (`pid` = '67') limit 10 offset 0 [] []
+[2024-07-03 03:21:44] sql.INFO: [6.64] select count(*) as aggregate from `menu` where (`pid` = '67') [] []
+[2024-07-03 03:21:50] sql.INFO: [24.78] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-03 03:21:50] sql.INFO: [7.81] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-03 03:21:50] sql.INFO: [3.22] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 03:21:50] sql.INFO: [2.33] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 03:21:52] sql.INFO: [2.27] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-03 03:21:52] sql.INFO: [3.77] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-03 03:21:55] sql.INFO: [2.12] select * from `menu` where (`pid` = '69') limit 10 offset 0 [] []
+[2024-07-03 03:21:55] sql.INFO: [3.72] select count(*) as aggregate from `menu` where (`pid` = '69') [] []
+[2024-07-03 03:22:12] sql.INFO: [11.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:22:12] sql.INFO: [19.97] select * from `menu` [] []
+[2024-07-03 03:22:35] sql.INFO: [12.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:22:35] sql.INFO: [18.51] select * from `menu` [] []
+[2024-07-03 03:23:31] sql.INFO: [9.52] select * from `menu` [] []
+[2024-07-03 03:23:31] sql.INFO: [57.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:24:34] sql.INFO: [22.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:24:34] sql.INFO: [20.16] select * from `menu` [] []
+[2024-07-03 03:25:57] sql.INFO: [69.82] select * from `menu` [] []
+[2024-07-03 03:25:57] sql.INFO: [53.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:26:16] sql.INFO: [15.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:26:16] sql.INFO: [12.06] select * from `menu` [] []
+[2024-07-03 03:30:16] sql.INFO: [79.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 03:30:16] sql.INFO: [94.11] select * from `menu` [] []
+[2024-07-03 05:01:40] sql.INFO: [13.96] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 05:01:40] sql.INFO: [2.07] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 05:24:35] sql.INFO: [11.26] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 05:24:35] sql.INFO: [6.71] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 05:45:48] sql.INFO: [140.93] select * from `menu` [] []
+[2024-07-03 05:45:48] sql.INFO: [143.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 05:48:50] sql.INFO: [157.03] select * from `menu` [] []
+[2024-07-03 05:48:50] sql.INFO: [155.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 05:50:14] sql.INFO: [91.83] select * from `menu` [] []
+[2024-07-03 05:50:14] sql.INFO: [168.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 05:53:24] sql.INFO: [28.97] select * from `menu` [] []
+[2024-07-03 05:53:24] sql.INFO: [34.77] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 05:58:56] sql.INFO: [9.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 05:58:56] sql.INFO: [12.12] select * from `menu` [] []
+[2024-07-03 06:01:14] sql.INFO: [23.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 06:01:14] sql.INFO: [21.09] select * from `menu` [] []
+[2024-07-03 06:07:21] sql.INFO: [5.46] select * from `menu` [] []
+[2024-07-03 06:07:21] sql.INFO: [65.24] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 06:09:19] sql.INFO: [68.62] select * from `menu` [] []
+[2024-07-03 06:09:19] sql.INFO: [152.38] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 06:11:16] sql.INFO: [12.72] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 06:11:16] sql.INFO: [114.54] select * from `menu` [] []
+[2024-07-03 06:17:37] sql.INFO: [26.14] select * from `menu` [] []
+[2024-07-03 06:17:37] sql.INFO: [33.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 07:25:40] sql.INFO: [8.85] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 07:25:40] sql.INFO: [3.78] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 07:25:44] sql.INFO: [1.92] select * from `menu` [] []
+[2024-07-03 07:26:28] sql.INFO: [8.04] insert into `menu` (`pid`, `label`, `url`, `pid_arr`) values ('68', '广告管理', '/#/left/adPlace', '[68]') [] []
+[2024-07-03 07:26:30] sql.INFO: [2.11] select * from `menu` [] []
+[2024-07-03 07:26:31] sql.INFO: [53.17] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 07:26:31] sql.INFO: [28.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 07:26:31] sql.INFO: [4.82] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 07:26:36] sql.INFO: [4.8] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-03 07:26:36] sql.INFO: [3.63] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-03 07:26:40] sql.INFO: [3.18] select * from `menu` [] []
+[2024-07-03 07:26:45] sql.INFO: [8.71] update `menu` set `pid` = '68', `label` = '广告管理', `url` = '', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-07-03 15:26:28', `pid_arr` = '[68]', `menu`.`updated_at` = '2024-07-03 15:26:28' where (`id` = '72') [] []
+[2024-07-03 07:26:46] sql.INFO: [2.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 07:26:46] sql.INFO: [2.95] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 07:26:46] sql.INFO: [4.75] select * from `menu` [] []
+[2024-07-03 07:26:46] sql.INFO: [12.9] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 07:26:48] sql.INFO: [1.98] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-03 07:26:48] sql.INFO: [4.81] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-03 07:26:51] sql.INFO: [1.53] select * from `menu` where (`pid` = '72') limit 10 offset 0 [] []
+[2024-07-03 07:26:51] sql.INFO: [8.31] select count(*) as aggregate from `menu` where (`pid` = '72') [] []
+[2024-07-03 07:26:53] sql.INFO: [3.65] select * from `menu` [] []
+[2024-07-03 07:27:12] sql.INFO: [6.13] insert into `menu` (`pid`, `label`, `url`, `pid_arr`) values ('72', '广告位管理', '/#/left/adPlace', '[68,72]') [] []
+[2024-07-03 07:27:14] sql.INFO: [3.07] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 07:27:14] sql.INFO: [4.23] select * from `menu` [] []
+[2024-07-03 07:27:14] sql.INFO: [2.9] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 07:27:14] sql.INFO: [6.91] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 07:27:16] sql.INFO: [1.87] select * from `menu` [] []
+[2024-07-03 07:27:38] sql.INFO: [5.78] insert into `menu` (`label`, `pid`, `url`, `pid_arr`) values ('广告列表', '72', '/#/left/adList', '[68,72]') [] []
+[2024-07-03 07:27:39] sql.INFO: [21.3] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 07:27:39] sql.INFO: [5.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 07:27:39] sql.INFO: [7.76] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 07:27:39] sql.INFO: [2.52] select * from `menu` [] []
+[2024-07-03 08:13:48] sql.INFO: [13.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:13:48] sql.INFO: [17.06] select * from `menu` [] []
+[2024-07-03 08:14:16] sql.INFO: [3.9] select * from `menu` [] []
+[2024-07-03 08:14:16] sql.INFO: [8.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:14:24] sql.INFO: [1.85] select * from `menu` [] []
+[2024-07-03 08:14:24] sql.INFO: [11.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:15:00] sql.INFO: [3.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:15:00] sql.INFO: [4.74] select * from `menu` [] []
+[2024-07-03 08:15:15] sql.INFO: [6.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:15:15] sql.INFO: [14.57] select * from `menu` [] []
+[2024-07-03 08:15:35] sql.INFO: [16.49] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:15:35] sql.INFO: [16.79] select * from `menu` [] []
+[2024-07-03 08:15:42] sql.INFO: [4.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:15:42] sql.INFO: [5.01] select * from `menu` [] []
+[2024-07-03 08:16:34] sql.INFO: [8.52] select * from `menu` [] []
+[2024-07-03 08:16:34] sql.INFO: [10.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:16:52] sql.INFO: [6.56] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:16:52] sql.INFO: [5.19] select * from `menu` [] []
+[2024-07-03 08:16:59] sql.INFO: [24.36] select * from `menu` [] []
+[2024-07-03 08:16:59] sql.INFO: [325.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:17:39] sql.INFO: [7.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:17:39] sql.INFO: [3.99] select * from `menu` [] []
+[2024-07-03 08:18:14] sql.INFO: [5.67] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 08:18:14] sql.INFO: [5.76] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 08:18:20] sql.INFO: [5.88] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-03 08:18:20] sql.INFO: [8.35] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-03 08:18:22] sql.INFO: [2.4] select * from `menu` where (`pid` = '72') limit 10 offset 0 [] []
+[2024-07-03 08:18:22] sql.INFO: [4.2] select count(*) as aggregate from `menu` where (`pid` = '72') [] []
+[2024-07-03 08:27:36] sql.INFO: [46.27] select * from `menu` [] []
+[2024-07-03 08:27:42] sql.INFO: [9.48] update `menu` set `pid` = '72', `label` = '广告位管理', `url` = '/#/left/adPlaceList', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-07-03 15:27:12', `pid_arr` = '[72]', `menu`.`updated_at` = '2024-07-03 15:27:12' where (`id` = '73') [] []
+[2024-07-03 08:27:47] sql.INFO: [22.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:27:47] sql.INFO: [24.23] select * from `menu` [] []
+[2024-07-03 08:27:47] sql.INFO: [81.56] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 08:27:47] sql.INFO: [2.12] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 08:35:37] sql.INFO: [63.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:35:37] sql.INFO: [117.74] select * from `menu` [] []
+[2024-07-03 08:37:18] sql.INFO: [7.23] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-03 08:37:23] sql.INFO: [1.76] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-03 08:44:46] sql.INFO: [23.8] select * from `menu` [] []
+[2024-07-03 08:44:46] sql.INFO: [19.05] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:44:50] sql.INFO: [3.81] select * from `menu` [] []
+[2024-07-03 08:44:50] sql.INFO: [5.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:45:56] sql.INFO: [89.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:45:56] sql.INFO: [106.86] select * from `menu` [] []
+[2024-07-03 08:46:03] sql.INFO: [4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:46:04] sql.INFO: [2.5] select * from `menu` [] []
+[2024-07-03 08:52:13] sql.INFO: [43.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 08:52:13] sql.INFO: [44.84] select * from `menu` [] []
+[2024-07-03 08:52:20] sql.INFO: [11.2] select * from `menu` [] []
+[2024-07-03 08:52:20] sql.INFO: [10.38] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 09:23:55] sql.INFO: [56.28] select * from `menu` [] []
+[2024-07-03 09:23:55] sql.INFO: [71.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-03 10:31:28] sql.INFO: [733.2] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 10:31:28] sql.INFO: [5.47] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-03 10:47:26] sql.INFO: [25.02] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-03 10:47:26] sql.INFO: [2.3] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 00:41:58] sql.INFO: [313.19] select * from `menu` [] []
+[2024-07-04 00:41:58] sql.INFO: [150] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:44:55] sql.INFO: [306.43] select * from `menu` [] []
+[2024-07-04 00:44:55] sql.INFO: [136.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:45:13] sql.INFO: [4.27] select * from `menu` [] []
+[2024-07-04 00:45:14] sql.INFO: [19.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:45:18] sql.INFO: [166.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:45:18] sql.INFO: [155.4] select * from `menu` [] []
+[2024-07-04 00:47:12] sql.INFO: [53.25] select * from `menu` [] []
+[2024-07-04 00:47:12] sql.INFO: [63.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:47:18] sql.INFO: [38.22] select * from `menu` [] []
+[2024-07-04 00:47:18] sql.INFO: [127.77] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:53:03] sql.INFO: [67.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:53:03] sql.INFO: [74.2] select * from `menu` [] []
+[2024-07-04 00:59:07] sql.INFO: [84.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 00:59:07] sql.INFO: [117.04] select * from `menu` [] []
+[2024-07-04 01:14:30] sql.INFO: [70.48] select * from `menu` [] []
+[2024-07-04 01:14:30] sql.INFO: [90.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:16:22] sql.INFO: [230.73] select * from `menu` [] []
+[2024-07-04 01:16:22] sql.INFO: [141.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:17:11] sql.INFO: [18.73] select * from `menu` [] []
+[2024-07-04 01:17:11] sql.INFO: [14.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:20:53] sql.INFO: [117.35] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:20:53] sql.INFO: [138.57] select * from `menu` [] []
+[2024-07-04 01:35:25] sql.INFO: [114.91] select * from `menu` [] []
+[2024-07-04 01:35:25] sql.INFO: [274.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:38:12] sql.INFO: [29.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 01:38:12] sql.INFO: [43.35] select * from `menu` [] []
+[2024-07-04 01:47:34] sql.INFO: [217] select * from `menu` [] []
+[2024-07-04 01:47:34] sql.INFO: [648.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:06:30] sql.INFO: [62.64] select * from `menu` [] []
+[2024-07-04 02:06:31] sql.INFO: [391.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:06:40] sql.INFO: [128.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:06:40] sql.INFO: [150.82] select * from `menu` [] []
+[2024-07-04 02:06:44] sql.INFO: [24.44] select * from `menu` [] []
+[2024-07-04 02:06:44] sql.INFO: [13.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:09:43] sql.INFO: [74.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:09:43] sql.INFO: [82.84] select * from `menu` [] []
+[2024-07-04 02:09:48] sql.INFO: [9.37] select * from `menu` [] []
+[2024-07-04 02:09:48] sql.INFO: [5.69] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:11:06] sql.INFO: [32.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:11:06] sql.INFO: [41.09] select * from `menu` [] []
+[2024-07-04 02:11:28] sql.INFO: [8.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:11:28] sql.INFO: [11.85] select * from `menu` [] []
+[2024-07-04 02:19:44] sql.INFO: [67.16] select * from `menu` [] []
+[2024-07-04 02:19:44] sql.INFO: [34.49] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:19:55] sql.INFO: [30.58] select * from `menu` [] []
+[2024-07-04 02:19:55] sql.INFO: [44.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:30:22] sql.INFO: [42.01] select * from `menu` [] []
+[2024-07-04 02:30:22] sql.INFO: [69.06] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:50:34] sql.INFO: [85.94] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 02:50:34] sql.INFO: [77.98] select * from `menu` [] []
+[2024-07-04 02:52:43] sql.INFO: [78.47] select * from `menu` [] []
+[2024-07-04 02:52:43] sql.INFO: [114.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 03:05:34] sql.INFO: [297.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 03:05:34] sql.INFO: [165.44] select * from `menu` [] []
+[2024-07-04 03:07:49] sql.INFO: [56.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 03:07:49] sql.INFO: [86.01] select * from `menu` [] []
+[2024-07-04 03:08:47] sql.INFO: [4.57] select * from `menu` [] []
+[2024-07-04 03:08:47] sql.INFO: [9.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 03:33:16] sql.INFO: [19.79] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 03:33:16] sql.INFO: [4.08] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 03:33:20] sql.INFO: [7.99] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-07-04 03:33:20] sql.INFO: [3.17] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-07-04 03:33:24] sql.INFO: [28.2] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-04 03:33:24] sql.INFO: [3.56] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-04 03:33:33] sql.INFO: [200.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-04 03:33:33] sql.INFO: [10.46] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-04 03:36:55] sql.INFO: [169.64] select * from `menu` [] []
+[2024-07-04 03:36:55] sql.INFO: [174.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:11:07] sql.INFO: [240.91] select * from `menu` [] []
+[2024-07-04 05:11:07] sql.INFO: [198.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:11:14] sql.INFO: [15.59] select * from `menu` [] []
+[2024-07-04 05:11:14] sql.INFO: [25.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:13:12] sql.INFO: [147.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:13:12] sql.INFO: [297.12] select * from `menu` [] []
+[2024-07-04 05:16:55] sql.INFO: [47.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:16:55] sql.INFO: [94.61] select * from `menu` [] []
+[2024-07-04 05:17:09] sql.INFO: [7.96] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:17:09] sql.INFO: [9.09] select * from `menu` [] []
+[2024-07-04 05:19:38] sql.INFO: [119.92] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:19:39] sql.INFO: [294.53] select * from `menu` [] []
+[2024-07-04 05:19:49] sql.INFO: [8.4] select * from `menu` [] []
+[2024-07-04 05:19:49] sql.INFO: [12.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:22:23] sql.INFO: [28.38] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-04 05:22:35] sql.INFO: [136.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:22:35] sql.INFO: [60.29] select * from `menu` [] []
+[2024-07-04 05:30:05] sql.INFO: [49.19] select * from `menu` [] []
+[2024-07-04 05:30:05] sql.INFO: [65.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:30:11] sql.INFO: [15.66] select * from `menu` [] []
+[2024-07-04 05:30:11] sql.INFO: [16.35] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:30:21] sql.INFO: [1803.24] select * from `menu` [] []
+[2024-07-04 05:30:21] sql.INFO: [2089.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:31:49] sql.INFO: [101.48] select * from `menu` [] []
+[2024-07-04 05:31:49] sql.INFO: [104.59] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:31:54] sql.INFO: [73.05] select * from `menu` [] []
+[2024-07-04 05:31:54] sql.INFO: [215.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:32:05] sql.INFO: [4.58] select * from `menu` [] []
+[2024-07-04 05:32:05] sql.INFO: [5.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:32:59] sql.INFO: [49.79] select * from `menu` [] []
+[2024-07-04 05:32:59] sql.INFO: [87.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:33:03] sql.INFO: [67.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:33:03] sql.INFO: [58.32] select * from `menu` [] []
+[2024-07-04 05:33:11] sql.INFO: [2.32] select * from `menu` [] []
+[2024-07-04 05:33:11] sql.INFO: [10.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:34:01] sql.INFO: [210.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:34:02] sql.INFO: [367.56] select * from `menu` [] []
+[2024-07-04 05:34:41] sql.INFO: [7.49] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 05:34:41] sql.INFO: [3.41] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 05:34:44] sql.INFO: [4.26] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-04 05:34:44] sql.INFO: [3.23] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-04 05:34:49] sql.INFO: [16.56] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-04 05:34:49] sql.INFO: [31.43] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-04 05:34:50] sql.INFO: [12.05] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 05:34:50] sql.INFO: [4.17] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 05:34:54] sql.INFO: [1.82] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-04 05:34:54] sql.INFO: [8.85] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-04 05:34:57] sql.INFO: [6.56] select * from `menu` where (`pid` = '72') limit 10 offset 0 [] []
+[2024-07-04 05:34:57] sql.INFO: [3.32] select count(*) as aggregate from `menu` where (`pid` = '72') [] []
+[2024-07-04 05:35:02] sql.INFO: [6.4] select * from `menu` [] []
+[2024-07-04 05:35:09] sql.INFO: [18.02] update `menu` set `pid` = '72', `label` = '广告列表', `url` = '/#/left/adList/0', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-07-03 15:27:38', `pid_arr` = '[72]', `menu`.`updated_at` = '2024-07-03 15:27:38' where (`id` = '74') [] []
+[2024-07-04 05:35:12] sql.INFO: [12.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:35:13] sql.INFO: [317.1] select * from `menu` [] []
+[2024-07-04 05:35:13] sql.INFO: [29.38] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 05:35:13] sql.INFO: [7.5] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 05:35:35] sql.INFO: [48.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:35:35] sql.INFO: [49.86] select * from `menu` [] []
+[2024-07-04 05:38:57] sql.INFO: [111.43] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:38:58] sql.INFO: [210.09] select * from `menu` [] []
+[2024-07-04 05:39:01] sql.INFO: [23.71] select * from `menu` [] []
+[2024-07-04 05:39:01] sql.INFO: [9.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:39:12] sql.INFO: [9.18] select * from `menu` [] []
+[2024-07-04 05:39:13] sql.INFO: [37.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:39:37] sql.INFO: [5.71] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 05:39:37] sql.INFO: [11.49] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 05:39:40] sql.INFO: [5.6] select * from `menu` where (`pid` = '68') limit 10 offset 0 [] []
+[2024-07-04 05:39:40] sql.INFO: [3.64] select count(*) as aggregate from `menu` where (`pid` = '68') [] []
+[2024-07-04 05:39:42] sql.INFO: [6.65] select * from `menu` where (`pid` = '72') limit 10 offset 0 [] []
+[2024-07-04 05:39:42] sql.INFO: [2.61] select count(*) as aggregate from `menu` where (`pid` = '72') [] []
+[2024-07-04 05:39:44] sql.INFO: [23.21] select * from `menu` [] []
+[2024-07-04 05:39:50] sql.INFO: [28.01] update `menu` set `pid` = '72', `label` = '广告列表', `url` = '/#/left/adList', `icon` = '', `sort` = '', `is_links` = '0', `hidden` = '0', `created_at` = '2024-07-03 15:27:38', `pid_arr` = '[72]', `menu`.`updated_at` = '2024-07-03 15:27:38' where (`id` = '74') [] []
+[2024-07-04 05:39:54] sql.INFO: [12.89] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 05:39:54] sql.INFO: [8.64] select * from `menu` [] []
+[2024-07-04 05:39:54] sql.INFO: [2.12] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 05:39:54] sql.INFO: [187.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 05:41:50] sql.INFO: [119.09] select * from `menu` [] []
+[2024-07-04 05:41:50] sql.INFO: [119.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 06:31:07] sql.INFO: [60.91] select * from `menu` [] []
+[2024-07-04 06:31:07] sql.INFO: [288.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 06:32:52] sql.INFO: [26.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 06:32:52] sql.INFO: [33.16] select * from `menu` [] []
+[2024-07-04 06:36:07] sql.INFO: [334.74] select * from `menu` [] []
+[2024-07-04 06:36:07] sql.INFO: [106.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 07:31:30] sql.INFO: [34.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 07:31:30] sql.INFO: [58.73] select * from `menu` [] []
+[2024-07-04 07:34:50] sql.INFO: [69.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 07:34:51] sql.INFO: [141.63] select * from `menu` [] []
+[2024-07-04 07:38:10] sql.INFO: [144.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 07:38:10] sql.INFO: [335.36] select * from `menu` [] []
+[2024-07-04 08:42:38] sql.INFO: [133.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 08:42:38] sql.INFO: [41.52] select * from `menu` [] []
+[2024-07-04 08:50:45] sql.INFO: [31.27] select * from `menu` [] []
+[2024-07-04 08:50:45] sql.INFO: [71.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 08:54:24] sql.INFO: [48.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 08:54:24] sql.INFO: [49.53] select * from `menu` [] []
+[2024-07-04 09:22:32] sql.INFO: [29.19] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 09:22:32] sql.INFO: [2.76] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 09:22:55] sql.INFO: [6.28] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-04 09:22:55] sql.INFO: [2.64] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-04 09:23:02] sql.INFO: [16.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-04 09:23:02] sql.INFO: [2.56] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-04 09:25:54] sql.INFO: [37.58] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-04 09:25:54] sql.INFO: [3.67] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-04 09:25:56] sql.INFO: [27.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-04 09:25:56] sql.INFO: [7.45] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-04 09:36:39] sql.INFO: [196.46] select * from `menu` [] []
+[2024-07-04 09:36:39] sql.INFO: [136.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 09:38:43] sql.INFO: [91.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 09:38:43] sql.INFO: [115.36] select * from `menu` [] []
+[2024-07-04 09:39:38] sql.INFO: [23.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 09:39:38] sql.INFO: [282.09] select * from `menu` [] []
+[2024-07-04 09:44:24] sql.INFO: [165.27] select * from `menu` [] []
+[2024-07-04 09:44:24] sql.INFO: [127.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 10:11:32] sql.INFO: [34.72] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 10:11:32] sql.INFO: [51.88] select * from `menu` [] []
+[2024-07-04 10:12:58] sql.INFO: [46.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-04 10:12:58] sql.INFO: [35.92] select * from `menu` [] []
+[2024-07-04 10:17:05] sql.INFO: [116.52] select * from `menu` [] []
+[2024-07-04 10:17:05] sql.INFO: [51.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:06:25] sql.INFO: [2168.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:06:25] sql.INFO: [2237.89] select * from `menu` [] []
+[2024-07-05 05:46:24] sql.INFO: [1600.31] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:46:24] sql.INFO: [1529.56] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:46:28] sql.INFO: [565.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:46:28] sql.INFO: [794.04] select * from `menu` [] []
+[2024-07-05 05:47:00] sql.INFO: [6.17] select * from `menu` [] []
+[2024-07-05 05:47:00] sql.INFO: [62.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:50:23] sql.INFO: [164.94] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:50:37] sql.INFO: [188.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:50:37] sql.INFO: [394.45] select * from `menu` [] []
+[2024-07-05 05:51:57] sql.INFO: [63.86] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:51:57] sql.INFO: [67.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:51:57] sql.INFO: [224] select * from `menu` [] []
+[2024-07-05 05:53:28] sql.INFO: [45.5] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:53:29] sql.INFO: [62.24] select * from `menu` [] []
+[2024-07-05 05:53:29] sql.INFO: [182.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:53:59] sql.INFO: [4.18] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:53:59] sql.INFO: [7.38] select * from `menu` [] []
+[2024-07-05 05:53:59] sql.INFO: [14.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 05:54:23] sql.INFO: [3.11] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 05:54:24] sql.INFO: [6.36] select * from `menu` [] []
+[2024-07-05 05:54:24] sql.INFO: [32.04] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 06:00:32] sql.INFO: [46.56] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 06:00:33] sql.INFO: [34.04] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 06:00:33] sql.INFO: [144.8] select * from `menu` [] []
+[2024-07-05 06:01:54] sql.INFO: [37.56] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 06:02:30] sql.INFO: [44.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 06:02:30] sql.INFO: [59.33] select * from `menu` [] []
+[2024-07-05 06:02:40] sql.INFO: [2.22] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 06:02:41] sql.INFO: [19] select * from `menu` [] []
+[2024-07-05 06:02:41] sql.INFO: [116.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 06:31:06] sql.INFO: [33.73] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 06:31:06] sql.INFO: [42.37] select * from `menu` [] []
+[2024-07-05 06:31:06] sql.INFO: [67.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 07:39:20] sql.INFO: [852.32] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 07:39:21] sql.INFO: [278.58] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 07:39:23] sql.INFO: [977.66] select * from `menu` [] []
+[2024-07-05 08:20:33] sql.INFO: [151.92] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 08:20:34] sql.INFO: [250.38] select * from `menu` [] []
+[2024-07-05 08:20:34] sql.INFO: [616.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 08:20:41] sql.INFO: [2.6] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-05 08:20:41] sql.INFO: [11.17] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-05 08:23:01] sql.INFO: [179.38] select * from `menu` [] []
+[2024-07-05 08:26:26] sql.INFO: [117.06] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-05 08:26:26] sql.INFO: [13.35] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-05 10:16:03] sql.INFO: [54.83] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 10:16:03] sql.INFO: [57.69] select * from `menu` [] []
+[2024-07-05 10:16:03] sql.INFO: [130.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 10:34:28] sql.INFO: [66.48] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-05 10:34:28] sql.INFO: [10.74] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-05 10:34:30] sql.INFO: [196.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-05 10:34:31] sql.INFO: [138.32] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-05 11:13:27] sql.INFO: [51.34] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-05 11:13:28] sql.INFO: [194.03] select * from `menu` [] []
+[2024-07-05 11:13:28] sql.INFO: [248.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-05 11:15:18] sql.INFO: [98.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-05 11:15:18] sql.INFO: [5.89] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-09 07:49:56] sql.INFO: [926.72] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-09 07:49:56] sql.INFO: [76.68] select * from `menu` [] []
+[2024-07-09 07:49:56] sql.INFO: [153.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 07:50:03] sql.INFO: [14.56] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 07:50:03] sql.INFO: [110.15] select * from `menu` [] []
+[2024-07-09 07:53:43] sql.INFO: [165.01] select * from `menu` [] []
+[2024-07-09 07:53:43] sql.INFO: [225.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:25:27] sql.INFO: [56.26] select * from `menu` [] []
+[2024-07-09 09:25:27] sql.INFO: [70.36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:28:47] sql.INFO: [90.43] select * from `menu` [] []
+[2024-07-09 09:28:47] sql.INFO: [128.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:30:47] sql.INFO: [42.6] select * from `menu` [] []
+[2024-07-09 09:30:47] sql.INFO: [107.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:33:18] sql.INFO: [57.51] select * from `menu` [] []
+[2024-07-09 09:33:18] sql.INFO: [108.03] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:33:43] sql.INFO: [4.74] select * from `menu` [] []
+[2024-07-09 09:33:43] sql.INFO: [10.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:34:45] sql.INFO: [33.88] select * from `menu` [] []
+[2024-07-09 09:34:45] sql.INFO: [51.29] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:42:04] sql.INFO: [64.43] select * from `menu` [] []
+[2024-07-09 09:42:04] sql.INFO: [177.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:46:42] sql.INFO: [143.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:46:42] sql.INFO: [564.81] select * from `menu` [] []
+[2024-07-09 09:48:08] sql.INFO: [78.96] select * from `menu` [] []
+[2024-07-09 09:48:08] sql.INFO: [95.4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 09:54:17] sql.INFO: [230.06] select * from `menu` [] []
+[2024-07-09 09:54:17] sql.INFO: [286.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 10:00:10] sql.INFO: [28.5] select * from `menu` [] []
+[2024-07-09 10:00:10] sql.INFO: [45.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-09 10:03:04] sql.INFO: [129.43] select * from `menu` [] []
+[2024-07-09 10:03:04] sql.INFO: [201.59] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:16:18] sql.INFO: [146.53] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:16:18] sql.INFO: [246.59] select * from `menu` [] []
+[2024-07-10 02:16:29] sql.INFO: [6.99] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:16:29] sql.INFO: [15.92] select * from `menu` [] []
+[2024-07-10 02:16:50] sql.INFO: [25.79] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-10 02:16:50] sql.INFO: [49.28] select * from `menu` [] []
+[2024-07-10 02:16:50] sql.INFO: [8.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:16:57] sql.INFO: [26.57] select * from `menu` [] []
+[2024-07-10 02:16:58] sql.INFO: [113.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:43:22] sql.INFO: [380.78] select * from `menu` [] []
+[2024-07-10 02:43:22] sql.INFO: [591.84] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:43:47] sql.INFO: [35.8] select * from `menu` [] []
+[2024-07-10 02:43:47] sql.INFO: [211.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:48:00] sql.INFO: [234.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:48:00] sql.INFO: [234.23] select * from `menu` [] []
+[2024-07-10 02:50:33] sql.INFO: [73.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:50:33] sql.INFO: [69.28] select * from `menu` [] []
+[2024-07-10 02:50:37] sql.INFO: [11.62] select * from `menu` [] []
+[2024-07-10 02:50:37] sql.INFO: [80.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 02:52:01] sql.INFO: [339.39] select * from `menu` [] []
+[2024-07-10 02:52:01] sql.INFO: [129.29] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 03:17:44] sql.INFO: [78.53] select * from `menu` [] []
+[2024-07-10 03:17:44] sql.INFO: [142.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:03:07] sql.INFO: [83.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:03:07] sql.INFO: [102.01] select * from `menu` [] []
+[2024-07-10 05:17:37] sql.INFO: [26.11] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-10 05:17:37] sql.INFO: [75.26] select * from `menu` [] []
+[2024-07-10 05:17:37] sql.INFO: [4.87] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:47:12] sql.INFO: [365.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:47:12] sql.INFO: [393.31] select * from `menu` [] []
+[2024-07-10 05:47:47] sql.INFO: [28.2] select * from `menu` [] []
+[2024-07-10 05:47:48] sql.INFO: [39.74] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:52:54] sql.INFO: [95.91] select * from `menu` [] []
+[2024-07-10 05:52:54] sql.INFO: [59.79] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:53:03] sql.INFO: [4.43] select * from `menu` [] []
+[2024-07-10 05:53:04] sql.INFO: [30.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:55:38] sql.INFO: [96.03] select * from `menu` [] []
+[2024-07-10 05:55:39] sql.INFO: [70.03] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:55:48] sql.INFO: [7.13] select * from `menu` [] []
+[2024-07-10 05:55:48] sql.INFO: [4.6] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 05:58:30] sql.INFO: [35.86] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-10 05:58:30] sql.INFO: [42.53] select * from `menu` [] []
+[2024-07-10 05:58:30] sql.INFO: [68.26] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 06:00:38] sql.INFO: [88.59] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 06:00:38] sql.INFO: [82.29] select * from `menu` [] []
+[2024-07-10 06:00:45] sql.INFO: [6.72] select * from `menu` [] []
+[2024-07-10 06:00:45] sql.INFO: [81.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 06:00:55] sql.INFO: [8.93] select * from `menu` [] []
+[2024-07-10 06:00:56] sql.INFO: [5.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-10 06:20:33] sql.INFO: [41.07] select * from `menu` [] []
+[2024-07-10 06:20:33] sql.INFO: [309.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 00:48:15] sql.INFO: [578.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 00:48:15] sql.INFO: [705.26] select * from `menu` [] []
+[2024-07-11 01:22:33] sql.INFO: [381.74] select * from `menu` [] []
+[2024-07-11 01:22:33] sql.INFO: [419.35] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:24:13] sql.INFO: [213.66] select * from `menu` [] []
+[2024-07-11 01:24:14] sql.INFO: [867.38] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:25:48] sql.INFO: [48.26] select * from `menu` [] []
+[2024-07-11 01:25:48] sql.INFO: [163.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:27:35] sql.INFO: [107.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:27:35] sql.INFO: [54.62] select * from `menu` [] []
+[2024-07-11 01:29:20] sql.INFO: [103.7] select * from `menu` [] []
+[2024-07-11 01:29:20] sql.INFO: [137.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:30:09] sql.INFO: [9.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:30:09] sql.INFO: [10.85] select * from `menu` [] []
+[2024-07-11 01:55:05] sql.INFO: [123.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 01:55:05] sql.INFO: [162.94] select * from `menu` [] []
+[2024-07-11 06:24:50] sql.INFO: [481.45] select * from `menu` [] []
+[2024-07-11 06:24:50] sql.INFO: [458.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:24:55] sql.INFO: [26.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:24:55] sql.INFO: [48.13] select * from `menu` [] []
+[2024-07-11 06:36:21] sql.INFO: [158.29] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:36:21] sql.INFO: [120.99] select * from `menu` [] []
+[2024-07-11 06:36:28] sql.INFO: [149.69] select * from `menu` [] []
+[2024-07-11 06:36:28] sql.INFO: [145.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:36:44] sql.INFO: [3.24] select * from `menu` [] []
+[2024-07-11 06:36:44] sql.INFO: [66.29] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:37:18] sql.INFO: [4.86] select * from `menu` [] []
+[2024-07-11 06:37:18] sql.INFO: [5.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:37:26] sql.INFO: [23.35] select * from `menu` [] []
+[2024-07-11 06:37:26] sql.INFO: [2.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:37:32] sql.INFO: [17.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 06:37:33] sql.INFO: [155.44] select * from `menu` [] []
+[2024-07-11 07:13:28] sql.INFO: [189.03] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:13:28] sql.INFO: [290.46] select * from `menu` [] []
+[2024-07-11 07:15:17] sql.INFO: [102.54] select * from `menu` [] []
+[2024-07-11 07:15:17] sql.INFO: [103.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:23:39] sql.INFO: [126.31] select * from `menu` [] []
+[2024-07-11 07:23:39] sql.INFO: [189.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:25:35] sql.INFO: [73.41] select * from `menu` [] []
+[2024-07-11 07:25:36] sql.INFO: [100.4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:27:28] sql.INFO: [78] select * from `menu` [] []
+[2024-07-11 07:27:28] sql.INFO: [77.4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:28:34] sql.INFO: [46.17] select * from `menu` [] []
+[2024-07-11 07:28:34] sql.INFO: [97.04] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:29:32] sql.INFO: [10.61] select * from `menu` [] []
+[2024-07-11 07:29:32] sql.INFO: [13.02] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:31:48] sql.INFO: [46.84] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:31:48] sql.INFO: [92.4] select * from `menu` [] []
+[2024-07-11 07:32:14] sql.INFO: [2.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:32:14] sql.INFO: [4.21] select * from `menu` [] []
+[2024-07-11 07:32:51] sql.INFO: [6.35] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:32:51] sql.INFO: [2.71] select * from `menu` [] []
+[2024-07-11 07:34:13] sql.INFO: [63.52] select * from `menu` [] []
+[2024-07-11 07:34:13] sql.INFO: [98.27] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:36:18] sql.INFO: [205.14] select * from `menu` [] []
+[2024-07-11 07:36:18] sql.INFO: [199.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:37:50] sql.INFO: [55.76] select * from `menu` [] []
+[2024-07-11 07:37:50] sql.INFO: [232.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:37:53] sql.INFO: [3.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:37:53] sql.INFO: [3.23] select * from `menu` [] []
+[2024-07-11 07:45:05] sql.INFO: [134.63] select * from `menu` [] []
+[2024-07-11 07:45:06] sql.INFO: [121.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:47:22] sql.INFO: [27.14] select * from `menu` [] []
+[2024-07-11 07:47:22] sql.INFO: [93.27] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:47:50] sql.INFO: [34.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:47:50] sql.INFO: [24.41] select * from `menu` [] []
+[2024-07-11 07:48:11] sql.INFO: [8.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:48:11] sql.INFO: [12.31] select * from `menu` [] []
+[2024-07-11 07:48:42] sql.INFO: [25.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:48:42] sql.INFO: [38.71] select * from `menu` [] []
+[2024-07-11 07:49:35] sql.INFO: [18.6] select * from `menu` [] []
+[2024-07-11 07:49:35] sql.INFO: [1.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:50:21] sql.INFO: [5.02] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 07:50:21] sql.INFO: [6.57] select * from `menu` [] []
+[2024-07-11 08:22:47] sql.INFO: [57.94] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:22:47] sql.INFO: [154.66] select * from `menu` [] []
+[2024-07-11 08:23:41] sql.INFO: [1.39] select * from `menu` [] []
+[2024-07-11 08:23:41] sql.INFO: [10.38] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:25:02] sql.INFO: [45.51] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-11 08:25:02] sql.INFO: [21.88] select * from `menu` [] []
+[2024-07-11 08:25:02] sql.INFO: [71.57] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:25:30] sql.INFO: [24.56] select * from `menu` [] []
+[2024-07-11 08:25:30] sql.INFO: [41.01] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:25:46] sql.INFO: [9.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:25:46] sql.INFO: [7.5] select * from `menu` [] []
+[2024-07-11 08:25:55] sql.INFO: [29.13] select * from `menu` [] []
+[2024-07-11 08:25:55] sql.INFO: [14.21] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:26:16] sql.INFO: [6.51] select * from `menu` [] []
+[2024-07-11 08:26:16] sql.INFO: [8.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:32:36] sql.INFO: [57.57] select * from `menu` [] []
+[2024-07-11 08:32:36] sql.INFO: [154.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 08:38:54] sql.INFO: [83.88] select * from `menu` [] []
+[2024-07-11 08:38:54] sql.INFO: [87.03] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:04:06] sql.INFO: [45.05] select * from `menu` [] []
+[2024-07-11 10:04:06] sql.INFO: [45.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:15:27] sql.INFO: [181.88] select * from `menu` [] []
+[2024-07-11 10:15:27] sql.INFO: [177.97] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:16:40] sql.INFO: [172.94] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:16:40] sql.INFO: [167.96] select * from `menu` [] []
+[2024-07-11 10:25:11] sql.INFO: [74.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:25:11] sql.INFO: [76.35] select * from `menu` [] []
+[2024-07-11 10:25:19] sql.INFO: [12.54] select * from `menu` [] []
+[2024-07-11 10:25:19] sql.INFO: [10.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:27:40] sql.INFO: [145.73] select * from `menu` [] []
+[2024-07-11 10:27:41] sql.INFO: [426.06] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:27:42] sql.INFO: [70.58] select * from `menu` [] []
+[2024-07-11 10:27:42] sql.INFO: [306.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:27:44] sql.INFO: [2.6] select * from `menu` [] []
+[2024-07-11 10:27:44] sql.INFO: [6.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:28:58] sql.INFO: [28.75] select * from `menu` [] []
+[2024-07-11 10:28:58] sql.INFO: [101.38] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:29:03] sql.INFO: [3.22] select * from `menu` [] []
+[2024-07-11 10:29:03] sql.INFO: [4.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:29:19] sql.INFO: [7.6] select * from `menu` [] []
+[2024-07-11 10:29:19] sql.INFO: [3.91] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:31:36] sql.INFO: [87.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:31:36] sql.INFO: [126.31] select * from `menu` [] []
+[2024-07-11 10:31:41] sql.INFO: [13.41] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:31:41] sql.INFO: [10.41] select * from `menu` [] []
+[2024-07-11 10:31:42] sql.INFO: [34.59] select * from `menu` [] []
+[2024-07-11 10:31:42] sql.INFO: [107.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:02] sql.INFO: [3.47] select * from `menu` [] []
+[2024-07-11 10:32:02] sql.INFO: [5.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:08] sql.INFO: [3.86] select * from `menu` [] []
+[2024-07-11 10:32:08] sql.INFO: [248.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:18] sql.INFO: [5.86] select * from `menu` [] []
+[2024-07-11 10:32:18] sql.INFO: [8.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:23] sql.INFO: [64.72] select * from `menu` [] []
+[2024-07-11 10:32:24] sql.INFO: [248.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:31] sql.INFO: [14.92] select * from `menu` [] []
+[2024-07-11 10:32:31] sql.INFO: [2.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:32:37] sql.INFO: [3.64] select * from `menu` [] []
+[2024-07-11 10:32:37] sql.INFO: [3.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:33:18] sql.INFO: [5.47] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:33:18] sql.INFO: [4.25] select * from `menu` [] []
+[2024-07-11 10:33:21] sql.INFO: [2.8] select * from `menu` [] []
+[2024-07-11 10:33:21] sql.INFO: [6.56] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-11 10:33:30] sql.INFO: [3.79] select * from `menu` [] []
+[2024-07-11 10:33:30] sql.INFO: [3.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-12 00:23:07] sql.INFO: [34.21] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-12 00:23:08] sql.INFO: [369.26] select * from `menu` [] []
+[2024-07-12 00:42:24] sql.INFO: [493.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-12 00:42:24] sql.INFO: [504.46] select * from `menu` [] []
+[2024-07-12 00:42:57] sql.INFO: [14.45] select * from `menu` [] []
+[2024-07-12 00:42:57] sql.INFO: [142.84] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-12 00:43:03] sql.INFO: [12.42] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-12 00:43:03] sql.INFO: [21.23] select * from `menu` [] []
+[2024-07-12 00:44:00] sql.INFO: [2.55] select * from `menu` [] []
+[2024-07-12 00:44:00] sql.INFO: [2.24] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-15 02:51:01] sql.INFO: [1464.15] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-15 02:51:02] sql.INFO: [85.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-15 02:51:02] sql.INFO: [120.42] select * from `menu` [] []
+[2024-07-15 07:05:17] sql.INFO: [325.81] select * from `menu` [] []
+[2024-07-15 07:05:17] sql.INFO: [350.36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-15 07:10:34] sql.INFO: [40.23] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-15 07:10:34] sql.INFO: [31.15] select * from `menu` [] []
+[2024-07-15 07:10:34] sql.INFO: [41.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:07:23] sql.INFO: [82.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:07:23] sql.INFO: [47.42] select * from `menu` [] []
+[2024-07-17 02:08:56] sql.INFO: [26.87] select * from `menu` [] []
+[2024-07-17 02:08:56] sql.INFO: [38.41] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:10:29] sql.INFO: [80.79] select * from `menu` [] []
+[2024-07-17 02:10:29] sql.INFO: [23.04] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:11:04] sql.INFO: [27.85] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-17 02:11:04] sql.INFO: [15.13] select * from `menu` [] []
+[2024-07-17 02:11:04] sql.INFO: [20.43] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:11:07] sql.INFO: [121.07] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-17 02:11:07] sql.INFO: [2.95] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-17 02:11:38] sql.INFO: [38.97] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-17 02:11:39] sql.INFO: [2.79] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-17 02:11:42] sql.INFO: [14.5] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-17 02:11:42] sql.INFO: [2.05] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-17 02:11:46] sql.INFO: [2.82] select * from `menu` [] []
+[2024-07-17 02:12:05] sql.INFO: [2.41] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-17 02:12:05] sql.INFO: [82.4] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-17 02:12:09] sql.INFO: [44.14] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-17 02:12:09] sql.INFO: [11.51] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-17 02:13:57] sql.INFO: [30.47] select * from `role` where (`role_name` like '%g%') [] []
+[2024-07-17 02:13:57] sql.INFO: [10.56] select count(*) as aggregate from `role` where (`role_name` like '%g%') [] []
+[2024-07-17 02:14:00] sql.INFO: [8.71] select * from `role` where (`role_name` like '%guan%') [] []
+[2024-07-17 02:14:00] sql.INFO: [4.46] select count(*) as aggregate from `role` where (`role_name` like '%guan%') [] []
+[2024-07-17 02:14:02] sql.INFO: [9.94] select * from `role` where (`role_name` like '%管%') [] []
+[2024-07-17 02:14:02] sql.INFO: [5.51] select count(*) as aggregate from `role` where (`role_name` like '%管%') [] []
+[2024-07-17 02:14:38] sql.INFO: [31.76] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-17 02:14:38] sql.INFO: [19.52] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-17 02:28:25] sql.INFO: [56.54] select * from `menu` [] []
+[2024-07-17 02:28:25] sql.INFO: [105.64] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:43:18] sql.INFO: [159.84] select * from `menu` [] []
+[2024-07-17 02:43:18] sql.INFO: [165.41] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 02:44:57] sql.INFO: [23.67] select * from `menu` [] []
+[2024-07-17 02:44:57] sql.INFO: [47.5] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:02:19] sql.INFO: [66.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:02:20] sql.INFO: [7.81] select * from `menu` [] []
+[2024-07-17 03:23:17] sql.INFO: [72.31] select * from `menu` [] []
+[2024-07-17 03:23:17] sql.INFO: [131.17] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:23:35] sql.INFO: [4.77] select * from `menu` [] []
+[2024-07-17 03:23:35] sql.INFO: [23.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:24:48] sql.INFO: [215.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:24:48] sql.INFO: [244.79] select * from `menu` [] []
+[2024-07-17 03:26:12] sql.INFO: [121.05] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:26:12] sql.INFO: [231.32] select * from `menu` [] []
+[2024-07-17 03:27:33] sql.INFO: [58.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-17 03:27:33] sql.INFO: [83.66] select * from `menu` [] []
+[2024-07-18 01:12:58] sql.INFO: [1155.75] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-18 01:12:59] sql.INFO: [105.26] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 01:12:59] sql.INFO: [321.43] select * from `menu` [] []
+[2024-07-18 02:11:55] sql.INFO: [33.84] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:11:55] sql.INFO: [1.84] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:12:37] sql.INFO: [7.29] select * from `menu` [] []
+[2024-07-18 02:12:51] sql.INFO: [23.64] update `role` set `rule` = '["1","4","8","33","34","35","64","58","59","60","65","66","67","49","51","52","68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '32', `role`.`updated_at` = '2024-07-18 02:12:51' where (`id` = '15') [] []
+[2024-07-18 02:12:51] sql.INFO: [3.8] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:12:51] sql.INFO: [3.94] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:14:07] sql.INFO: [28.73] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:14:07] sql.INFO: [2.82] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:14:30] sql.INFO: [79.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-18 02:14:31] sql.INFO: [13.38] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-18 02:14:48] sql.INFO: [4.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 10 [] []
+[2024-07-18 02:14:48] sql.INFO: [6.86] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-18 02:15:00] sql.INFO: [14.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-18 02:15:00] sql.INFO: [6.42] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-18 02:15:23] sql.INFO: [2.64] select * from `user` where (`user_name` = '1' and `id` != '65') limit 1 [] []
+[2024-07-18 02:15:33] sql.INFO: [6.3] select * from `user` where (`user_name` = '2' and `id` != '65') limit 1 [] []
+[2024-07-18 02:15:37] sql.INFO: [1.55] select * from `user` where (`user_name` = '11' and `id` != '65') limit 1 [] []
+[2024-07-18 02:15:47] sql.INFO: [1.86] select * from `user` where (`user_name` = '11' and `id` != '65') limit 1 [] []
+[2024-07-18 02:15:47] sql.INFO: [4.14] update `user` set `user_name` = '11', `avatar` = 'http://192.168.31.193:9501/image/20240626/1719388564943564.png', `mobile` = '15866666665', `status` = '1', `role_id` = '0', `email` = '123e@qq.com', `rong_token` = '', `level_id` = '1', `nickname` = '张老板1', `last_login_ip` = '192.168.1.128', `password` = 'c1cd95cf6ce4c06dc22ebd8826ba5456', `salt` = '655434', `user`.`updated_at` = '2024-07-18 02:15:47' where (`id` = '65') [] []
+[2024-07-18 02:15:47] sql.INFO: [7.32] update `user_info` set `id_card` = '615555444', `gender` = '1', `real_name` = '张三2', `job` = '管理员', `city_id` = '[22,303,2710,29981]', `birthday` = '', `user_info`.`updated_at` = '2024-07-18 02:15:47' where (`user_id` = '65') [] []
+[2024-07-18 02:15:47] sql.INFO: [3.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-18 02:15:47] sql.INFO: [13.38] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-18 02:15:52] sql.INFO: [2.18] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:15:52] sql.INFO: [5.05] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:20:08] sql.INFO: [13.41] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:20:08] sql.INFO: [2.68] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:20:08] sql.INFO: [6.72] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%112%') [] []
+[2024-07-18 02:20:08] sql.INFO: [3.49] select count(*) as aggregate from `user` where (`user`.`user_name` like '%112%') [] []
+[2024-07-18 02:20:10] sql.INFO: [3.57] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:20:10] sql.INFO: [3.88] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:20:10] sql.INFO: [4.17] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:20:10] sql.INFO: [4.46] select count(*) as aggregate from `user` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:27:01] sql.INFO: [15.94] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:27:01] sql.INFO: [1.86] select count(*) as aggregate from `user` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:40:08] sql.INFO: [19.56] select * from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:40:08] sql.INFO: [15.19] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:43:07] sql.INFO: [32.69] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:43:07] sql.INFO: [2.61] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 02:43:07] sql.INFO: [3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:43:07] sql.INFO: [1.45] select count(*) as aggregate from `user` where (`user`.`user_name` like '%11%') [] []
+[2024-07-18 02:44:03] sql.INFO: [1.69] select * from `user` where (`user_name` = '11') limit 1 [] []
+[2024-07-18 02:44:03] sql.INFO: [19] select * from `menu` [] []
+[2024-07-18 02:44:03] sql.INFO: [67.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 02:46:21] sql.INFO: [13.08] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:46:21] sql.INFO: [6.89] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:46:24] sql.INFO: [3.91] select * from `menu` [] []
+[2024-07-18 02:46:30] sql.INFO: [15.85] update `role` set `rule` = '["1","4","8","33","34","35","64","58","59","60","65","66","67","49","51","52","68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '32', `role`.`updated_at` = '2024-07-18 02:46:30' where (`id` = '15') [] []
+[2024-07-18 02:46:30] sql.INFO: [3.89] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:46:30] sql.INFO: [3.63] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:47:43] sql.INFO: [11.78] select * from `menu` [] []
+[2024-07-18 02:47:46] sql.INFO: [12.47] update `role` set `rule` = '["1","4","8","33","34","35","64","58","59","60","65","66","67","49","51","52","68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '32', `role`.`updated_at` = '2024-07-18 02:47:46' where (`id` = '15') [] []
+[2024-07-18 02:47:46] sql.INFO: [6.48] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:47:46] sql.INFO: [3.42] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:49:23] sql.INFO: [19.19] select * from `menu` [] []
+[2024-07-18 02:49:26] sql.INFO: [130.45] update `role` set `rule` = '["1","4","8","33","34","35","64","58","59","60","65","66","67","49","51","52","68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '32', `role`.`updated_at` = '2024-07-18 02:49:25' where (`id` = '15') [] []
+[2024-07-18 02:49:26] sql.INFO: [16.76] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:49:26] sql.INFO: [4.52] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 02:52:54] sql.INFO: [9.68] select * from `menu` [] []
+[2024-07-18 02:52:56] sql.INFO: [38.28] update `role` set `rule` = '["1","4","8","33","34","35","64","58","59","60","65","66","67","49","51","52","68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '65', `role`.`updated_at` = '2024-07-18 02:52:56' where (`id` = '15') [] []
+[2024-07-18 02:52:56] sql.INFO: [18.25] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 02:52:56] sql.INFO: [12.04] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 03:00:55] sql.INFO: [21.31] select * from `menu` [] []
+[2024-07-18 03:01:32] sql.INFO: [97.13] update `role` set `rule` = '["8","34","35","64","58","59","60","65","66","67","49","51","52","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '65', `role`.`updated_at` = '2024-07-18 03:01:32' where (`id` = '15') [] []
+[2024-07-18 03:01:32] sql.INFO: [2.4] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 03:01:32] sql.INFO: [32.47] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 03:02:03] sql.INFO: [3.13] select * from `menu` [] []
+[2024-07-18 03:15:00] sql.INFO: [267.34] update `role` set `rule` = '["74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '65', `role`.`updated_at` = '2024-07-18 03:14:59' where (`id` = '15') [] []
+[2024-07-18 03:15:00] sql.INFO: [6.61] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 03:15:00] sql.INFO: [9.42] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 03:15:52] sql.INFO: [7.13] select * from `menu` [] []
+[2024-07-18 03:17:20] sql.INFO: [42.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 03:17:20] sql.INFO: [9.93] select * from `menu` [] []
+[2024-07-18 03:17:20] sql.INFO: [200.11] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 03:17:20] sql.INFO: [2.78] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 03:17:24] sql.INFO: [8.85] select * from `menu` [] []
+[2024-07-18 03:25:51] sql.INFO: [18.02] select * from `menu` [] []
+[2024-07-18 03:27:27] sql.INFO: [26.26] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 03:27:27] sql.INFO: [7.08] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 03:27:28] sql.INFO: [128.63] select * from `menu` [] []
+[2024-07-18 03:27:28] sql.INFO: [535.08] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 03:27:31] sql.INFO: [4.21] select * from `menu` [] []
+[2024-07-18 05:07:32] sql.INFO: [48.3] select * from `menu` [] []
+[2024-07-18 05:07:45] sql.INFO: [443.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 05:07:45] sql.INFO: [168.51] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:07:45] sql.INFO: [198.98] select * from `menu` [] []
+[2024-07-18 05:07:45] sql.INFO: [9.31] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 05:07:48] sql.INFO: [2.43] select * from `menu` [] []
+[2024-07-18 05:08:50] sql.INFO: [131.67] select * from `menu` [] []
+[2024-07-18 05:10:21] sql.INFO: [80.12] select * from `menu` [] []
+[2024-07-18 05:13:54] sql.INFO: [282.29] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:13:54] sql.INFO: [3.71] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 05:13:55] sql.INFO: [631.14] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 05:13:55] sql.INFO: [280.87] select * from `menu` [] []
+[2024-07-18 05:13:58] sql.INFO: [32.45] select * from `menu` [] []
+[2024-07-18 05:14:24] sql.INFO: [2.37] select * from `menu` [] []
+[2024-07-18 05:39:14] sql.INFO: [110.34] select * from `menu` [] []
+[2024-07-18 05:39:21] sql.INFO: [1.83] select * from `menu` [] []
+[2024-07-18 05:40:52] sql.INFO: [13.62] select * from `menu` [] []
+[2024-07-18 05:43:53] sql.INFO: [145.92] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:43:53] sql.INFO: [2.37] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 05:43:53] sql.INFO: [124.67] select * from `menu` [] []
+[2024-07-18 05:43:53] sql.INFO: [128.41] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 05:43:56] sql.INFO: [4.29] select * from `menu` [] []
+[2024-07-18 05:43:59] sql.INFO: [933.4] update `role` set `rule` = '["68","72","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '65', `role`.`updated_at` = '2024-07-18 05:43:58' where (`id` = '15') [] []
+[2024-07-18 05:44:00] sql.INFO: [185.01] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:44:00] sql.INFO: [66.04] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 05:44:13] sql.INFO: [4.6] select * from `menu` [] []
+[2024-07-18 05:44:28] sql.INFO: [72.7] update `role` set `rule` = '["68","69","71","72","73","74"]', `id` = '15', `role_name` = '三农市场网-管理员', `user_id` = '65', `role`.`updated_at` = '2024-07-18 05:44:28' where (`id` = '15') [] []
+[2024-07-18 05:44:28] sql.INFO: [1.46] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:44:28] sql.INFO: [3.45] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 05:50:56] sql.INFO: [66.24] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 05:50:56] sql.INFO: [70.35] select * from `menu` [] []
+[2024-07-18 05:50:56] sql.INFO: [67.97] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 05:50:56] sql.INFO: [14.22] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 06:03:57] sql.INFO: [25.67] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 06:03:58] sql.INFO: [11.87] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 06:05:13] sql.INFO: [77.42] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 06:05:13] sql.INFO: [6.47] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 06:06:54] sql.INFO: [16.01] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-18 06:06:54] sql.INFO: [4.48] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-18 06:27:13] sql.INFO: [55.77] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 06:27:13] sql.INFO: [4.07] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 06:27:58] sql.INFO: [1.72] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 06:27:58] sql.INFO: [9.05] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 07:02:55] sql.INFO: [60.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 07:02:56] sql.INFO: [236.31] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 07:02:56] sql.INFO: [240.53] select * from `menu` [] []
+[2024-07-18 07:02:56] sql.INFO: [4.18] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 07:04:48] sql.INFO: [17.65] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 07:04:48] sql.INFO: [19.17] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 07:04:48] sql.INFO: [110.02] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 07:11:07] sql.INFO: [99.17] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-18 07:11:07] sql.INFO: [1.97] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-18 07:11:10] sql.INFO: [5.57] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-18 07:11:10] sql.INFO: [2.33] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-18 07:11:40] sql.INFO: [2.25] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-18 07:11:40] sql.INFO: [2.31] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '65' limit 1 [] []
+[2024-07-18 07:12:10] sql.INFO: [129.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:12:32] sql.INFO: [10.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:12:59] sql.INFO: [2.01] select * from `menu` [] []
+[2024-07-18 07:12:59] sql.INFO: [22.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:23:10] sql.INFO: [21.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 07:23:10] sql.INFO: [7.56] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 07:23:34] sql.INFO: [3.84] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 07:23:34] sql.INFO: [2.71] select count(*) as aggregate from `user` where (`user`.`user_name` like '%1%') [] []
+[2024-07-18 07:37:56] sql.INFO: [164.27] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:37:56] sql.INFO: [134.67] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:39:47] sql.INFO: [155.29] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:39:47] sql.INFO: [33.7] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:42:15] sql.INFO: [12.76] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-18 07:42:15] sql.INFO: [7.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:42:15] sql.INFO: [36.88] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:42:33] sql.INFO: [16.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:42:33] sql.INFO: [16.13] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:43:49] sql.INFO: [27.18] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:43:49] sql.INFO: [20.32] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:44:29] sql.INFO: [30.76] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:44:29] sql.INFO: [19.88] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:45:28] sql.INFO: [60.97] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:45:28] sql.INFO: [75.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:47:02] sql.INFO: [43.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:47:02] sql.INFO: [39.11] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:48:10] sql.INFO: [74.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:48:10] sql.INFO: [16.23] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:51:04] sql.INFO: [156.11] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:51:04] sql.INFO: [175.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:52:35] sql.INFO: [103.2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:52:35] sql.INFO: [22.42] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 07:54:26] sql.INFO: [141.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 07:56:27] sql.INFO: [133.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:01:46] sql.INFO: [61.06] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:01:46] sql.INFO: [131.58] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:01:46] sql.INFO: [27.43] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:01:47] sql.INFO: [13.39] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:04:41] sql.INFO: [17.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:04:41] sql.INFO: [31.17] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:04:41] sql.INFO: [6.25] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:04:41] sql.INFO: [31.7] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:06:50] sql.INFO: [66.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:06:50] sql.INFO: [102.76] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:06:50] sql.INFO: [12.85] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:06:50] sql.INFO: [35.27] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:08:55] sql.INFO: [23.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:08:55] sql.INFO: [12.05] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:08:55] sql.INFO: [3.21] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:08:55] sql.INFO: [2] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:09:14] sql.INFO: [6.52] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:09:14] sql.INFO: [14.29] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:09:14] sql.INFO: [6.69] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:09:14] sql.INFO: [2.17] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:12:33] sql.INFO: [277.27] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:12:33] sql.INFO: [335.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:12:33] sql.INFO: [6.13] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:12:47] sql.INFO: [2.13] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:12:47] sql.INFO: [7.79] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:12:47] sql.INFO: [17.98] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:13:40] sql.INFO: [30.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:13:40] sql.INFO: [114.76] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:13:40] sql.INFO: [7.52] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:14:50] sql.INFO: [27.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:14:50] sql.INFO: [19.83] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:14:50] sql.INFO: [3.93] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:15:46] sql.INFO: [6.53] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:15:46] sql.INFO: [4.09] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:15:46] sql.INFO: [5.63] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:19:56] sql.INFO: [143.17] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:19:56] sql.INFO: [121.39] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:19:56] sql.INFO: [10.27] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:19:56] sql.INFO: [52.77] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:20:55] sql.INFO: [72.39] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:20:55] sql.INFO: [83.56] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:20:55] sql.INFO: [16.68] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:20:55] sql.INFO: [3.38] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:21:25] sql.INFO: [32.11] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:21:25] sql.INFO: [112.07] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:21:25] sql.INFO: [27.42] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:21:25] sql.INFO: [3.15] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:22:25] sql.INFO: [98.88] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:22:25] sql.INFO: [99.51] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:22:25] sql.INFO: [4.01] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:22:25] sql.INFO: [102.35] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:22:25] sql.INFO: [8.53] select * from `menu` where `id` in ('68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 08:23:56] sql.INFO: [35.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:23:56] sql.INFO: [24.92] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:23:56] sql.INFO: [15.43] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:23:56] sql.INFO: [56.13] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:23:56] sql.INFO: [26.76] select * from `menu` where `id` in ('68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 08:42:28] sql.INFO: [187.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:42:28] sql.INFO: [241] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:42:28] sql.INFO: [6.51] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:42:28] sql.INFO: [13.56] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:42:28] sql.INFO: [3.78] select * from `menu` where `id` in ('58', '59', '60', '61', '62', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 08:53:09] sql.INFO: [25.75] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:53:09] sql.INFO: [78.55] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:53:09] sql.INFO: [17.67] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:53:09] sql.INFO: [7.33] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:53:09] sql.INFO: [1.72] select * from `menu` where `id` in ('58', '59', '60', '61', '62', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 08:59:24] sql.INFO: [268.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 08:59:24] sql.INFO: [190.91] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 08:59:24] sql.INFO: [3.12] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 08:59:24] sql.INFO: [19.06] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 08:59:24] sql.INFO: [12.88] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 08:59:27] sql.INFO: [17.22] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-18 08:59:27] sql.INFO: [2.93] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-18 09:22:11] sql.INFO: [17.37] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 09:22:11] sql.INFO: [27.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 09:22:11] sql.INFO: [3.58] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 09:22:12] sql.INFO: [3.49] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 09:22:12] sql.INFO: [4.81] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 09:39:34] sql.INFO: [229.13] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 09:39:34] sql.INFO: [256.07] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 09:39:34] sql.INFO: [9.89] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 09:39:34] sql.INFO: [91.67] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 09:39:34] sql.INFO: [26.96] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 09:40:51] sql.INFO: [222.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 09:40:51] sql.INFO: [389.69] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 09:40:51] sql.INFO: [4.25] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 09:40:51] sql.INFO: [60.12] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 09:40:51] sql.INFO: [3.26] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 10:25:42] sql.INFO: [43.98] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 10:25:42] sql.INFO: [3.08] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 10:25:42] sql.INFO: [54.44] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 10:25:42] sql.INFO: [4.67] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 10:25:42] sql.INFO: [9.91] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 10:26:32] sql.INFO: [5.56] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 10:26:32] sql.INFO: [21.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 10:26:32] sql.INFO: [4.76] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 10:26:32] sql.INFO: [6.11] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 10:26:32] sql.INFO: [4.37] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 10:27:37] sql.INFO: [36.83] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 10:27:37] sql.INFO: [17.96] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 10:27:37] sql.INFO: [6.47] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 10:27:37] sql.INFO: [2.03] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 10:27:37] sql.INFO: [3.56] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-18 10:28:08] sql.INFO: [38.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-18 10:28:08] sql.INFO: [8.72] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-18 10:28:08] sql.INFO: [66.4] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-18 10:28:08] sql.INFO: [9.74] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-18 10:28:08] sql.INFO: [12.54] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 02:24:48] sql.INFO: [979.82] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 02:24:48] sql.INFO: [70.75] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 02:30:42] sql.INFO: [163.85] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 02:30:42] sql.INFO: [59.84] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 03:24:33] sql.INFO: [108.85] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 03:24:33] sql.INFO: [4.58] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 03:31:10] sql.INFO: [165.57] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 03:31:10] sql.INFO: [3.61] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 03:31:13] sql.INFO: [134.61] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 03:31:13] sql.INFO: [20.3] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 03:32:59] sql.INFO: [99.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 03:33:00] sql.INFO: [3.41] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 03:33:46] sql.INFO: [3.82] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 03:33:46] sql.INFO: [75.9] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 05:15:35] sql.INFO: [30.39] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 05:15:35] sql.INFO: [2.9] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 05:20:40] sql.INFO: [40.41] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 05:20:40] sql.INFO: [4.61] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 05:23:51] sql.INFO: [58.06] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 05:23:51] sql.INFO: [2.38] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 05:27:58] sql.INFO: [24.36] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 05:27:58] sql.INFO: [6.77] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 06:49:42] sql.INFO: [182.54] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 06:49:42] sql.INFO: [125.55] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 06:51:43] sql.INFO: [111.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 06:51:43] sql.INFO: [117.37] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 06:54:57] sql.INFO: [146.11] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 06:54:58] sql.INFO: [303.28] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 06:54:58] sql.INFO: [243.52] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 06:54:58] sql.INFO: [66.89] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 06:54:58] sql.INFO: [50.99] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 06:55:13] sql.INFO: [49.43] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 06:55:13] sql.INFO: [34.75] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 06:55:13] sql.INFO: [164.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 06:55:13] sql.INFO: [33.3] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 06:55:13] sql.INFO: [203.3] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 06:55:49] sql.INFO: [33.92] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 06:55:49] sql.INFO: [34.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 06:55:50] sql.INFO: [30.4] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 06:55:50] sql.INFO: [21.52] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 06:55:50] sql.INFO: [4.17] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:02:48] sql.INFO: [95.68] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 07:02:48] sql.INFO: [122.08] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 07:02:48] sql.INFO: [9.6] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 07:02:48] sql.INFO: [17.34] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 07:02:48] sql.INFO: [24.78] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:02:56] sql.INFO: [12.03] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 07:02:56] sql.INFO: [36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 07:02:56] sql.INFO: [25.34] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 07:02:56] sql.INFO: [7.33] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 07:02:56] sql.INFO: [4] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:07:44] sql.INFO: [51.65] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 07:07:44] sql.INFO: [8.24] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 07:14:53] sql.INFO: [367.46] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 07:14:54] sql.INFO: [57.05] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 07:14:54] sql.INFO: [18.06] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 07:14:54] sql.INFO: [6.35] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 07:14:54] sql.INFO: [32.1] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:15:59] sql.INFO: [115.44] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 07:15:59] sql.INFO: [62.63] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 07:15:59] sql.INFO: [410.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 07:15:59] sql.INFO: [17.84] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 07:15:59] sql.INFO: [77.33] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:17:24] sql.INFO: [126.05] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 07:17:24] sql.INFO: [115.13] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 07:17:24] sql.INFO: [30] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 07:17:24] sql.INFO: [133.72] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 07:17:24] sql.INFO: [127.18] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 07:17:24] sql.INFO: [17.61] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 07:17:24] sql.INFO: [13.98] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 07:30:11] sql.INFO: [54.77] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 07:30:11] sql.INFO: [4.92] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 07:30:12] sql.INFO: [13.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 07:30:12] sql.INFO: [39.2] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 08:21:00] sql.INFO: [34.33] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 08:21:00] sql.INFO: [1.88] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 08:27:14] sql.INFO: [61.21] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 08:27:14] sql.INFO: [5.4] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 08:27:22] sql.INFO: [2.73] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-07-19 08:27:22] sql.INFO: [2.69] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-07-19 08:31:30] sql.INFO: [46.04] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 08:31:30] sql.INFO: [7.52] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 08:34:38] sql.INFO: [349.78] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-19 08:34:40] sql.INFO: [22.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 08:34:40] sql.INFO: [57.07] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 08:34:40] sql.INFO: [29.96] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 08:34:40] sql.INFO: [47.8] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 08:34:40] sql.INFO: [25.56] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 08:56:50] sql.INFO: [23.5] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-19 08:56:50] sql.INFO: [36.51] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 08:56:50] sql.INFO: [39.18] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 08:56:50] sql.INFO: [11.05] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 08:56:51] sql.INFO: [13.44] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 08:56:51] sql.INFO: [10.71] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 08:56:59] sql.INFO: [16.88] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 08:56:59] sql.INFO: [2.69] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 08:57:04] sql.INFO: [8.1] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 08:57:04] sql.INFO: [4.44] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 08:57:05] sql.INFO: [9.02] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 08:57:05] sql.INFO: [2.64] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:05:13] sql.INFO: [119.15] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 09:05:13] sql.INFO: [4.71] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 09:05:21] sql.INFO: [5.92] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:05:21] sql.INFO: [9.26] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:08:04] sql.INFO: [69.66] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 09:08:04] sql.INFO: [57.89] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 09:08:04] sql.INFO: [6.73] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 09:08:04] sql.INFO: [22.87] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 09:08:04] sql.INFO: [14.11] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 09:11:03] sql.INFO: [23.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 09:11:03] sql.INFO: [50.96] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 09:11:03] sql.INFO: [1.68] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 09:11:03] sql.INFO: [1.95] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 09:11:03] sql.INFO: [20.2] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 09:16:22] sql.INFO: [16.18] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:16:22] sql.INFO: [2.76] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:19:28] sql.INFO: [21.25] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:19:28] sql.INFO: [2.17] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:19:31] sql.INFO: [2.2] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:19:31] sql.INFO: [3.14] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:19:38] sql.INFO: [18.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 09:19:38] sql.INFO: [6.77] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 09:19:40] sql.INFO: [4.32] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:19:40] sql.INFO: [3.2] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:19:41] sql.INFO: [3.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 09:19:41] sql.INFO: [2.77] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 09:19:54] sql.INFO: [2.13] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:19:54] sql.INFO: [1.97] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:22:48] sql.INFO: [114.9] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name`, `user_info`.`business_name`, `user_info`.`job`, `user_info`.`city_id`, `user_level`.`name` as `level_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` where (`user`.`user_name` like '%%') order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-07-19 09:22:48] sql.INFO: [6] select count(*) as aggregate from `user` where (`user`.`user_name` like '%%') [] []
+[2024-07-19 09:44:50] sql.INFO: [19.25] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:44:50] sql.INFO: [5.79] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:45:42] sql.INFO: [15.37] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-19 09:45:42] sql.INFO: [33.65] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-19 09:45:42] sql.INFO: [2.97] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-19 09:45:42] sql.INFO: [2.61] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-19 09:45:42] sql.INFO: [3.06] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-19 09:49:57] sql.INFO: [13.71] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:49:57] sql.INFO: [4.65] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:50:00] sql.INFO: [9.29] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:50:00] sql.INFO: [3.04] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:50:02] sql.INFO: [3.88] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:50:02] sql.INFO: [6.82] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:50:03] sql.INFO: [3.02] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:50:03] sql.INFO: [4.09] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:50:19] sql.INFO: [6.91] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:50:20] sql.INFO: [56.98] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:50:21] sql.INFO: [110.9] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:50:21] sql.INFO: [5.03] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:50:21] sql.INFO: [133.44] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:50:21] sql.INFO: [2.64] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-19 09:51:35] sql.INFO: [30.46] select * from `role` where (`role_name` like '%%') limit 10 offset 0 [] []
+[2024-07-19 09:51:35] sql.INFO: [3.31] select count(*) as aggregate from `role` where (`role_name` like '%%') [] []
+[2024-07-19 09:51:42] sql.INFO: [88.39] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-19 09:51:42] sql.INFO: [9.35] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-22 01:42:40] sql.INFO: [300.09] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-22 01:42:40] sql.INFO: [302.32] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-22 01:42:40] sql.INFO: [307.53] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-22 01:42:40] sql.INFO: [9.48] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-22 01:42:40] sql.INFO: [12.76] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-22 01:42:40] sql.INFO: [10.04] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-22 01:42:40] sql.INFO: [12.05] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-22 07:19:22] sql.INFO: [842.78] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-22 07:19:22] sql.INFO: [848.18] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-07-22 07:19:23] sql.INFO: [142.17] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-22 07:19:23] sql.INFO: [46.64] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-22 07:19:23] sql.INFO: [22.41] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-22 07:19:23] sql.INFO: [77.08] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-22 07:19:23] sql.INFO: [61.05] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-22 07:19:27] sql.INFO: [3.23] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-07-22 07:19:27] sql.INFO: [3.02] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-07-22 07:21:07] sql.INFO: [68.55] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-22 07:21:07] sql.INFO: [61.28] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-22 07:21:07] sql.INFO: [26.12] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-22 07:21:07] sql.INFO: [12.63] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-22 07:21:07] sql.INFO: [52.86] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 00:54:24] sql.INFO: [31.04] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 00:54:24] sql.INFO: [6.02] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 00:54:24] sql.INFO: [80.45] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 00:54:24] sql.INFO: [5.82] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 00:54:24] sql.INFO: [11.42] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 02:19:35] sql.INFO: [108.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 02:19:35] sql.INFO: [166.64] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 02:19:35] sql.INFO: [21.45] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 02:19:35] sql.INFO: [8.61] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 02:19:35] sql.INFO: [29.47] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 06:47:50] sql.INFO: [1409.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 06:47:50] sql.INFO: [1433.98] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 06:47:50] sql.INFO: [69.76] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 06:47:50] sql.INFO: [45.19] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 06:47:50] sql.INFO: [71.41] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:12:24] sql.INFO: [165.09] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:12:27] sql.INFO: [2865.73] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:12:27] sql.INFO: [18.32] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:12:27] sql.INFO: [20.42] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:12:27] sql.INFO: [108.99] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:13:34] sql.INFO: [100.82] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:13:34] sql.INFO: [23.15] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:13:34] sql.INFO: [17.68] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:13:34] sql.INFO: [24.24] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:13:34] sql.INFO: [170.95] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:14:05] sql.INFO: [21.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:14:05] sql.INFO: [5.82] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:14:05] sql.INFO: [11.88] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:14:05] sql.INFO: [8.99] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:14:05] sql.INFO: [56.51] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:36:29] sql.INFO: [68.74] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:36:29] sql.INFO: [82.78] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:36:29] sql.INFO: [5.45] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:36:29] sql.INFO: [5.88] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:36:29] sql.INFO: [7.62] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:36:40] sql.INFO: [12.77] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:36:40] sql.INFO: [2.21] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:36:40] sql.INFO: [31.85] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:36:40] sql.INFO: [17.24] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:36:40] sql.INFO: [37.4] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:38:02] sql.INFO: [39.19] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:38:02] sql.INFO: [44.36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:38:02] sql.INFO: [12.05] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:38:02] sql.INFO: [7.83] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:38:02] sql.INFO: [11.92] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:38:36] sql.INFO: [49.55] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:38:36] sql.INFO: [50.1] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:38:36] sql.INFO: [23.15] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:38:36] sql.INFO: [12.96] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:38:36] sql.INFO: [20.62] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:38:52] sql.INFO: [89.07] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:38:52] sql.INFO: [96.4] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:38:52] sql.INFO: [2.92] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:38:52] sql.INFO: [3.23] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:38:52] sql.INFO: [31.13] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:40:20] sql.INFO: [85.86] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:40:20] sql.INFO: [5.29] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:40:20] sql.INFO: [5.69] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:40:20] sql.INFO: [121.83] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:40:20] sql.INFO: [63.92] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 08:43:20] sql.INFO: [62.91] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 08:43:20] sql.INFO: [20.39] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 08:43:20] sql.INFO: [70.94] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 08:43:20] sql.INFO: [24.17] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 08:43:20] sql.INFO: [92.06] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 09:53:13] sql.INFO: [575.87] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 09:53:13] sql.INFO: [552.88] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 09:53:13] sql.INFO: [72.17] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 09:53:13] sql.INFO: [264.07] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 09:53:14] sql.INFO: [266.7] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 09:56:20] sql.INFO: [29.14] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 09:56:20] sql.INFO: [10.42] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 09:56:20] sql.INFO: [2.19] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 09:56:20] sql.INFO: [115.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 09:56:20] sql.INFO: [17.42] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 09:57:30] sql.INFO: [32.83] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 09:57:30] sql.INFO: [5.78] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 09:57:30] sql.INFO: [86.74] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 09:57:30] sql.INFO: [10.12] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 09:57:30] sql.INFO: [21.3] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 09:58:42] sql.INFO: [80.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 09:58:42] sql.INFO: [83.85] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 09:58:42] sql.INFO: [12.78] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 09:58:42] sql.INFO: [7.61] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 09:58:42] sql.INFO: [28.26] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:01:08] sql.INFO: [62.49] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:01:08] sql.INFO: [76.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:01:08] sql.INFO: [17.45] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:01:08] sql.INFO: [3.57] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:01:08] sql.INFO: [11.52] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:03:09] sql.INFO: [68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:03:09] sql.INFO: [53.11] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:03:09] sql.INFO: [21.77] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:03:09] sql.INFO: [5.8] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:03:09] sql.INFO: [22.77] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:04:56] sql.INFO: [97.04] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:04:56] sql.INFO: [135.02] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:04:56] sql.INFO: [5.78] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:04:56] sql.INFO: [18.13] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:04:56] sql.INFO: [2.45] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:05:42] sql.INFO: [15.79] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:05:42] sql.INFO: [22.19] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:05:42] sql.INFO: [41.58] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:05:42] sql.INFO: [36.13] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:05:42] sql.INFO: [10.46] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:08:06] sql.INFO: [132.79] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:08:06] sql.INFO: [45.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:08:06] sql.INFO: [18.72] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:08:06] sql.INFO: [11.97] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:08:06] sql.INFO: [16.25] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:47:25] sql.INFO: [133.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:47:25] sql.INFO: [166.97] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:47:25] sql.INFO: [36] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:47:25] sql.INFO: [10.75] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:47:25] sql.INFO: [43.41] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:55:49] sql.INFO: [52.07] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:55:49] sql.INFO: [70.19] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:55:49] sql.INFO: [19.23] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:55:49] sql.INFO: [12.67] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:55:49] sql.INFO: [61.94] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:57:20] sql.INFO: [82.15] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:57:20] sql.INFO: [94.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:57:20] sql.INFO: [24.45] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:57:20] sql.INFO: [33.47] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:57:20] sql.INFO: [16.35] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:57:30] sql.INFO: [18.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 10:57:30] sql.INFO: [60.96] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:57:30] sql.INFO: [56.7] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:57:30] sql.INFO: [49.26] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:57:30] sql.INFO: [99.51] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:58:47] sql.INFO: [181.58] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 10:58:47] sql.INFO: [4.41] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 10:58:47] sql.INFO: [1.33] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 10:58:47] sql.INFO: [2.41] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-23 10:58:47] sql.INFO: [312.13] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 11:00:05] sql.INFO: [122.06] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-23 11:00:05] sql.INFO: [122.75] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-23 11:00:05] sql.INFO: [13.02] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-23 11:00:05] sql.INFO: [9.09] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-23 11:00:05] sql.INFO: [10] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:47:44] sql.INFO: [855.07] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:47:44] sql.INFO: [789.91] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:47:44] sql.INFO: [69.01] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:47:44] sql.INFO: [23.54] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:47:44] sql.INFO: [67.67] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:51:27] sql.INFO: [1967.47] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:51:27] sql.INFO: [51.68] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:51:27] sql.INFO: [50.16] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:51:27] sql.INFO: [39.48] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:51:27] sql.INFO: [2090.49] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:52:15] sql.INFO: [28.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:52:15] sql.INFO: [3.19] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:52:15] sql.INFO: [7.85] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:52:15] sql.INFO: [38.76] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:52:15] sql.INFO: [143.35] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:54:24] sql.INFO: [119.75] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:54:24] sql.INFO: [36.69] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:54:24] sql.INFO: [26.03] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:54:24] sql.INFO: [25.51] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:54:24] sql.INFO: [254.23] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:55:21] sql.INFO: [76.77] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:55:21] sql.INFO: [89.24] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:55:21] sql.INFO: [30.19] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:55:21] sql.INFO: [12.25] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:55:21] sql.INFO: [8.52] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 05:56:57] sql.INFO: [108.69] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 05:56:57] sql.INFO: [113.68] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 05:56:57] sql.INFO: [8.73] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 05:56:57] sql.INFO: [14.17] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 05:56:58] sql.INFO: [16.01] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:00:17] sql.INFO: [93.32] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:00:17] sql.INFO: [125.33] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:00:17] sql.INFO: [3.14] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:00:17] sql.INFO: [40.59] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:00:18] sql.INFO: [38.35] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:01:44] sql.INFO: [109.4] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:01:44] sql.INFO: [57.47] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:01:44] sql.INFO: [7.75] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:01:44] sql.INFO: [10.48] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:01:44] sql.INFO: [22.7] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:03:23] sql.INFO: [51.36] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:03:23] sql.INFO: [26.35] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:03:23] sql.INFO: [67.97] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:03:23] sql.INFO: [34.04] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:03:24] sql.INFO: [2.95] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:04:53] sql.INFO: [58.12] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:04:53] sql.INFO: [14.8] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:04:53] sql.INFO: [72.55] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:04:53] sql.INFO: [45.26] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:04:53] sql.INFO: [8.6] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:05:48] sql.INFO: [58.73] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:05:48] sql.INFO: [127.94] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:05:48] sql.INFO: [12.23] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:05:48] sql.INFO: [12.43] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:05:48] sql.INFO: [50.15] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 06:07:09] sql.INFO: [315] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 06:07:09] sql.INFO: [424.02] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 06:07:09] sql.INFO: [62.8] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 06:07:09] sql.INFO: [12.34] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 06:07:09] sql.INFO: [12.66] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:34:59] sql.INFO: [100.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:34:59] sql.INFO: [111.75] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:34:59] sql.INFO: [5.58] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:34:59] sql.INFO: [41.53] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:34:59] sql.INFO: [15.86] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:36:33] sql.INFO: [62.25] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:36:33] sql.INFO: [72.07] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:36:33] sql.INFO: [33.56] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:36:33] sql.INFO: [3.82] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:36:33] sql.INFO: [56.33] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:39:28] sql.INFO: [65.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:39:28] sql.INFO: [177.67] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:39:28] sql.INFO: [16.9] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:39:28] sql.INFO: [25.3] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:39:28] sql.INFO: [10.72] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:44:03] sql.INFO: [30.29] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:44:03] sql.INFO: [131.14] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:44:03] sql.INFO: [9.83] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:44:03] sql.INFO: [7.51] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:44:03] sql.INFO: [8.66] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:46:37] sql.INFO: [220.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:46:37] sql.INFO: [246.98] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:46:37] sql.INFO: [4.98] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:46:37] sql.INFO: [10.94] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:46:37] sql.INFO: [10.78] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:48:10] sql.INFO: [43.98] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:48:10] sql.INFO: [47.72] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:48:10] sql.INFO: [5.08] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:48:10] sql.INFO: [7.94] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:48:10] sql.INFO: [23] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:49:22] sql.INFO: [184.28] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:49:22] sql.INFO: [244.62] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:49:22] sql.INFO: [8.64] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:49:22] sql.INFO: [12.33] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:49:22] sql.INFO: [24.02] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:51:35] sql.INFO: [33.54] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:51:35] sql.INFO: [57.69] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:51:35] sql.INFO: [16.32] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:51:35] sql.INFO: [9.85] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:51:35] sql.INFO: [40.58] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:52:48] sql.INFO: [62.48] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:52:48] sql.INFO: [64.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:52:48] sql.INFO: [8.17] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:52:48] sql.INFO: [4.88] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:52:48] sql.INFO: [50.56] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 08:57:28] sql.INFO: [39.58] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 08:57:28] sql.INFO: [58.8] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 08:57:28] sql.INFO: [10.51] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 08:57:28] sql.INFO: [2.52] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 08:57:28] sql.INFO: [17.9] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 09:04:09] sql.INFO: [47.21] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 09:04:09] sql.INFO: [34.51] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 09:04:09] sql.INFO: [107.52] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 09:04:09] sql.INFO: [42.66] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 09:04:09] sql.INFO: [18.51] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-24 09:39:46] sql.INFO: [73.66] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-24 09:39:47] sql.INFO: [194.98] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-24 09:39:47] sql.INFO: [1.47] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-24 09:39:47] sql.INFO: [1.41] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-24 09:39:47] sql.INFO: [19.96] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []
+[2024-07-25 02:09:19] sql.INFO: [254.32] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
+[2024-07-25 02:09:19] sql.INFO: [290.22] select * from `website` where (`website_url` = 'localhost:8099') limit 1 [] []
+[2024-07-25 02:09:19] sql.INFO: [25.26] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-07-25 02:09:19] sql.INFO: [21.13] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-07-25 02:09:19] sql.INFO: [52.36] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74') [] []

+ 1 - 0
vendor/composer/autoload_classmap.php

@@ -27,6 +27,7 @@ return array(
     'App\\Model\\UserLogin' => $baseDir . '/app/Model/UserLogin.php',
     'App\\Model\\Website' => $baseDir . '/app/Model/Website.php',
     'App\\Model\\WebsiteColumn' => $baseDir . '/app/Model/WebsiteColumn.php',
+    'App\\Model\\WebsiteRoleUser' => $baseDir . '/app/Model/WebsiteRoleUser.php',
     'App\\Tools\\Result' => $baseDir . '/app/Tools/Result.php',
     'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
     'CURLStringFile' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',

+ 1 - 0
vendor/composer/autoload_static.php

@@ -711,6 +711,7 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
         'App\\Model\\UserLogin' => __DIR__ . '/../..' . '/app/Model/UserLogin.php',
         'App\\Model\\Website' => __DIR__ . '/../..' . '/app/Model/Website.php',
         'App\\Model\\WebsiteColumn' => __DIR__ . '/../..' . '/app/Model/WebsiteColumn.php',
+        'App\\Model\\WebsiteRoleUser' => __DIR__ . '/../..' . '/app/Model/WebsiteRoleUser.php',
         'App\\Tools\\Result' => __DIR__ . '/../..' . '/app/Tools/Result.php',
         'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
         'CURLStringFile' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',

Някои файлове не бяха показани, защото твърде много файлове са промени