Pārlūkot izejas kodu

用户管理修改

rkljw 5 mēneši atpakaļ
vecāks
revīzija
116715a42f

+ 27 - 44
app/JsonRpc/AuthorityService.php

@@ -2,6 +2,7 @@
 namespace App\JsonRpc;
 use App\Model\Role;
 use App\Model\Menu;
+use App\Model\RoleUser;
 use App\Model\Website;
 use App\Model\WebsiteRoleUser;
 use App\Tools\Result;
@@ -17,24 +18,11 @@ class AuthorityService implements AuthorityServiceInterface
      */
     public function getMenuList(array $data): array
     {
-        // TODO: Implement getMenuList() method.
-        $where = [
-            "pid"=>$data['id']
-        ];
-        $data['pageSize'] = $data['pageSize']?$data['pageSize']:10;
-        $data['page'] = $data['page']?$data['page']:1;
-        $result = Menu::where($where)->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->get();
-        $count =  Menu::where($where)->count();
+        $result = Menu::get();
         if (empty($result)) {
             return Result::error("没有菜单",0,[]);
         }
-        foreach($result as $k=>$v){
-            $result[$k]['is_links'] = (int)$result[$k]['is_links'];
-            $result[$k]['hidden'] = (int)$result[$k]['hidden'];
-        }
-        $data['rows'] = $result;
-        $data['count'] = $count;
-        return Result::success($data);
+        return Result::success($result);
     }
 
     /**
@@ -43,8 +31,11 @@ class AuthorityService implements AuthorityServiceInterface
      */
     public function getMenuInfo(array $data): array
     {
-        // TODO: Implement getMenuInfo() method.
-        return  [];
+        $result = Menu::where(['id'=>$data['id']])->first();
+        if (empty($result)) {
+            return Result::error("没有菜单",0,[]);
+        }
+        return Result::success($result);
     }
 
     /**
@@ -99,44 +90,36 @@ class AuthorityService implements AuthorityServiceInterface
      */
     public function getRecursionMenu(array $data): array
     {
-        //先查询站点ID
-        $websiteData = [
-            'website_url' => $data['logindevice']
-        ];
-        $websiteInfo = Website::where($websiteData)->first();
-//        var_dump($websiteInfo,$data['logindevice']);
-        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']
+            'role_user.user_id'=>$data['user_id']
         ];
-        $roleInfo = Role::where($roleWhere)->first();
-//        var_dump("+++++++++++",$roleInfo);
+        $roleInfo = RoleUser::where($roleWhere)
+            ->leftJoin('role', 'role.id', '=', 'role_user.role_id')
+            ->first();
         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,[]);
         }
         return Result::success($result);
     }
+
+    /**
+     * 获取所有的权限
+     * @param array $data
+     * @return array
+     */
+    public function getAllMenuList(array $data): array
+    {
+        $result = Menu::get();
+        if($result){
+            return Result::success($result);
+        }else{
+            return Result::error("没有权限",0,[]);
+        }
+    }
 }

+ 6 - 0
app/JsonRpc/AuthorityServiceInterface.php

@@ -44,4 +44,10 @@ interface AuthorityServiceInterface
      * @return array
      */
     public function getRecursionMenu(array $data): array;
+
+    /**
+     * @param array $data
+     * @return array
+     */
+    public function getAllMenuList(array $data): array;
 }

+ 57 - 55
app/JsonRpc/UserService.php

@@ -2,6 +2,7 @@
 namespace App\JsonRpc;
 use App\Model\Role;
 use App\Model\RoleLog;
+use App\Model\RoleUser;
 use App\Model\User;
 use App\Model\UserInfo;
 use App\Model\UserLogin;
@@ -67,57 +68,52 @@ class UserService implements UserServiceInterface
      */
     public function getUserList(array $data): array
     {
-
-        $where = [
-            ['user.user_name','like','%'.$data['keyword'].'%']
-        ];
-        if(isset($data['pageSize'])){
-            $result = User::where($where)
+        $where = [];
+        if(isset($data['keyword']) && $data['keyword']){
+            array_push($where, ['user.user_name','like','%'.$data['keyword'].'%']);
+        }
+        $result = User::where($where)
                 ->leftJoin('user_info', 'user.id', '=', 'user_info.user_id')
                 ->leftJoin('user_level', 'user.level_id', '=', 'user_level.id')
-                ->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'
-                )
-                ->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 as userA",'user.admin_id',"userA.id")
+                ->orderBy("user.id","desc")->paginate(intval($data['pageSize']), ['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',
+                'userA.nickname as admin_nickname',
+                'user_level.name as level_name'], 'page', intval($data['page']));
 
-                )
-                ->leftJoin('user_info', 'user.id', '=', 'user_info.user_id')
-                ->get();
-        }
-        var_dump("用户列表",$result->toArray());
-        $count = User::where($where)->count();
+//                ->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'
+//                )
+//            ->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->orderBy("user.id","desc")->get();
+        $count = $result->total();
         if (empty($result)) {
             return Result::error("没有数据",0);
         }
-        $rep = $result->toArray();
+        $rep = $result->items();
         $type = ['1'=>"个人会员",'2'=>"政务会员",'3'=>"企业会员"];
         $gender = ['0'=>"未知",'1'=>"男",'2'=>"女"];
         $status = ['1'=>"正常",'2'=>"冻结"];
-        if($rep){
-            foreach ($rep as $k=>$v){
-                $rep[$k]['type_name'] = $type[$v['type_id']];
-                $rep[$k]['gender_name'] = $gender[$v['gender']];
-                $rep[$k]['status_name'] = $status[$v['status']];
-                $rep[$k]['city_id'] = $v['city_id']?json_decode($v['city_id']):[];
-            }
-        }
+//        if($rep){
+//            foreach ($rep as $k=>$v){
+//                $rep[$k]['type_name'] = $type[$v['type_id']];
+//                $rep[$k]['gender_name'] = $gender[$v['gender']];
+//                $rep[$k]['status_name'] = $status[$v['status']];
+//                $rep[$k]['city_id'] = $v['city_id']?json_decode($v['city_id']):[];
+//            }
+//        }
         $data = [
             'rows'=>$rep,
             'count'=>$count
@@ -280,6 +276,7 @@ class UserService implements UserServiceInterface
                 'type'=>2
             ];
             RoleLog::insertGetId($logData);
+            RoleUser::where(['role_id'=>$data['id']])->delete();
             $result = Role::where(['id'=>$data['id']])->delete();
             Db::commit();
         } catch(\Throwable $ex){
@@ -294,12 +291,21 @@ class UserService implements UserServiceInterface
      */
     public function updateRole(array $data) :array
     {
-
-        $result = Role::where(['id'=>$data['id']])->update($data);
-        if ($result) {
-            return Result::success($result);
+        Db::beginTransaction();
+        try{
+            $result = Role::where(['id'=>$data['id']])->update($data);
+            $logData = [
+                'user_id'=>$data['user_id'],
+                'data'=>json_encode($data),
+                'type'=>3
+            ];
+            RoleLog::insertGetId($logData);
+            Db::commit();
+        } catch(\Throwable $ex){
+            Db::rollBack();
+            return  Result::error("更新失败");
         }
-        return  Result::error("更新失败");
+        return Result::success($result);
     }
     /**
      * @param array $data
@@ -320,15 +326,11 @@ class UserService implements UserServiceInterface
      */
     public function roleList(array $data) :array
     {
-        $where = [
-            ['role_name','like','%'.$data['keyword'].'%']
-        ];
-        if(isset($data['pageSize'])){
-            $result = Role::where($where)->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->get();
-        }else{
-            $result = Role::where($where)->get();
+        $where = [];
+        if(isset($data['keyword']) && $data['keyword']){
+            array_push($where,  ['role.role_name','like','%'.$data['keyword'].'%']);
         }
-
+        $result = Role::withCount('users')->where($where)->limit($data['pageSize'])->offset(($data['page']-1)*$data['pageSize'])->get();
         $count = Role::where($where)->count();
         if (empty($result)) {
             return Result::error("没有数据",0);

+ 2 - 0
app/JsonRpc/UserServiceInterface.php

@@ -105,4 +105,6 @@ interface UserServiceInterface
      */
     public function addWechatInfo(array $data) :array;
 
+
+
 }

+ 7 - 1
app/Model/Role.php

@@ -4,8 +4,8 @@ declare(strict_types=1);
 
 namespace App\Model;
 
+use App\Model\RoleUser;
 use Hyperf\DbConnection\Model\Model;
-
 /**
  */
 class Role extends Model
@@ -24,4 +24,10 @@ class Role extends Model
      * The attributes that should be cast to native types.
      */
     protected array $casts = [];
+
+
+    public function users()
+    {
+        return $this->hasMany(RoleUser::class);
+    }
 }

+ 32 - 0
app/Model/RoleUser.php

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

+ 1 - 0
composer.json

@@ -30,6 +30,7 @@
         "hyperf/logger": "~3.1.0",
         "hyperf/memory": "~3.1.0",
         "hyperf/nacos": "^3.1",
+        "hyperf/paginator": "^3.1",
         "hyperf/process": "~3.1.0",
         "hyperf/redis": "~3.1.0",
         "hyperf/rpc-server": "^3.1",

+ 69 - 1
composer.lock

@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "fd89ad12a5dc0409848c1863c865895d",
+    "content-hash": "c81bba5288bb0c3b162f61d34f2b0d1f",
     "packages": [
         {
             "name": "carbonphp/carbon-doctrine-types",
@@ -3145,6 +3145,74 @@
             ],
             "time": "2024-03-23T11:28:51+00:00"
         },
+        {
+            "name": "hyperf/paginator",
+            "version": "v3.1.42",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/hyperf/paginator.git",
+                "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
+                "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
+                "shasum": ""
+            },
+            "require": {
+                "hyperf/contract": "~3.1.0",
+                "hyperf/support": "~3.1.0",
+                "hyperf/utils": "~3.1.0",
+                "php": ">=8.1"
+            },
+            "suggest": {
+                "hyperf/event": "Reqiured to use PageResolverListener.",
+                "hyperf/framework": "Reqiured to use PageResolverListener.",
+                "hyperf/http-server": "Reqiured to use PageResolverListener."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1-dev"
+                },
+                "hyperf": {
+                    "config": "Hyperf\\Paginator\\ConfigProvider"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Hyperf\\Paginator\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "A paginator component for hyperf.",
+            "homepage": "https://hyperf.io",
+            "keywords": [
+                "hyperf",
+                "paginator",
+                "php"
+            ],
+            "support": {
+                "docs": "https://hyperf.wiki",
+                "issues": "https://github.com/hyperf/hyperf/issues",
+                "pull-request": "https://github.com/hyperf/hyperf/pulls",
+                "source": "https://github.com/hyperf/hyperf"
+            },
+            "funding": [
+                {
+                    "url": "https://hyperf.wiki/#/zh-cn/donate",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://opencollective.com/hyperf",
+                    "type": "open_collective"
+                }
+            ],
+            "time": "2024-09-25T02:54:12+00:00"
+        },
         {
             "name": "hyperf/pipeline",
             "version": "v3.1.15",

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
runtime/container/classes.cache


+ 1 - 1
runtime/hyperf.pid

@@ -1 +1 @@
-1864
+95318

+ 1778 - 0
runtime/logs/hyperf.log

@@ -0,0 +1,1778 @@
+[2024-10-24 06:19:46] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-24 06:19:47] sql.INFO: [1.77] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` [] []
+[2024-10-24 06:19:47] sql.INFO: [1.79] 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` order by `user`.`id` desc limit 10 offset 10 [] []
+[2024-10-24 06:19:47] sql.INFO: [2.01] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:19:47] sql.INFO: [1.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:19:47] sql.INFO: [1.29] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:19:47] sql.INFO: [1.84] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:22:54] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-24 06:22:54] sql.INFO: [2.28] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:22:54] sql.INFO: [1.65] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:22:54] sql.INFO: [1.43] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:22:54] sql.INFO: [1.49] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:26:21] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-24 06:26:25] sql.INFO: [1.48] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:26:25] sql.INFO: [1.28] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:26:25] sql.INFO: [1.29] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:26:25] sql.INFO: [1.39] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:27:10] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-24 06:27:10] sql.INFO: [4.06] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:27:11] sql.INFO: [3.52] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:27:11] sql.INFO: [3.02] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:27:11] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:27:45] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-24 06:27:45] sql.INFO: [1.96] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:27:45] sql.INFO: [1.7] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:27:45] sql.INFO: [1.62] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:27:45] sql.INFO: [2.16] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:28:31] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-24 06:28:31] sql.INFO: [3.48] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:28:31] sql.INFO: [2.7] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:28:31] sql.INFO: [2.21] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:28:31] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:34:39] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-24 06:34:41] sql.INFO: [4.97] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:34:41] sql.INFO: [3.24] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:34:41] sql.INFO: [1.97] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:34:41] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:35:37] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-24 06:35:38] sql.INFO: [3.79] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:35:38] sql.INFO: [2.01] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:35:38] sql.INFO: [2.79] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:35:38] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:36:06] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-24 06:36:06] sql.INFO: [1.35] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:36:06] sql.INFO: [1.82] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:36:06] sql.INFO: [1.17] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:36:06] sql.INFO: [1.34] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:37:55] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-24 06:37:55] sql.INFO: [2.89] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:37:55] sql.INFO: [2.01] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:37:55] sql.INFO: [2.42] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:37:55] sql.INFO: [1.76] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:38:11] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-24 06:38:12] sql.INFO: [3.35] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:38:12] sql.INFO: [2.23] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:38:12] sql.INFO: [1.99] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:38:12] sql.INFO: [1.89] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:39:13] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-24 06:39:14] sql.INFO: [3.74] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:39:14] sql.INFO: [2.97] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:39:14] sql.INFO: [2.61] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:39:14] sql.INFO: [2.63] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:43:57] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-24 06:43:59] sql.INFO: [3.44] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:43:59] sql.INFO: [2.63] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:43:59] sql.INFO: [2.44] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:43:59] sql.INFO: [1.69] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 06:44:50] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-24 06:44:50] sql.INFO: [2.53] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 06:44:50] sql.INFO: [4.68] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 06:44:50] sql.INFO: [2.55] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 06:44:50] sql.INFO: [6.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:03:25] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-24 07:03:27] sql.INFO: [3.27] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:03:27] sql.INFO: [4.57] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:03:27] sql.INFO: [1.54] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:03:27] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:03:51] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-24 07:03:52] sql.INFO: [4.45] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:03:52] sql.INFO: [3.31] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:03:52] sql.INFO: [1.91] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:03:52] sql.INFO: [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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:10:49] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 07:10:49] sql.INFO: [1.36] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:10:49] sql.INFO: [1.53] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:10:50] sql.INFO: [1.08] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:10:50] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:12:35] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-24 07:12:35] sql.INFO: [2.22] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:12:35] sql.INFO: [1.99] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:12:35] sql.INFO: [1.47] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:12:35] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:26:27] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-24 07:26:27] sql.INFO: [2.08] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:26:27] sql.INFO: [2.07] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:26:27] sql.INFO: [1.52] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:26:27] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:50:08] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-24 07:50:08] sql.INFO: [4.39] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 07:50:08] sql.INFO: [2.77] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 07:50:08] sql.INFO: [2.25] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 07:50:08] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 07:53:47] sql.INFO: [16.19] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-24 07:53:47] sql.INFO: [2.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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 10 [] []
+[2024-10-24 07:56:04] sql.INFO: [9.04] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-24 07:56:04] sql.INFO: [2.05] 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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 10 [] []
+[2024-10-24 08:00:17] 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-10-24 08:01:51] sql.INFO: [13.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` = '73' limit 1 [] []
+[2024-10-24 08:01:51] sql.INFO: [1.38] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:01:51] sql.INFO: [1.42] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:01:51] sql.INFO: [1.28] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:01:51] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:03:21] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-24 08:03:21] sql.INFO: [2.31] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:03:21] sql.INFO: [2.44] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:03:21] sql.INFO: [1.75] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:03:21] sql.INFO: [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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:03:59] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-24 08:03:59] sql.INFO: [2.37] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:03:59] sql.INFO: [2.44] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:03:59] sql.INFO: [1.51] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:03:59] sql.INFO: [1.64] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:04:29] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-24 08:04:29] sql.INFO: [4.12] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:04:29] sql.INFO: [2.62] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:04:29] sql.INFO: [2.47] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:04:29] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:05:49] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 08:05:50] sql.INFO: [24.45] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:05:50] sql.INFO: [2.44] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:05:50] sql.INFO: [1.72] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:05:50] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:07:58] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-24 08:07:58] sql.INFO: [3.39] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:07:58] sql.INFO: [2.95] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:07:58] sql.INFO: [1.98] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:07:58] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:10:16] 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` = '73' limit 1 [] []
+[2024-10-24 08:10:16] sql.INFO: [2.06] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:10:16] sql.INFO: [1.84] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:10:16] sql.INFO: [1.54] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:10:16] sql.INFO: [1.79] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:12:57] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-24 08:12:58] sql.INFO: [2.18] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:12:58] sql.INFO: [2.38] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:12:58] sql.INFO: [2.18] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:12:58] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:16:09] sql.INFO: [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` = '73' limit 1 [] []
+[2024-10-24 08:16:09] sql.INFO: [2.79] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:16:09] sql.INFO: [1.56] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:16:09] sql.INFO: [1.39] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:16:09] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:22:17] sql.INFO: [4.5] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-24 08:22:17] sql.INFO: [1.48] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-24 08:22:29] sql.INFO: [1.88] select * from `website` where (`website_url` = '192.168.1.201:8099') limit 1 [] []
+[2024-10-24 08:22:29] sql.INFO: [1.56] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-10-24 08:22:30] sql.INFO: [1.49] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-10-24 08:22:30] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:22:30] sql.INFO: [1.54] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-24 08:22:30] sql.INFO: [1.1] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-24 08:22:30] sql.INFO: [4.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-10-24 08:23:26] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-24 08:23:26] sql.INFO: [3.87] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:23:26] sql.INFO: [2.6] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:23:26] sql.INFO: [1.57] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:23:26] sql.INFO: [1.8] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:25:52] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-24 08:25:52] sql.INFO: [3.15] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:25:52] sql.INFO: [2.18] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:25:52] sql.INFO: [2.67] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:25:52] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:27:44] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-24 08:27:44] sql.INFO: [2.51] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:27:44] sql.INFO: [1.89] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:27:44] sql.INFO: [1.6] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:27:44] sql.INFO: [1.83] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:28:54] sql.INFO: [26.49] insert into `menu` (`label`, `url`, `icon`, `sort`, `pid_arr`, `pid`) values ('测试01', '/#/====', 'http://www.baidu.com', '1', '["1","2"]', '2') [] []
+[2024-10-24 08:29:34] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-24 08:29:34] sql.INFO: [3.3] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:29:34] sql.INFO: [2.62] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:29:34] sql.INFO: [2.31] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:29:34] sql.INFO: [2.14] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:38:48] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 08:38:48] sql.INFO: [2.54] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:38:48] sql.INFO: [2.18] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:38:48] sql.INFO: [2.01] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:38:48] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:39:23] sql.INFO: [1.8] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-24 08:39:23] sql.INFO: [1.18] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-24 08:40:33] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-24 08:40:33] sql.INFO: [3.28] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:40:33] sql.INFO: [2.85] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:40:33] sql.INFO: [2.57] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:40:33] sql.INFO: [2.89] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:42:14] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 08:42:15] sql.INFO: [3.12] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:42:15] sql.INFO: [2.52] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:42:15] sql.INFO: [1.84] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:42:15] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 08:45:10] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 08:45:11] sql.INFO: [2.35] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 08:45:11] sql.INFO: [2.23] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 08:45:11] sql.INFO: [1.61] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 08:45:11] sql.INFO: [2.64] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:07:57] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 09:07:59] sql.INFO: [4.69] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 09:07:59] sql.INFO: [3.58] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 09:07:59] sql.INFO: [2.95] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 09:07:59] sql.INFO: [2.57] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:08:56] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 09:08:56] sql.INFO: [3.67] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 09:08:56] sql.INFO: [2.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 09:08:56] sql.INFO: [2.01] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 09:08:56] sql.INFO: [1.59] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:16:58] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-24 09:16:59] sql.INFO: [3.33] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 09:16:59] sql.INFO: [1.6] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 09:16:59] sql.INFO: [1.32] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 09:16:59] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:35:11] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-24 09:35:11] sql.INFO: [2.98] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 09:35:11] sql.INFO: [2.77] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 09:35:11] sql.INFO: [1.83] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 09:35:11] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:35:33] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-24 09:35:33] sql.INFO: [2.16] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-24 09:35:33] sql.INFO: [1.86] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-24 09:35:33] sql.INFO: [1.44] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-24 09:35:33] sql.INFO: [1.53] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-24 09:49:12] sql.INFO: [10.39] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:30:45] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 00:30:45] sql.INFO: [1.97] select * from `website` where (`website_url` = 'localhost:9527') limit 1 [] []
+[2024-10-25 00:31:02] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 00:31:03] sql.INFO: [1.71] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:31:03] sql.INFO: [2.05] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:31:03] sql.INFO: [1.6] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:31:03] sql.INFO: [3.39] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:31:48] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 00:31:48] sql.INFO: [1.78] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:31:48] sql.INFO: [1.54] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:31:48] sql.INFO: [1.38] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:31:48] sql.INFO: [1.64] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:34:04] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 00:34:04] sql.INFO: [1.88] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:34:04] sql.INFO: [1.63] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:34:04] sql.INFO: [1.25] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:34:04] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:44:17] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 00:44:17] sql.INFO: [1.8] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:44:17] sql.INFO: [1.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:44:17] sql.INFO: [1.14] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:44:17] sql.INFO: [1.57] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:44:38] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 00:44:38] sql.INFO: [2.23] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:44:38] sql.INFO: [1.51] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:44:38] sql.INFO: [1.29] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:44:38] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:53:32] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 00:53:32] sql.INFO: [2.55] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:53:32] sql.INFO: [1.77] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:53:32] sql.INFO: [1.63] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:53:32] sql.INFO: [1.63] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 00:58:37] sql.INFO: [15.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` = '73' limit 1 [] []
+[2024-10-25 00:58:38] sql.INFO: [3.13] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 00:58:38] sql.INFO: [1.81] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 00:58:38] sql.INFO: [1.54] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 00:58:38] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:01:36] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 01:01:36] sql.INFO: [3.63] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:01:36] sql.INFO: [2.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:01:36] sql.INFO: [2.45] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:01:36] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:06:18] sql.INFO: [13.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` = '73' limit 1 [] []
+[2024-10-25 01:06:18] sql.INFO: [3.38] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:06:18] sql.INFO: [2.73] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:06:18] sql.INFO: [1.83] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:06:18] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:45:48] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 01:45:49] sql.INFO: [2.84] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:45:49] sql.INFO: [3.08] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:45:49] sql.INFO: [1.81] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:45:49] sql.INFO: [3.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:46:48] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 01:46:48] sql.INFO: [3.64] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:46:48] sql.INFO: [1.78] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:46:48] sql.INFO: [1.35] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:46:48] sql.INFO: [1.68] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:49:07] 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` = '73' limit 1 [] []
+[2024-10-25 01:49:07] sql.INFO: [1.68] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:49:07] sql.INFO: [1.58] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:49:07] sql.INFO: [1.17] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:49:07] sql.INFO: [1.38] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:54:27] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 01:54:27] sql.INFO: [1.75] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:54:27] sql.INFO: [1.29] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:54:27] sql.INFO: [1.19] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:54:27] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:54:30] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 01:54:32] sql.INFO: [2.41] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 01:54:32] sql.INFO: [1.37] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 01:54:32] sql.INFO: [1.46] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 01:54:32] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 01:54:55] sql.INFO: [1.45] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:55:05] sql.INFO: [6] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:56:53] sql.INFO: [8.07] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:57:05] sql.INFO: [4.5] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:57:44] sql.INFO: [3.76] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:58:21] sql.INFO: [1.52] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:58:42] sql.INFO: [3.32] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 01:59:18] sql.INFO: [2.01] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 02:00:05] sql.INFO: [1.81] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 02:01:19] sql.INFO: [10.33] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 02:05:18] sql.INFO: [7.43] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 02:06:36] sql.INFO: [14.42] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 02:06:49] sql.INFO: [1.47] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 02:07:24] sql.INFO: [1.63] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 02:07:25] sql.INFO: [6.18] select * from `website` where (`website_url` = '192.168.1.201:8099') limit 1 [] []
+[2024-10-25 02:07:25] sql.INFO: [1.29] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-10-25 02:07:25] sql.INFO: [1.57] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-10-25 02:07:25] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:07:25] sql.INFO: [1.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-10-25 02:07:34] sql.INFO: [3.11] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 02:07:34] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 02:07:34] sql.INFO: [2.86] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:07:34] sql.INFO: [2.56] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:07:34] sql.INFO: [1.44] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:07:34] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:08:31] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:08:31] sql.INFO: [3.95] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:08:31] sql.INFO: [3.37] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:08:31] sql.INFO: [2.48] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:08:31] sql.INFO: [2.43] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:15:36] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.91] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.42] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.61] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.55] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:15:37] sql.INFO: [1.56] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.31] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.31] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:15:37] sql.INFO: [1.7] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.48] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.49] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:15:37] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:16:53] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.64] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.2] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.19] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.55] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:16:53] sql.INFO: [1.48] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.3] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.44] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.43] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:16:53] sql.INFO: [1.96] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.49] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.19] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:16:53] sql.INFO: [1.34] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:17:12] 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` = '73' limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.72] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.55] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.47] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:17:13] 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` = '73' limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.63] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.66] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.56] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.39] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:17:13] sql.INFO: [1.55] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.62] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.47] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:17:13] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:25] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 02:18:25] sql.INFO: [1.75] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:25] sql.INFO: [1.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:25] sql.INFO: [1.22] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:25] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:26] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.7] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.27] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.12] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.43] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:26] sql.INFO: [1.55] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.2] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.09] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:26] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:47] 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` = '73' limit 1 [] []
+[2024-10-25 02:18:47] sql.INFO: [1.95] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:47] sql.INFO: [1.26] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:47] sql.INFO: [1.2] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:47] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:48] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.78] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.6] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.58] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.64] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:48] sql.INFO: [1.73] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.64] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.41] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:18:48] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.7] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.37] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.27] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:18:48] sql.INFO: [1.89] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:26:25] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.9] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.39] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.27] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:26:25] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.99] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.5] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.34] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:26:25] sql.INFO: [1.73] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:26:26] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:26:26] sql.INFO: [2.23] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:26:26] sql.INFO: [1.42] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:26:26] sql.INFO: [1.27] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:26:26] sql.INFO: [1.61] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:26:26] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:26:27] sql.INFO: [1.98] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:26:27] sql.INFO: [1.98] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:26:27] sql.INFO: [1.41] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:26:27] sql.INFO: [1.57] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:27:06] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 02:27:07] sql.INFO: [2.66] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:27:07] sql.INFO: [1.92] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:27:07] sql.INFO: [2.03] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:27:07] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:29:31] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 02:29:31] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.93] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.2] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.51] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:29:32] sql.INFO: [1.73] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.62] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.44] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:29:32] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [2.17] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [2.25] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [1.59] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:29:32] sql.INFO: [2.18] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:29:33] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:29:33] sql.INFO: [2.69] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:29:33] sql.INFO: [2.11] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:29:33] sql.INFO: [8.85] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:29:33] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:31:38] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [2.14] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [2.03] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [1.22] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [2.29] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:31:38] sql.INFO: [1.67] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [1.32] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [1.34] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:31:38] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:31:38] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 02:31:39] 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` = '73' limit 1 [] []
+[2024-10-25 02:31:39] sql.INFO: [1.81] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:31:39] sql.INFO: [1.31] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:31:39] sql.INFO: [1.23] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:31:39] sql.INFO: [1.34] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:31:41] sql.INFO: [2.78] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:31:41] sql.INFO: [1.76] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:31:41] sql.INFO: [1.85] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:31:41] sql.INFO: [1.79] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:32:03] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:32:03] sql.INFO: [1.78] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:32:03] sql.INFO: [1.44] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:32:03] sql.INFO: [1.32] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:32:03] sql.INFO: [1.44] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:32:03] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:32:03] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.79] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.35] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.25] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:32:04] sql.INFO: [1.33] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.38] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.25] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:32:04] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.93] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.75] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.74] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:32:04] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:39:28] sql.INFO: [10.24] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 02:39:28] sql.INFO: [2.59] select * from `website` where (`website_url` = '192.168.1.201:8099') limit 1 [] []
+[2024-10-25 02:39:28] sql.INFO: [1.84] select * from `website_role_user` where (`website_id` = '1' and `user_id` = '32') limit 1 [] []
+[2024-10-25 02:39:28] sql.INFO: [7.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-10-25 02:39:28] sql.INFO: [1.82] select * from `role` where (`id` = '15') limit 1 [] []
+[2024-10-25 02:39:28] sql.INFO: [5.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:50:49] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 02:50:49] sql.INFO: [4.68] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:50:49] sql.INFO: [3.91] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:50:49] sql.INFO: [2.96] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:50:49] sql.INFO: [2.44] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:50:56] 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` = '73' limit 1 [] []
+[2024-10-25 02:50:56] sql.INFO: [3.26] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:50:56] sql.INFO: [2.77] select * from `website_role_user` where (`website_id` = '2' and `user_id` = '73') limit 1 [] []
+[2024-10-25 02:50:56] sql.INFO: [2.63] select * from `role` where (`id` = '1') limit 1 [] []
+[2024-10-25 02:50:56] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 02:54:56] 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` = '73' limit 1 [] []
+[2024-10-25 02:54:56] sql.INFO: [7.05] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:55:19] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 02:55:19] sql.INFO: [3.7] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:55:23] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 02:55:23] sql.INFO: [3.96] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:57:04] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-25 02:57:04] sql.INFO: [4.14] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 02:57:24] 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` = '73' limit 1 [] []
+[2024-10-25 02:57:24] sql.INFO: [1.38] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 03:02:52] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 03:02:53] sql.INFO: [4.43] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 03:03:56] sql.INFO: [4.29] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 03:03:56] sql.INFO: [1.44] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 03:03:59] sql.INFO: [4.22] select * from `website` where (`website_url` = '192.168.1.201:8099') limit 1 [] []
+[2024-10-25 03:03:59] sql.INFO: [1.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-10-25 03:04:25] sql.INFO: [1.86] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 03:04:25] sql.INFO: [1.84] select * from `website` where (`website_url` = '192.168.1.201:8099') limit 1 [] []
+[2024-10-25 03:04:25] sql.INFO: [4.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-10-25 03:06:28] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 03:06:29] sql.INFO: [1.39] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 03:12:15] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 03:12:17] sql.INFO: [2.88] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 03:15:40] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 03:15:40] sql.INFO: [7.58] select * from `website` where (`website_url` = '192.168.1.188:9527') limit 1 [] []
+[2024-10-25 03:20:52] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 03:22:31] sql.INFO: [8.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-10-25 03:22:31] sql.INFO: [4.84] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 03:22:31] sql.INFO: [1.57] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 03:24:35] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 03:24:37] sql.INFO: [1.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 03:24:37] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 03:30:54] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 03:30:54] sql.INFO: [12.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 03:30:54] sql.INFO: [1.89] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:08:14] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 05:08:14] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:08:14] sql.INFO: [2.25] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:08:14] sql.INFO: [2.01] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:08:14] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:08:14] sql.INFO: [1.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:08:14] sql.INFO: [1.79] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:08:15] 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` = '73' limit 1 [] []
+[2024-10-25 05:08:15] sql.INFO: [2.61] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:08:15] sql.INFO: [1.56] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:08:15] sql.INFO: [2.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:08:15] sql.INFO: [2.16] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:08:51] sql.INFO: [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` = '73' limit 1 [] []
+[2024-10-25 05:08:51] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:08:51] sql.INFO: [1.82] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:09:18] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.92] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:09:18] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 05:09:18] 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` = '73' limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.88] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.44] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:09:18] sql.INFO: [1.64] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.64] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:09:18] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:09:18] sql.INFO: [1.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:10:25] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 05:10:25] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:10:25] sql.INFO: [1.68] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:10:25] sql.INFO: [2.04] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:10:25] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:10:25] sql.INFO: [1.38] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:10:26] 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` = '73' limit 1 [] []
+[2024-10-25 05:10:26] sql.INFO: [1.95] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:10:26] sql.INFO: [1.75] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:10:26] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:10:26] sql.INFO: [1.83] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:10:26] sql.INFO: [1.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:11:07] 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` = '73' limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.88] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.53] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:11:07] sql.INFO: [1.54] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.5] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:11:07] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.69] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.46] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:11:07] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.84] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:11:07] sql.INFO: [1.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:18:02] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 05:18:03] sql.INFO: [5.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:18:03] sql.INFO: [3.84] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:13] 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` = '73' limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [2.42] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.97] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:13] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.69] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.4] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:13] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.88] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:13] sql.INFO: [1.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:13] sql.INFO: [1.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:35] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:35] sql.INFO: [1.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:35] sql.INFO: [1.45] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [1.71] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [2.1] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:36] sql.INFO: [1.83] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [1.37] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:19:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [1.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:19:36] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:21:28] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 05:21:28] sql.INFO: [1.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:21:28] sql.INFO: [3.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:26:43] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 05:26:44] sql.INFO: [1.46] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:26:44] sql.INFO: [2.09] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:28:56] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-25 05:28:57] sql.INFO: [3.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:28:57] sql.INFO: [2.75] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:29:48] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 05:29:48] sql.INFO: [3.19] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:29:48] sql.INFO: [2.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:31:13] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 05:31:14] sql.INFO: [2.25] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:31:14] sql.INFO: [1.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:31:59] 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` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
+[2024-10-25 05:31:59] sql.INFO: [1.67] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:31:59] sql.INFO: [1.6] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:36:56] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 05:36:57] sql.INFO: [7.03] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:36:57] sql.INFO: [4.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:38:20] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 05:38:20] sql.INFO: [3.93] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:38:20] sql.INFO: [2.88] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:39:04] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 05:39:04] sql.INFO: [5.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:39:04] sql.INFO: [4.25] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:39:30] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:39:30] sql.INFO: [2.36] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:39:30] sql.INFO: [2.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:42:35] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 05:42:35] sql.INFO: [3.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:42:35] sql.INFO: [3.94] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:51:16] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 05:51:17] sql.INFO: [2.2] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:51:17] sql.INFO: [2.22] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:54:52] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 05:54:52] sql.INFO: [4.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:54:52] sql.INFO: [5.18] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:55:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.67] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.44] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:55:36] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [2.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:55:36] sql.INFO: [1.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:55:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [2.23] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:55:36] sql.INFO: [1.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:55:52] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:55:52] sql.INFO: [3.19] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:55:52] sql.INFO: [2.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:56:06] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 05:56:06] sql.INFO: [2.51] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:56:06] sql.INFO: [2.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:56:17] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:56:17] sql.INFO: [3.15] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:56:17] sql.INFO: [2.65] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:56:33] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 05:56:35] sql.INFO: [1.89] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:56:35] sql.INFO: [1.84] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:56:40] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 05:56:40] sql.INFO: [2.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:56:40] sql.INFO: [1.86] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:58:22] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 05:58:23] sql.INFO: [3.95] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:58:23] sql.INFO: [2.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:58:46] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:58:46] sql.INFO: [5.07] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:58:46] sql.INFO: [4.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:59:30] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 05:59:30] sql.INFO: [5.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:59:30] sql.INFO: [4.07] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 05:59:47] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 05:59:47] sql.INFO: [5.23] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 05:59:47] sql.INFO: [2.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:00:04] sql.INFO: [13.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` = '73' limit 1 [] []
+[2024-10-25 06:00:04] sql.INFO: [4.44] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:00:04] sql.INFO: [2.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:03:01] 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` = '73' limit 1 [] []
+[2024-10-25 06:03:02] sql.INFO: [4.24] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:03:02] sql.INFO: [3.07] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:03:08] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 06:03:08] sql.INFO: [4.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:03:08] sql.INFO: [3.44] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:03:11] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 06:03:11] sql.INFO: [3.08] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:03:11] sql.INFO: [1.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:03:57] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 06:03:57] sql.INFO: [1.62] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:03:57] sql.INFO: [1.64] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:05:06] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 06:05:06] sql.INFO: [2.05] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:05:06] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:05:30] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 06:05:30] sql.INFO: [5.24] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:05:30] sql.INFO: [2.94] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:06:15] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 06:06:15] sql.INFO: [3.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:06:15] sql.INFO: [3.07] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:06:31] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 06:06:32] sql.INFO: [4.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:06:32] sql.INFO: [3.58] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:08:55] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 06:08:55] sql.INFO: [1.84] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:08:55] sql.INFO: [1.41] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:09:39] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 06:09:39] sql.INFO: [1.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:09:39] sql.INFO: [1.54] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:14:58] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 06:14:59] sql.INFO: [2.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:14:59] sql.INFO: [2.21] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:15:31] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 06:15:31] sql.INFO: [2.12] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:15:31] sql.INFO: [2.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:15:46] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 06:15:46] sql.INFO: [4.61] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:15:46] sql.INFO: [3.09] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:16:34] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 06:16:34] sql.INFO: [7.03] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:16:34] sql.INFO: [4.73] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:18:04] sql.INFO: [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` = '73' limit 1 [] []
+[2024-10-25 06:18:04] sql.INFO: [2.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:18:04] sql.INFO: [1.99] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:20:14] 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` = '73' limit 1 [] []
+[2024-10-25 06:20:14] sql.INFO: [3.2] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:20:14] sql.INFO: [3.29] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:22:21] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 06:22:21] sql.INFO: [1.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:22:21] sql.INFO: [1.54] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:22:35] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 06:22:35] sql.INFO: [1.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:22:35] sql.INFO: [1.53] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:22:38] 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` = '73' limit 1 [] []
+[2024-10-25 06:22:38] sql.INFO: [1.68] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:22:38] sql.INFO: [1.43] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:25:26] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 06:25:27] sql.INFO: [1.73] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:25:27] sql.INFO: [2.3] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:25:44] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 06:25:45] sql.INFO: [4.06] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:25:45] sql.INFO: [3.06] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:25:57] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 06:25:57] sql.INFO: [1.53] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:25:57] sql.INFO: [1.6] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:28:35] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 06:28:35] sql.INFO: [3.3] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:28:35] sql.INFO: [2.86] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:40:21] sql.INFO: [13.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` = '73' limit 1 [] []
+[2024-10-25 06:40:22] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:40:22] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:42:03] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-25 06:42:03] sql.INFO: [4.07] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:42:03] sql.INFO: [3.67] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:42:35] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 06:42:35] sql.INFO: [5.25] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:42:35] sql.INFO: [3.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:43:13] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 06:43:13] sql.INFO: [1.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:43:13] sql.INFO: [1.63] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:43:13] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 06:43:13] sql.INFO: [1.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:43:13] sql.INFO: [1.28] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:51:39] sql.INFO: [5.07] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 06:51:39] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 06:51:39] sql.INFO: [1.6] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:51:39] sql.INFO: [1.6] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:51:49] 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` = '73' limit 1 [] []
+[2024-10-25 06:51:50] sql.INFO: [1.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:51:50] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:54:21] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 06:54:22] sql.INFO: [2.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:54:22] sql.INFO: [1.67] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:56:46] sql.INFO: [6.3] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 06:56:46] sql.INFO: [1.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 06:56:46] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:56:46] sql.INFO: [5.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-10-25 06:57:17] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 06:57:17] sql.INFO: [3.87] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:57:17] sql.INFO: [3.83] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:57:24] sql.INFO: [2.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-10-25 06:57:24] sql.INFO: [1.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 06:57:24] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:57:29] 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` = '73' limit 1 [] []
+[2024-10-25 06:57:29] sql.INFO: [2.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:57:29] sql.INFO: [2.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:57:31] sql.INFO: [1.85] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 06:57:31] 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-10-25 06:57:31] sql.INFO: [2.18] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:58:15] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 06:58:15] sql.INFO: [2.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-10-25 06:58:15] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:58:34] 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` = '73' limit 1 [] []
+[2024-10-25 06:58:35] sql.INFO: [1.92] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 06:58:35] sql.INFO: [1.71] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:59:49] sql.INFO: [4.47] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 06:59:49] sql.INFO: [1.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 06:59:49] sql.INFO: [1.97] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 06:59:49] sql.INFO: [1.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-10-25 07:00:40] sql.INFO: [2.08] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 07:00:40] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:00:40] sql.INFO: [6.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-10-25 07:03:27] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 07:03:29] sql.INFO: [2.71] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:03:29] sql.INFO: [1.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:03:45] sql.INFO: [1.68] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 07:03:45] sql.INFO: [1.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-10-25 07:03:45] sql.INFO: [6.24] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 07:03:45] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:04:54] sql.INFO: [4.75] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 07:04:55] sql.INFO: [2.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-10-25 07:04:55] sql.INFO: [6.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 07:04:55] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:07:59] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 07:07:59] sql.INFO: [2.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:07:59] sql.INFO: [1.87] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:08:29] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:08:30] sql.INFO: [1.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:08:30] sql.INFO: [1.55] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:12:25] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 07:12:25] sql.INFO: [2.03] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:12:25] sql.INFO: [1.6] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:14:08] sql.INFO: [5.07] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 07:14:08] sql.INFO: [6.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-10-25 07:14:08] sql.INFO: [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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:19:31] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 07:19:33] sql.INFO: [2.42] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:19:33] sql.INFO: [1.58] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:20:12] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:21:00] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:22:36] sql.INFO: [4.54] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 07:22:36] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 07:22:36] sql.INFO: [2.63] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:22:36] sql.INFO: [1.88] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:23:01] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:23:02] sql.INFO: [3.89] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:23:02] sql.INFO: [2.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:23:28] sql.INFO: [1.64] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 07:23:28] sql.INFO: [1.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 07:23:28] sql.INFO: [1.84] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:23:28] sql.INFO: [1.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-10-25 07:23:43] sql.INFO: [1.37] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 07:23:43] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:23:43] sql.INFO: [1.38] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:23:43] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:26:20] 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` = '73' limit 1 [] []
+[2024-10-25 07:26:21] sql.INFO: [7.18] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:26:21] sql.INFO: [1.91] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:26:37] 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` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
+[2024-10-25 07:26:37] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:26:37] sql.INFO: [1.75] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:26:48] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:26:49] sql.INFO: [1.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:26:49] sql.INFO: [1.33] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:27:08] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 07:27:08] sql.INFO: [1.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:27:08] sql.INFO: [1.5] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:27:23] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 07:27:23] sql.INFO: [1.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:27:23] sql.INFO: [1.35] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:27:42] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:27:42] sql.INFO: [2.06] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:27:42] sql.INFO: [1.55] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:29:24] sql.INFO: [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` = '73' limit 1 [] []
+[2024-10-25 07:29:24] sql.INFO: [1.61] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:29:24] sql.INFO: [1.87] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:29:55] 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` = '73' limit 1 [] []
+[2024-10-25 07:29:55] sql.INFO: [1.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:29:55] sql.INFO: [1.7] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:30:24] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:30:24] sql.INFO: [1.56] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:30:24] sql.INFO: [1.37] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:30:33] 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` = '73' limit 1 [] []
+[2024-10-25 07:30:33] sql.INFO: [1.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:30:33] sql.INFO: [1.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:31:00] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:31:00] sql.INFO: [2.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:31:00] sql.INFO: [1.67] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:31:30] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 07:31:30] sql.INFO: [1.62] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:31:30] sql.INFO: [1.46] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:35:07] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 07:35:07] sql.INFO: [1.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:35:07] sql.INFO: [1.39] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:35:16] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 07:35:16] sql.INFO: [1.69] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:35:16] sql.INFO: [1.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:36:07] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 07:36:08] sql.INFO: [6.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:36:08] sql.INFO: [2.53] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:43:16] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 07:43:17] sql.INFO: [2.21] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:43:17] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:55:44] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-25 07:55:45] sql.INFO: [1.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:55:45] sql.INFO: [1.67] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 07:59:08] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 07:59:08] sql.INFO: [1.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 07:59:08] sql.INFO: [1.8] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:02:48] sql.INFO: [14.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` = '73' limit 1 [] []
+[2024-10-25 08:02:49] sql.INFO: [5.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:02:49] sql.INFO: [3.93] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:08:14] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 08:08:15] sql.INFO: [4.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:08:15] sql.INFO: [3.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:13:26] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 08:13:26] sql.INFO: [2.99] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:13:26] sql.INFO: [3.08] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:14:40] sql.INFO: [6.61] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 08:14:40] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 08:14:40] sql.INFO: [2.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:14:40] sql.INFO: [1.54] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:16:30] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 08:16:30] sql.INFO: [2.2] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:16:30] sql.INFO: [5.25] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:21:35] sql.INFO: [4.87] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 08:21:36] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 08:21:36] sql.INFO: [1.77] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:21:36] sql.INFO: [1.45] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:22:19] sql.INFO: [1.52] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 08:22:20] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 08:22:20] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:22:20] sql.INFO: [1.35] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:29:48] sql.INFO: [15.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` = '73' limit 1 [] []
+[2024-10-25 08:29:48] sql.INFO: [4.16] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:29:48] sql.INFO: [3.96] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:31:34] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 08:31:34] sql.INFO: [1.52] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:31:34] sql.INFO: [1.43] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:33:13] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 08:33:14] sql.INFO: [1.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:33:14] sql.INFO: [1.72] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:33:55] sql.INFO: [1.72] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 08:33:55] sql.INFO: [2.08] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 08:33:55] sql.INFO: [2.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:33:55] sql.INFO: [1.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-10-25 08:40:54] 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` = '73' limit 1 [] []
+[2024-10-25 08:40:56] sql.INFO: [3.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:40:56] sql.INFO: [2.72] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:42:03] 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` = '73' limit 1 [] []
+[2024-10-25 08:42:03] sql.INFO: [2.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:42:03] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:45:26] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 08:45:26] sql.INFO: [2.34] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:45:26] sql.INFO: [2.01] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:45:59] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 08:45:59] sql.INFO: [2.15] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:45:59] sql.INFO: [1.83] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:47:03] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 08:47:03] sql.INFO: [2.81] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:47:03] sql.INFO: [2.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:48:11] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 08:48:11] sql.INFO: [2.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:48:11] sql.INFO: [2.21] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:48:41] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 08:48:43] sql.INFO: [2.37] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:48:43] sql.INFO: [2.1] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:49:15] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 08:49:15] sql.INFO: [3.71] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:49:15] sql.INFO: [4.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:50:54] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 08:50:56] sql.INFO: [2.4] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:50:56] sql.INFO: [1.99] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:51:20] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 08:51:20] sql.INFO: [4.26] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:51:20] sql.INFO: [3.23] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:53:56] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-25 08:53:56] sql.INFO: [6.34] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:53:56] sql.INFO: [4.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:54:34] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 08:54:34] sql.INFO: [1.68] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:54:34] sql.INFO: [1.87] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:55:39] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 08:55:39] sql.INFO: [4.61] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:55:39] sql.INFO: [2.43] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:56:35] sql.INFO: [2.4] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-25 08:56:35] 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-10-25 08:56:35] sql.INFO: [5.12] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 08:56:35] sql.INFO: [1.43] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:56:40] sql.INFO: [1.75] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 08:56:40] sql.INFO: [1.41] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 08:58:32] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 08:58:32] sql.INFO: [1.63] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:58:32] sql.INFO: [1.59] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 08:58:57] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 08:58:57] sql.INFO: [1.92] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 08:58:57] sql.INFO: [2.06] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:00:27] sql.INFO: [5.45] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-25 09:00:27] sql.INFO: [2.91] 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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-10-25 09:00:28] sql.INFO: [1.76] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 09:00:28] sql.INFO: [1.29] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 09:00:29] sql.INFO: [4.27] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-25 09:00:30] sql.INFO: [2.53] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-25 09:00:53] sql.INFO: [4.68] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-25 09:00:53] sql.INFO: [3.4] 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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-10-25 09:00:54] sql.INFO: [5.41] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 09:00:54] sql.INFO: [3.61] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 09:00:58] sql.INFO: [3.63] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-25 09:00:58] sql.INFO: [2.33] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-25 09:01:03] sql.INFO: [3.17] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-25 09:01:03] sql.INFO: [3.08] 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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-10-25 09:01:19] sql.INFO: [4.8] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 09:01:19] sql.INFO: [2.79] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 09:01:34] sql.INFO: [4.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 09:01:34] sql.INFO: [6.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:02:44] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 09:02:46] sql.INFO: [1.93] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:02:46] sql.INFO: [1.74] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:04:06] sql.INFO: [9.29] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-25 09:04:06] sql.INFO: [2.46] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-25 09:04:11] sql.INFO: [7.09] select count(*) as aggregate from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` left join `user_level` on `user`.`level_id` = `user_level`.`id` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` [] []
+[2024-10-25 09:04:11] sql.INFO: [4.64] 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`, `userA`.`nickname` as `admin_nickname`, `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` left join `user` as `userA` on `user`.`admin_id` = `userA`.`id` order by `user`.`id` desc limit 10 offset 0 [] []
+[2024-10-25 09:04:14] sql.INFO: [5.2] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-25 09:04:14] sql.INFO: [2.86] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-25 09:06:38] sql.INFO: [7.01] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 09:06:39] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 09:06:39] sql.INFO: [1.43] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:06:39] sql.INFO: [2.04] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:06:44] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 09:06:44] sql.INFO: [2.01] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:06:44] sql.INFO: [1.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:07:08] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-25 09:07:09] sql.INFO: [2.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:07:09] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:07:31] sql.INFO: [1.62] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 09:07:31] sql.INFO: [1.76] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:07:51] sql.INFO: [3.28] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-25 09:07:51] sql.INFO: [3.49] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:13:41] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 09:13:41] sql.INFO: [4.31] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:13:41] sql.INFO: [3.18] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:21:35] sql.INFO: [10.66] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 09:21:35] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 09:21:35] sql.INFO: [1.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:21:35] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:25:14] sql.INFO: [6.87] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 09:25:14] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 09:25:14] sql.INFO: [8.87] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:25:14] sql.INFO: [1.3] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:30:53] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-25 09:30:53] sql.INFO: [1.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:30:53] sql.INFO: [1.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:35:15] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-25 09:35:15] sql.INFO: [2.35] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:35:15] sql.INFO: [2.12] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:37:31] sql.INFO: [4.38] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-25 09:37:31] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-25 09:37:31] sql.INFO: [1.62] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:37:31] sql.INFO: [2.35] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:46:07] 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` = '73' limit 1 [] []
+[2024-10-25 09:46:07] sql.INFO: [2.05] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:46:07] sql.INFO: [1.73] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:48:42] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 09:48:43] sql.INFO: [2.9] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:48:43] sql.INFO: [2.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:49:10] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 09:49:10] sql.INFO: [3.66] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:49:10] sql.INFO: [2.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:50:15] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-25 09:50:15] sql.INFO: [5.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:50:15] sql.INFO: [2.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:52:32] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 09:52:32] sql.INFO: [8.99] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:52:32] sql.INFO: [3] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 09:53:47] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-25 09:53:48] sql.INFO: [4.16] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 09:53:48] sql.INFO: [3.07] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 10:01:56] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-25 10:01:56] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 10:01:56] sql.INFO: [1.73] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 10:02:28] 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` = '73' limit 1 [] []
+[2024-10-25 10:02:28] sql.INFO: [3.17] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 10:02:28] sql.INFO: [2.53] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 10:04:31] 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` = '73' limit 1 [] []
+[2024-10-25 10:04:31] sql.INFO: [3.3] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 10:04:31] sql.INFO: [2.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-25 10:05:04] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-25 10:05:04] sql.INFO: [3.28] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-25 10:05:04] sql.INFO: [2.85] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 00:16:56] sql.INFO: [5.43] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-28 00:16:56] 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` = '73' limit 1 [] []
+[2024-10-28 00:16:56] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 00:16:56] sql.INFO: [1.79] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 00:39:50] sql.INFO: [40.75] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-28 00:39:51] sql.INFO: [19.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` = '73' limit 1 [] []
+[2024-10-28 00:39:51] sql.INFO: [31.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 00:39:51] sql.INFO: [30.17] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 00:45:46] sql.INFO: [14.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` = '73' limit 1 [] []
+[2024-10-28 00:45:46] sql.INFO: [7.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 00:45:46] sql.INFO: [4.42] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 00:46:40] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 00:46:40] sql.INFO: [4.02] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 00:46:40] sql.INFO: [3.23] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:03:56] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-28 03:03:56] sql.INFO: [15.54] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:03:56] sql.INFO: [1.9] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:08:40] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 03:08:40] sql.INFO: [4.01] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:08:40] sql.INFO: [3] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:09:03] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 03:09:03] sql.INFO: [3.44] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:09:03] sql.INFO: [3.33] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:09:26] 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` = '73' limit 1 [] []
+[2024-10-28 03:09:26] sql.INFO: [5.43] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:09:26] sql.INFO: [1.67] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:09:35] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 03:09:35] sql.INFO: [4.41] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:09:35] sql.INFO: [3.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:09:59] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 03:09:59] sql.INFO: [2.81] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:09:59] sql.INFO: [2.86] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:10:34] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 03:10:34] sql.INFO: [4.59] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:10:34] sql.INFO: [3.42] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:11:03] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 03:11:04] sql.INFO: [3.92] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:11:04] sql.INFO: [3.4] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:26:26] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-28 03:26:26] sql.INFO: [8.25] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:26:26] sql.INFO: [4.46] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 03:30:48] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 03:30:49] sql.INFO: [2.37] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 03:30:49] sql.INFO: [2.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:12:50] sql.INFO: [16.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` = '73' limit 1 [] []
+[2024-10-28 05:12:50] sql.INFO: [8.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:12:50] sql.INFO: [4.77] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:17:03] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 05:17:04] sql.INFO: [4.45] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:17:04] sql.INFO: [3.32] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:33:42] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 05:33:42] sql.INFO: [2.33] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:33:42] sql.INFO: [2.7] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:33:50] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 05:33:50] sql.INFO: [1.87] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:33:50] sql.INFO: [1.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:35:31] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 05:35:31] sql.INFO: [3.13] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:35:31] sql.INFO: [2] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:38:29] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 05:38:29] sql.INFO: [2.52] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:38:29] sql.INFO: [2.9] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:39:05] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 05:39:05] sql.INFO: [2.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:39:05] sql.INFO: [2.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:47:44] sql.INFO: [19.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` = '73' limit 1 [] []
+[2024-10-28 05:47:44] sql.INFO: [7.42] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:47:44] sql.INFO: [4.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:48:34] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 05:48:34] sql.INFO: [1.66] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:48:34] sql.INFO: [1.29] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:48:35] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 05:48:35] sql.INFO: [4.46] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:48:35] sql.INFO: [3.04] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:50:36] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-28 05:50:36] sql.INFO: [7.41] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:50:36] sql.INFO: [2.82] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:50:36] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 05:50:36] sql.INFO: [4.47] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:50:36] sql.INFO: [3.04] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:51:28] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 05:51:28] sql.INFO: [1.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:51:28] sql.INFO: [1.37] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:51:29] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 05:51:30] sql.INFO: [4.54] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:51:30] sql.INFO: [3.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:53:21] 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` = '73' limit 1 [] []
+[2024-10-28 05:53:21] sql.INFO: [3.6] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:53:21] sql.INFO: [3.15] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 05:55:04] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-28 05:55:05] sql.INFO: [5.11] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 05:55:05] sql.INFO: [3.59] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:12:12] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-28 06:12:12] sql.INFO: [3.81] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:12:12] sql.INFO: [2.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:17:08] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-28 06:17:08] sql.INFO: [3.29] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:17:08] sql.INFO: [1.84] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:18:19] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-28 06:18:19] sql.INFO: [5.3] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:18:19] sql.INFO: [3.55] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:19:53] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 06:19:53] sql.INFO: [5.09] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:19:53] sql.INFO: [3.1] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:20:09] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 06:20:10] sql.INFO: [5.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:20:10] sql.INFO: [3.79] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:22:22] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-28 06:22:22] sql.INFO: [4.53] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:22:22] sql.INFO: [3.15] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:23:24] 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` = '73' limit 1 [] []
+[2024-10-28 06:23:24] sql.INFO: [2.93] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:23:24] sql.INFO: [2.51] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:24:09] sql.INFO: [1.47] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-28 06:24:09] sql.INFO: [1.69] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-28 06:24:09] sql.INFO: [1.57] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:24:09] sql.INFO: [1.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-10-28 06:32:21] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 06:32:22] sql.INFO: [3.49] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:32:22] sql.INFO: [3.54] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:33:04] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 06:33:04] sql.INFO: [4.54] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:33:04] sql.INFO: [3.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:40:41] sql.INFO: [15.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` = '73' limit 1 [] []
+[2024-10-28 06:40:41] sql.INFO: [1.92] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:40:41] sql.INFO: [1.59] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:41:09] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 06:41:09] sql.INFO: [6.41] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:41:10] sql.INFO: [1.99] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 06:42:45] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-28 06:42:45] sql.INFO: [1.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 06:42:45] sql.INFO: [1.62] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:03:50] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-28 07:03:50] sql.INFO: [2.6] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:03:50] sql.INFO: [2.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:05:08] sql.INFO: [38.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` = '73' limit 1 [] []
+[2024-10-28 07:05:08] sql.INFO: [18.56] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:05:08] sql.INFO: [5.51] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:06:05] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-28 07:06:05] sql.INFO: [4.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:06:05] sql.INFO: [4.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:07:15] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 07:07:15] sql.INFO: [8.34] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:07:15] sql.INFO: [2.9] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:08:32] 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` = '73' limit 1 [] []
+[2024-10-28 07:08:33] sql.INFO: [4.91] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:08:33] sql.INFO: [1.83] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:19:08] sql.INFO: [6.39] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 07:19:08] sql.INFO: [1.21] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 07:25:52] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 07:25:52] sql.INFO: [3.64] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:25:52] sql.INFO: [3.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:28:06] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 07:28:06] sql.INFO: [11.22] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:28:06] sql.INFO: [2.4] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:29:12] sql.INFO: [4.53] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-28 07:29:12] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 07:29:12] sql.INFO: [1.63] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:29:12] sql.INFO: [1.31] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:36:38] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 07:36:38] sql.INFO: [3.33] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:36:38] sql.INFO: [2.64] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:37:01] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 07:37:01] sql.INFO: [2.97] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:37:01] sql.INFO: [2.46] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:38:36] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 07:38:36] sql.INFO: [2.64] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:38:36] sql.INFO: [2.26] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:41:02] 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` = '73' limit 1 [] []
+[2024-10-28 07:41:02] sql.INFO: [1.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:41:02] sql.INFO: [1.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:46:02] sql.INFO: [14.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` = '73' limit 1 [] []
+[2024-10-28 07:46:02] sql.INFO: [5.29] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:46:02] sql.INFO: [4.62] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:48:04] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 07:48:04] sql.INFO: [2.16] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:48:04] sql.INFO: [1.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:48:53] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 07:48:54] sql.INFO: [4.02] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:48:54] sql.INFO: [2.64] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:49:43] sql.INFO: [1.91] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-28 07:49:43] sql.INFO: [1.76] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:49:43] sql.INFO: [5.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-10-28 07:50:56] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 07:50:56] sql.INFO: [3.17] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:50:56] sql.INFO: [2.15] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:51:43] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 07:51:43] sql.INFO: [3.27] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:51:43] sql.INFO: [2.66] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:52:31] sql.INFO: [1.51] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-28 07:52:32] sql.INFO: [2.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-28 07:52:32] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 07:52:32] 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-10-28 07:55:12] sql.INFO: [20.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` = '73' limit 1 [] []
+[2024-10-28 07:55:13] sql.INFO: [1.54] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 07:55:13] sql.INFO: [1.51] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:13:17] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 08:13:17] sql.INFO: [1.77] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:13:17] sql.INFO: [1.88] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:40:56] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 08:40:56] sql.INFO: [2.29] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:40:56] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:41:52] 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` = '73' limit 1 [] []
+[2024-10-28 08:41:53] sql.INFO: [2.01] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:41:53] sql.INFO: [1.54] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:43:04] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 08:43:04] sql.INFO: [1.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:43:04] sql.INFO: [2.04] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:45:17] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 08:45:17] sql.INFO: [1.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:45:17] sql.INFO: [1.38] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:46:04] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 08:46:04] sql.INFO: [2.49] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:46:04] sql.INFO: [2.94] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:47:47] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 08:47:47] sql.INFO: [1.81] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:47:47] sql.INFO: [1.73] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:50:06] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 08:50:06] sql.INFO: [2.53] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:50:06] sql.INFO: [1.7] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:50:27] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 08:50:27] sql.INFO: [1.9] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:50:27] sql.INFO: [1.63] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:50:43] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 08:50:43] sql.INFO: [2.38] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:50:43] sql.INFO: [2.12] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:52:29] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-28 08:52:29] sql.INFO: [1.78] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:52:29] sql.INFO: [2.06] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 08:59:23] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 08:59:23] sql.INFO: [1.77] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 08:59:23] sql.INFO: [1.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:01:05] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-28 09:01:05] sql.INFO: [2.12] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:01:05] sql.INFO: [2.08] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:04:12] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 09:04:12] sql.INFO: [4.07] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:04:12] sql.INFO: [2.33] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:06:17] sql.INFO: [7.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` = '73' limit 1 [] []
+[2024-10-28 09:06:17] sql.INFO: [4.43] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:06:17] sql.INFO: [3.42] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:18:48] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 09:18:49] sql.INFO: [1.71] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:18:49] sql.INFO: [1.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:19:40] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 09:19:40] sql.INFO: [1.98] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:19:40] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:23:40] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 09:23:40] sql.INFO: [1.76] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:23:40] sql.INFO: [1.56] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:29:26] sql.INFO: [5.4] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 09:29:26] sql.INFO: [1.45] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 09:29:44] sql.INFO: [1.65] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-28 09:29:44] sql.INFO: [1.54] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-28 09:29:49] sql.INFO: [1.73] select * from `menu` where (`pid` = '4') limit 10 offset 0 [] []
+[2024-10-28 09:29:49] sql.INFO: [1.16] select count(*) as aggregate from `menu` where (`pid` = '4') [] []
+[2024-10-28 09:29:53] sql.INFO: [1.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-28 09:29:53] sql.INFO: [1.73] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-28 09:30:04] sql.INFO: [1.89] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 09:30:04] sql.INFO: [1.47] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 09:35:49] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-28 09:35:50] sql.INFO: [1.69] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:35:50] sql.INFO: [1.77] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:35:56] 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` = '73' limit 1 [] []
+[2024-10-28 09:35:56] sql.INFO: [1.68] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:35:56] sql.INFO: [1.36] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:40:19] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-28 09:40:19] sql.INFO: [4.38] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:40:19] sql.INFO: [3.34] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:40:53] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 09:40:53] sql.INFO: [4.17] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:40:53] sql.INFO: [3.36] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:41:23] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 09:41:24] sql.INFO: [2.36] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:41:24] sql.INFO: [1.77] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:41:48] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 09:41:48] sql.INFO: [2.11] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:41:48] sql.INFO: [1.79] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:42:13] 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` = '73' limit 1 [] []
+[2024-10-28 09:42:13] sql.INFO: [1.45] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:42:13] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:42:21] 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` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
+[2024-10-28 09:42:21] sql.INFO: [2.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:42:21] sql.INFO: [3.12] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:43:59] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 09:43:59] sql.INFO: [2.25] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:43:59] sql.INFO: [1.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:43:59] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 09:43:59] sql.INFO: [1.8] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:43:59] sql.INFO: [1.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:44:18] 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` = '73' limit 1 [] []
+[2024-10-28 09:44:18] sql.INFO: [1.9] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:44:18] sql.INFO: [1.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:44:19] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-28 09:44:19] sql.INFO: [2.13] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:44:19] sql.INFO: [2.01] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:47:12] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-28 09:47:12] sql.INFO: [4.36] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:47:12] sql.INFO: [2.39] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 09:56:23] sql.INFO: [13.64] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 09:56:23] sql.INFO: [1.48] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 09:56:46] sql.INFO: [1.91] select * from `menu` where (`pid` = '1') limit 10 offset 0 [] []
+[2024-10-28 09:56:46] sql.INFO: [1.51] select count(*) as aggregate from `menu` where (`pid` = '1') [] []
+[2024-10-28 09:56:58] sql.INFO: [2.3] select * from `menu` where (`pid` = '4') limit 10 offset 0 [] []
+[2024-10-28 09:56:58] sql.INFO: [1.3] select count(*) as aggregate from `menu` where (`pid` = '4') [] []
+[2024-10-28 09:57:48] sql.INFO: [5.28] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 09:57:48] sql.INFO: [2.79] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 09:59:30] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 09:59:30] sql.INFO: [4.5] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 09:59:30] sql.INFO: [3.09] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:01:41] sql.INFO: [13.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` = '73' limit 1 [] []
+[2024-10-28 10:01:41] sql.INFO: [2.11] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:01:41] sql.INFO: [1.85] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:01:56] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 10:01:56] sql.INFO: [2.04] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:01:56] sql.INFO: [2.13] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:06:32] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-28 10:06:33] sql.INFO: [2.08] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:06:33] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:06:44] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-28 10:06:44] sql.INFO: [1.98] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:06:44] sql.INFO: [1.84] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:10:57] 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` = '73' limit 1 [] []
+[2024-10-28 10:10:57] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:10:57] sql.INFO: [1.7] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:10:57] sql.INFO: [1.86] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 10:10:57] sql.INFO: [1.53] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 10:12:33] 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` = '73' limit 1 [] []
+[2024-10-28 10:12:33] sql.INFO: [1.82] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:12:33] sql.INFO: [2.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:15:38] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-28 10:15:38] sql.INFO: [1.61] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:15:38] sql.INFO: [1.52] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:15:39] sql.INFO: [5.12] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 10:15:39] sql.INFO: [2.54] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 10:15:45] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 10:15:45] sql.INFO: [1.9] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:15:45] sql.INFO: [1.62] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:16:20] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-28 10:16:20] sql.INFO: [6.45] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-28 10:16:20] sql.INFO: [3.78] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88') [] []
+[2024-10-28 10:16:21] sql.INFO: [5.49] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 10:16:21] sql.INFO: [3.73] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-28 10:16:34] sql.INFO: [1.95] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-28 10:16:34] sql.INFO: [1.29] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-29 00:13:46] sql.INFO: [11.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` = '73' limit 1 [] []
+[2024-10-29 00:13:46] sql.INFO: [4.58] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:13:46] sql.INFO: [2.86] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:13:57] sql.INFO: [5.2] select * from `menu` where (`pid` = '0') limit 10 offset 0 [] []
+[2024-10-29 00:13:57] sql.INFO: [2.52] select count(*) as aggregate from `menu` where (`pid` = '0') [] []
+[2024-10-29 00:27:38] sql.INFO: [4.29] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-29 00:27:38] sql.INFO: [4.83] select * from `menu` [] []
+[2024-10-29 00:27:38] sql.INFO: [13.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-10-29 00:27:38] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-29 00:27:50] sql.INFO: [1.79] select * from `menu` [] []
+[2024-10-29 00:27:50] sql.INFO: [2.06] select * from `user` where (`user_name` = '1') limit 1 [] []
+[2024-10-29 00:27:51] sql.INFO: [1.49] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-29 00:27:51] sql.INFO: [1.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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-29 00:27:51] 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-10-29 00:27:59] sql.INFO: [2.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-10-29 00:27:59] sql.INFO: [2.07] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
+[2024-10-29 00:27:59] sql.INFO: [2.18] 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', '75', '76', '77', '78', '79', '80', '83', '84') [] []
+[2024-10-29 00:28:08] sql.INFO: [4.33] select * from `menu` [] []
+[2024-10-29 00:28:41] sql.INFO: [1.85] select * from `menu` [] []
+[2024-10-29 00:28:54] sql.INFO: [2.43] select * from `menu` [] []
+[2024-10-29 00:29:34] sql.INFO: [9.25] select * from `menu` [] []
+[2024-10-29 00:29:56] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 00:29:56] sql.INFO: [2.67] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:29:56] sql.INFO: [2.64] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:29:56] sql.INFO: [3.51] select * from `menu` [] []
+[2024-10-29 00:35:38] sql.INFO: [4.39] select * from `menu` [] []
+[2024-10-29 00:36:09] sql.INFO: [2.1] select * from `menu` [] []
+[2024-10-29 00:36:47] sql.INFO: [3.87] select * from `menu` [] []
+[2024-10-29 00:38:30] 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` = '73' limit 1 [] []
+[2024-10-29 00:38:30] sql.INFO: [2.16] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:38:30] sql.INFO: [1.72] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:38:30] sql.INFO: [2] select * from `menu` [] []
+[2024-10-29 00:40:41] sql.INFO: [16.9] select * from `menu` where (`id` = '1') limit 1 [] []
+[2024-10-29 00:40:43] sql.INFO: [2.16] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-29 00:40:43] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 00:40:43] sql.INFO: [3.77] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:40:43] sql.INFO: [2.8] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:40:43] sql.INFO: [2.21] select * from `menu` [] []
+[2024-10-29 00:41:28] sql.INFO: [2.12] select * from `menu` [] []
+[2024-10-29 00:42:06] sql.INFO: [1.67] select * from `menu` where (`id` = '1') limit 1 [] []
+[2024-10-29 00:42:25] sql.INFO: [2.38] select * from `menu` [] []
+[2024-10-29 00:44:37] sql.INFO: [4.98] select * from `menu` [] []
+[2024-10-29 00:45:03] sql.INFO: [2.03] select * from `menu` [] []
+[2024-10-29 00:46:05] sql.INFO: [5.11] select * from `menu` [] []
+[2024-10-29 00:46:52] sql.INFO: [1.87] select * from `menu` [] []
+[2024-10-29 00:47:20] sql.INFO: [2.31] select * from `menu` [] []
+[2024-10-29 00:47:25] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 00:47:25] sql.INFO: [1.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:47:25] sql.INFO: [1.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:47:25] sql.INFO: [7.37] select * from `menu` [] []
+[2024-10-29 00:47:49] sql.INFO: [2.27] select * from `menu` [] []
+[2024-10-29 00:47:52] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-29 00:47:52] sql.INFO: [3.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:47:52] sql.INFO: [3.06] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:47:53] sql.INFO: [4.22] select * from `menu` [] []
+[2024-10-29 00:48:27] sql.INFO: [2.82] select * from `menu` [] []
+[2024-10-29 00:48:34] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-29 00:48:34] sql.INFO: [2.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:48:34] sql.INFO: [2.3] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:48:36] sql.INFO: [2.02] select * from `menu` [] []
+[2024-10-29 00:49:35] sql.INFO: [1.74] select * from `menu` where (`id` = '1') limit 1 [] []
+[2024-10-29 00:50:41] sql.INFO: [5.72] select * from `menu` [] []
+[2024-10-29 00:52:56] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-29 00:52:57] sql.INFO: [1.79] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:52:57] sql.INFO: [1.49] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:52:57] sql.INFO: [2.5] select * from `menu` [] []
+[2024-10-29 00:53:43] sql.INFO: [2.66] select * from `menu` [] []
+[2024-10-29 00:54:31] sql.INFO: [2.28] select * from `menu` [] []
+[2024-10-29 00:56:37] sql.INFO: [6.94] select * from `menu` [] []
+[2024-10-29 00:58:06] sql.INFO: [5.25] select * from `menu` [] []
+[2024-10-29 00:59:49] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 00:59:49] sql.INFO: [3.36] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 00:59:49] sql.INFO: [2.45] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 00:59:50] sql.INFO: [8.95] select * from `menu` [] []
+[2024-10-29 01:00:17] sql.INFO: [3.58] select * from `menu` [] []
+[2024-10-29 01:01:37] sql.INFO: [15.73] select * from `menu` [] []
+[2024-10-29 01:09:20] sql.INFO: [5.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` = '73' limit 1 [] []
+[2024-10-29 01:09:20] sql.INFO: [1.86] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:09:20] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:09:45] sql.INFO: [1.5] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-29 01:09:45] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 01:09:45] sql.INFO: [9.37] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:09:45] sql.INFO: [1.85] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:18:41] sql.INFO: [4.97] select * from `menu` [] []
+[2024-10-29 01:22:28] sql.INFO: [12.58] select * from `menu` [] []
+[2024-10-29 01:23:41] sql.INFO: [11.62] select * from `menu` [] []
+[2024-10-29 01:24:31] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 01:24:31] sql.INFO: [2.28] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:24:31] sql.INFO: [2.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:24:31] sql.INFO: [4.07] select * from `menu` [] []
+[2024-10-29 01:24:52] 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` = '73' limit 1 [] []
+[2024-10-29 01:24:52] sql.INFO: [2.1] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:24:52] sql.INFO: [1.48] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:24:52] sql.INFO: [4.8] select * from `menu` [] []
+[2024-10-29 01:26:45] sql.INFO: [15.94] select * from `menu` [] []
+[2024-10-29 01:27:24] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 01:27:24] sql.INFO: [4.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:27:24] sql.INFO: [3.6] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:27:25] sql.INFO: [4.32] select * from `menu` [] []
+[2024-10-29 01:31:19] sql.INFO: [8.35] select * from `menu` [] []
+[2024-10-29 01:33:56] sql.INFO: [12.68] select * from `menu` [] []
+[2024-10-29 01:34:58] sql.INFO: [5.76] select * from `menu` [] []
+[2024-10-29 01:36:12] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-29 01:36:13] sql.INFO: [4.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:36:13] sql.INFO: [4.34] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:36:13] sql.INFO: [5.35] select * from `menu` [] []
+[2024-10-29 01:37:19] sql.INFO: [9.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` = '73' limit 1 [] []
+[2024-10-29 01:37:19] sql.INFO: [3.27] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:37:19] sql.INFO: [2.65] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:37:20] sql.INFO: [4.25] select * from `menu` [] []
+[2024-10-29 01:40:41] sql.INFO: [14.4] select * from `menu` [] []
+[2024-10-29 01:42:06] sql.INFO: [5.37] select * from `menu` [] []
+[2024-10-29 01:43:32] sql.INFO: [4.8] select * from `menu` [] []
+[2024-10-29 01:44:17] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-29 01:44:18] sql.INFO: [4.18] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:44:18] sql.INFO: [4.15] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:44:18] sql.INFO: [2.23] select * from `menu` [] []
+[2024-10-29 01:45:34] sql.INFO: [4.87] select * from `menu` [] []
+[2024-10-29 01:45:52] sql.INFO: [1.72] select * from `menu` [] []
+[2024-10-29 01:46:07] sql.INFO: [1.66] select * from `menu` [] []
+[2024-10-29 01:46:26] sql.INFO: [5.22] select * from `menu` [] []
+[2024-10-29 01:46:26] sql.INFO: [2.2] select * from `menu` [] []
+[2024-10-29 01:47:34] sql.INFO: [5.41] select * from `menu` [] []
+[2024-10-29 01:48:02] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 01:48:03] sql.INFO: [1.94] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:48:03] sql.INFO: [2.08] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:48:03] sql.INFO: [4.44] select * from `menu` [] []
+[2024-10-29 01:52:58] sql.INFO: [7.09] select * from `menu` [] []
+[2024-10-29 01:53:29] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-29 01:53:30] sql.INFO: [4.66] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:53:30] sql.INFO: [3.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:53:30] sql.INFO: [5.17] select * from `menu` [] []
+[2024-10-29 01:54:29] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 01:54:29] sql.INFO: [4.24] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 01:54:29] sql.INFO: [3.76] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 01:54:30] sql.INFO: [5.58] select * from `menu` [] []
+[2024-10-29 01:56:08] sql.INFO: [5.64] select * from `menu` [] []
+[2024-10-29 01:59:36] sql.INFO: [11.92] select * from `menu` [] []
+[2024-10-29 02:00:07] sql.INFO: [2.23] select * from `menu` [] []
+[2024-10-29 02:00:19] sql.INFO: [1.56] select * from `menu` [] []
+[2024-10-29 02:02:51] sql.INFO: [10.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` = '73' limit 1 [] []
+[2024-10-29 02:02:51] sql.INFO: [4.29] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:02:51] sql.INFO: [3.83] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:02:51] sql.INFO: [3.67] select * from `menu` [] []
+[2024-10-29 02:03:16] sql.INFO: [6.55] select * from `menu` [] []
+[2024-10-29 02:07:26] sql.INFO: [4.78] select * from `menu` [] []
+[2024-10-29 02:08:29] sql.INFO: [5.65] select * from `menu` [] []
+[2024-10-29 02:12:54] sql.INFO: [6.31] select * from `menu` [] []
+[2024-10-29 02:14:00] sql.INFO: [9.05] select * from `menu` [] []
+[2024-10-29 02:14:03] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-29 02:14:04] sql.INFO: [5.71] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:14:04] sql.INFO: [4.47] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:14:04] sql.INFO: [6.97] select * from `menu` [] []
+[2024-10-29 02:14:23] sql.INFO: [1.89] select * from `menu` [] []
+[2024-10-29 02:15:25] sql.INFO: [9.71] select * from `menu` [] []
+[2024-10-29 02:18:08] sql.INFO: [6.57] select * from `menu` [] []
+[2024-10-29 02:19:53] sql.INFO: [4.61] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-29 02:19:54] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 02:19:54] sql.INFO: [2.33] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:19:54] sql.INFO: [2.19] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:19:54] sql.INFO: [1.5] select * from `menu` [] []
+[2024-10-29 02:28:49] sql.INFO: [4.81] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
+[2024-10-29 02:28:49] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 02:28:49] sql.INFO: [1.58] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:28:49] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:28:49] sql.INFO: [2.09] select * from `menu` [] []
+[2024-10-29 02:30:28] sql.INFO: [6.15] select * from `menu` [] []
+[2024-10-29 02:30:33] sql.INFO: [5.1] select * from `menu` [] []
+[2024-10-29 02:30:47] sql.INFO: [2.08] select * from `menu` [] []
+[2024-10-29 02:30:56] sql.INFO: [2.54] select * from `menu` [] []
+[2024-10-29 02:32:14] sql.INFO: [11.91] select * from `menu` [] []
+[2024-10-29 02:33:26] sql.INFO: [6.86] select * from `menu` [] []
+[2024-10-29 02:34:11] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 02:34:11] sql.INFO: [5.44] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:34:11] sql.INFO: [5.02] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:34:12] sql.INFO: [6.73] select * from `menu` [] []
+[2024-10-29 02:34:22] sql.INFO: [5.34] select * from `menu` [] []
+[2024-10-29 02:35:44] sql.INFO: [12.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` = '73' limit 1 [] []
+[2024-10-29 02:35:44] sql.INFO: [4.15] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:35:44] sql.INFO: [3.18] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:35:45] sql.INFO: [2.92] select * from `menu` [] []
+[2024-10-29 02:40:19] sql.INFO: [8.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` = '73' limit 1 [] []
+[2024-10-29 02:40:19] sql.INFO: [1.45] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:40:19] sql.INFO: [1.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:40:22] sql.INFO: [2.7] select * from `menu` [] []
+[2024-10-29 02:42:22] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 02:42:23] sql.INFO: [1.57] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:42:23] sql.INFO: [1.52] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:42:23] sql.INFO: [4.6] select * from `menu` [] []
+[2024-10-29 02:42:57] sql.INFO: [2.04] select * from `menu` [] []
+[2024-10-29 02:43:27] sql.INFO: [4.18] select * from `menu` [] []
+[2024-10-29 02:44:13] 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` = '73' limit 1 [] []
+[2024-10-29 02:44:13] sql.INFO: [4.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:44:13] sql.INFO: [2.41] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:44:14] sql.INFO: [6.03] select * from `menu` [] []
+[2024-10-29 02:45:02] sql.INFO: [2.31] select * from `menu` [] []
+[2024-10-29 02:50:12] sql.INFO: [11.58] select * from `menu` [] []
+[2024-10-29 02:50:39] sql.INFO: [6.25] select * from `menu` [] []
+[2024-10-29 02:53:06] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 02:53:06] sql.INFO: [3.42] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:53:06] sql.INFO: [3.37] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:53:11] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 02:53:11] sql.INFO: [2.27] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 02:53:11] sql.INFO: [2.03] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 02:53:11] sql.INFO: [2.06] select * from `menu` [] []
+[2024-10-29 02:53:57] sql.INFO: [2.08] select * from `menu` [] []
+[2024-10-29 02:57:32] sql.INFO: [12.08] select * from `menu` [] []
+[2024-10-29 02:58:02] sql.INFO: [2] select * from `menu` [] []
+[2024-10-29 02:58:28] sql.INFO: [8.47] select * from `menu` [] []
+[2024-10-29 03:02:05] sql.INFO: [11.23] select * from `menu` [] []
+[2024-10-29 03:02:30] sql.INFO: [2.39] select * from `menu` [] []
+[2024-10-29 03:02:39] sql.INFO: [5.57] select * from `menu` [] []
+[2024-10-29 03:03:10] sql.INFO: [2.53] select * from `menu` [] []
+[2024-10-29 03:03:44] sql.INFO: [1.82] select * from `menu` [] []
+[2024-10-29 03:03:48] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 03:03:48] sql.INFO: [4.38] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:03:48] sql.INFO: [1.81] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:03:49] sql.INFO: [1.66] select * from `menu` [] []
+[2024-10-29 03:04:26] sql.INFO: [3.2] select * from `menu` [] []
+[2024-10-29 03:04:28] sql.INFO: [1.64] select * from `menu` [] []
+[2024-10-29 03:05:02] sql.INFO: [2.04] select * from `menu` [] []
+[2024-10-29 03:06:45] sql.INFO: [11.1] select * from `menu` [] []
+[2024-10-29 03:08:12] sql.INFO: [9.1] select * from `menu` [] []
+[2024-10-29 03:09:47] sql.INFO: [12.28] select * from `menu` [] []
+[2024-10-29 03:09:55] sql.INFO: [4.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` = '73' limit 1 [] []
+[2024-10-29 03:09:55] sql.INFO: [4.39] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:09:55] sql.INFO: [3.92] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:09:56] sql.INFO: [4.08] select * from `menu` [] []
+[2024-10-29 03:10:59] sql.INFO: [5.34] select * from `menu` [] []
+[2024-10-29 03:11:39] sql.INFO: [3.9] select * from `menu` [] []
+[2024-10-29 03:12:40] sql.INFO: [9.19] select * from `menu` [] []
+[2024-10-29 03:13:03] sql.INFO: [3.78] select * from `menu` [] []
+[2024-10-29 03:14:29] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 03:14:29] sql.INFO: [1.96] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:14:29] sql.INFO: [1.71] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:14:29] sql.INFO: [2.53] select * from `menu` [] []
+[2024-10-29 03:15:01] sql.INFO: [6.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` = '73' limit 1 [] []
+[2024-10-29 03:15:01] sql.INFO: [5.83] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:15:01] sql.INFO: [10.7] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:15:02] sql.INFO: [5.62] select * from `menu` [] []
+[2024-10-29 03:18:04] sql.INFO: [12.18] select * from `menu` [] []
+[2024-10-29 03:18:55] sql.INFO: [31.01] insert into `menu` (`label`, `url`, `icon`, `selected_icon`, `sort`, `pid_arr`, `pid`) values ('系统设置', '/#/left/menuList', 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', '1', '[0]', '0') [] []
+[2024-10-29 03:19:11] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 03:19:11] sql.INFO: [10.77] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:19:11] sql.INFO: [3.32] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:19:11] sql.INFO: [1.99] select * from `menu` [] []
+[2024-10-29 03:19:39] sql.INFO: [1.71] select * from `menu` [] []
+[2024-10-29 03:19:41] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 03:19:41] sql.INFO: [2.65] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:19:41] sql.INFO: [3.24] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:19:41] sql.INFO: [7.01] select * from `menu` [] []
+[2024-10-29 03:19:49] sql.INFO: [2.52] select * from `menu` [] []
+[2024-10-29 03:20:42] sql.INFO: [5.6] select * from `menu` [] []
+[2024-10-29 03:20:45] sql.INFO: [11.95] select * from `menu` [] []
+[2024-10-29 03:20:45] sql.INFO: [1.96] select * from `menu` [] []
+[2024-10-29 03:20:52] sql.INFO: [1.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` = '73' limit 1 [] []
+[2024-10-29 03:20:52] sql.INFO: [5.74] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 03:20:52] sql.INFO: [4.33] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 03:20:53] sql.INFO: [3.79] select * from `menu` [] []
+[2024-10-29 05:04:12] sql.INFO: [7.42] select * from `menu` [] []
+[2024-10-29 05:04:52] sql.INFO: [2.37] select * from `menu` [] []
+[2024-10-29 05:07:18] sql.INFO: [10.08] select * from `menu` [] []
+[2024-10-29 05:07:35] sql.INFO: [16.78] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '1', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:07:35' where (`id` = '90') [] []
+[2024-10-29 05:07:40] sql.INFO: [2.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` = '73' limit 1 [] []
+[2024-10-29 05:07:40] sql.INFO: [1.43] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 05:07:40] sql.INFO: [1.69] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 05:07:41] sql.INFO: [3.04] select * from `menu` [] []
+[2024-10-29 05:08:19] sql.INFO: [3.83] select * from `menu` [] []
+[2024-10-29 05:08:27] sql.INFO: [21.29] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '10', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:08:27' where (`id` = '90') [] []
+[2024-10-29 05:08:27] sql.INFO: [2.19] select * from `menu` [] []
+[2024-10-29 05:08:45] sql.INFO: [16.71] select * from `menu` [] []
+[2024-10-29 05:08:49] sql.INFO: [7.45] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '15', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:08:49' where (`id` = '90') [] []
+[2024-10-29 05:08:49] sql.INFO: [2.75] select * from `menu` [] []
+[2024-10-29 05:11:10] sql.INFO: [5.77] select * from `menu` [] []
+[2024-10-29 05:11:10] sql.INFO: [1.85] select * from `menu` [] []
+[2024-10-29 05:11:15] sql.INFO: [2.71] select * from `menu` [] []
+[2024-10-29 05:11:15] sql.INFO: [1.9] select * from `menu` [] []
+[2024-10-29 05:12:22] sql.INFO: [8.22] select * from `menu` [] []
+[2024-10-29 05:12:24] sql.INFO: [5.91] select * from `menu` [] []
+[2024-10-29 05:12:24] sql.INFO: [2.1] select * from `menu` [] []
+[2024-10-29 05:12:32] sql.INFO: [5.28] select * from `menu` [] []
+[2024-10-29 05:12:32] sql.INFO: [1.86] select * from `menu` [] []
+[2024-10-29 05:13:25] sql.INFO: [1.77] select * from `menu` [] []
+[2024-10-29 05:13:27] sql.INFO: [7.09] select * from `menu` [] []
+[2024-10-29 05:13:27] sql.INFO: [1.75] select * from `menu` [] []
+[2024-10-29 05:13:33] sql.INFO: [3.66] select * from `menu` [] []
+[2024-10-29 05:13:36] sql.INFO: [5.21] select * from `menu` [] []
+[2024-10-29 05:13:36] sql.INFO: [2.18] select * from `menu` [] []
+[2024-10-29 05:13:56] sql.INFO: [1.94] select * from `menu` [] []
+[2024-10-29 05:13:58] sql.INFO: [1.95] select * from `menu` [] []
+[2024-10-29 05:13:58] sql.INFO: [1.73] select * from `menu` [] []
+[2024-10-29 05:15:09] sql.INFO: [6.63] select * from `menu` [] []
+[2024-10-29 05:16:28] sql.INFO: [5.57] select * from `menu` [] []
+[2024-10-29 05:16:59] sql.INFO: [2.08] select * from `menu` [] []
+[2024-10-29 05:17:21] sql.INFO: [25.74] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '15', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:17:21' where (`id` = '90') [] []
+[2024-10-29 05:17:21] sql.INFO: [2.08] select * from `menu` [] []
+[2024-10-29 05:17:33] sql.INFO: [10.19] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '18', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:17:33' where (`id` = '90') [] []
+[2024-10-29 05:17:33] sql.INFO: [2.11] select * from `menu` [] []
+[2024-10-29 05:18:14] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-29 05:18:14] sql.INFO: [1.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 05:18:14] sql.INFO: [1.65] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 05:18:15] sql.INFO: [2.25] select * from `menu` [] []
+[2024-10-29 05:18:55] sql.INFO: [20.36] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '18', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:18:55' where (`id` = '90') [] []
+[2024-10-29 05:18:55] sql.INFO: [3.24] select * from `menu` [] []
+[2024-10-29 05:19:03] sql.INFO: [7.7] update `menu` set `label` = '系统设置', `url` = '/#/left/test', `icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `selected_icon` = 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg', `sort` = '18', `pid_arr` = '[0]', `pid` = '0', `menu`.`updated_at` = '2024-10-29 05:19:03' where (`id` = '90') [] []
+[2024-10-29 05:19:03] sql.INFO: [4.74] select * from `menu` [] []
+[2024-10-29 05:20:20] sql.INFO: [7.3] select * from `menu` [] []
+[2024-10-29 05:21:13] sql.INFO: [28.13] insert into `menu` (`label`, `url`, `icon`, `selected_icon`, `sort`, `pid_arr`, `pid`) values ('测试导航', '/#/test', 'http://192.168.1.201:9501/image/20241029/1730179261552604.png', 'http://192.168.1.201:9501/image/20241029/1730179266349364.png', '1', '[82]', '82') [] []
+[2024-10-29 05:21:13] sql.INFO: [6.63] select * from `menu` [] []
+[2024-10-29 05:21:38] sql.INFO: [3.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` = '73' limit 1 [] []
+[2024-10-29 05:21:39] sql.INFO: [1.84] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 05:21:39] sql.INFO: [1.93] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 05:21:39] sql.INFO: [5.23] select * from `menu` [] []
+[2024-10-29 05:21:55] sql.INFO: [3.39] select * from `menu` [] []
+[2024-10-29 05:21:55] sql.INFO: [2.2] select * from `menu` [] []
+[2024-10-29 05:22:02] sql.INFO: [2.8] select * from `menu` [] []
+[2024-10-29 05:22:02] sql.INFO: [1.74] select * from `menu` [] []
+[2024-10-29 05:22:45] sql.INFO: [2.02] select * from `menu` [] []
+[2024-10-29 05:22:45] sql.INFO: [1.84] select * from `menu` [] []
+[2024-10-29 05:24:31] sql.INFO: [16.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` = '73' limit 1 [] []
+[2024-10-29 05:24:31] sql.INFO: [1.87] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 05:24:31] sql.INFO: [1.55] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 05:26:53] sql.INFO: [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` = '73' limit 1 [] []
+[2024-10-29 05:26:53] sql.INFO: [1.75] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
+[2024-10-29 05:26:53] sql.INFO: [1.57] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
+[2024-10-29 05:27:00] sql.INFO: [1.99] select * from `menu` [] []

+ 11 - 0
vendor/composer/autoload_classmap.php

@@ -21,6 +21,7 @@ return array(
     'App\\Model\\Model' => $baseDir . '/app/Model/Model.php',
     'App\\Model\\Role' => $baseDir . '/app/Model/Role.php',
     'App\\Model\\RoleLog' => $baseDir . '/app/Model/RoleLog.php',
+    'App\\Model\\RoleUser' => $baseDir . '/app/Model/RoleUser.php',
     'App\\Model\\User' => $baseDir . '/app/Model/User.php',
     'App\\Model\\UserInfo' => $baseDir . '/app/Model/UserInfo.php',
     'App\\Model\\UserLevel' => $baseDir . '/app/Model/UserLevel.php',
@@ -1295,6 +1296,16 @@ return array(
     'Hyperf\\Nacos\\Provider\\InstanceProvider' => $vendorDir . '/hyperf/nacos/src/Provider/InstanceProvider.php',
     'Hyperf\\Nacos\\Provider\\OperatorProvider' => $vendorDir . '/hyperf/nacos/src/Provider/OperatorProvider.php',
     'Hyperf\\Nacos\\Provider\\ServiceProvider' => $vendorDir . '/hyperf/nacos/src/Provider/ServiceProvider.php',
+    'Hyperf\\Paginator\\AbstractCursorPaginator' => $vendorDir . '/hyperf/paginator/src/AbstractCursorPaginator.php',
+    'Hyperf\\Paginator\\AbstractPaginator' => $vendorDir . '/hyperf/paginator/src/AbstractPaginator.php',
+    'Hyperf\\Paginator\\ConfigProvider' => $vendorDir . '/hyperf/paginator/src/ConfigProvider.php',
+    'Hyperf\\Paginator\\Contract\\CursorPaginator' => $vendorDir . '/hyperf/paginator/src/Contract/CursorPaginator.php',
+    'Hyperf\\Paginator\\Cursor' => $vendorDir . '/hyperf/paginator/src/Cursor.php',
+    'Hyperf\\Paginator\\CursorPaginator' => $vendorDir . '/hyperf/paginator/src/CursorPaginator.php',
+    'Hyperf\\Paginator\\LengthAwarePaginator' => $vendorDir . '/hyperf/paginator/src/LengthAwarePaginator.php',
+    'Hyperf\\Paginator\\Listener\\PageResolverListener' => $vendorDir . '/hyperf/paginator/src/Listener/PageResolverListener.php',
+    'Hyperf\\Paginator\\Paginator' => $vendorDir . '/hyperf/paginator/src/Paginator.php',
+    'Hyperf\\Paginator\\UrlWindow' => $vendorDir . '/hyperf/paginator/src/UrlWindow.php',
     'Hyperf\\Pipeline\\Pipeline' => $vendorDir . '/hyperf/pipeline/src/Pipeline.php',
     'Hyperf\\Pool\\Channel' => $vendorDir . '/hyperf/pool/src/Channel.php',
     'Hyperf\\Pool\\ConfigProvider' => $vendorDir . '/hyperf/pool/src/ConfigProvider.php',

+ 1 - 0
vendor/composer/autoload_psr4.php

@@ -70,6 +70,7 @@ return array(
     'Hyperf\\Process\\' => array($vendorDir . '/hyperf/process/src'),
     'Hyperf\\Pool\\' => array($vendorDir . '/hyperf/pool/src'),
     'Hyperf\\Pipeline\\' => array($vendorDir . '/hyperf/pipeline/src'),
+    'Hyperf\\Paginator\\' => array($vendorDir . '/hyperf/paginator/src'),
     'Hyperf\\Nacos\\' => array($vendorDir . '/hyperf/nacos/src'),
     'Hyperf\\ModelListener\\' => array($vendorDir . '/hyperf/model-listener/src'),
     'Hyperf\\Memory\\' => array($vendorDir . '/hyperf/memory/src'),

+ 16 - 0
vendor/composer/autoload_static.php

@@ -122,6 +122,7 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
             'Hyperf\\Process\\' => 15,
             'Hyperf\\Pool\\' => 12,
             'Hyperf\\Pipeline\\' => 16,
+            'Hyperf\\Paginator\\' => 17,
             'Hyperf\\Nacos\\' => 13,
             'Hyperf\\ModelListener\\' => 21,
             'Hyperf\\Memory\\' => 14,
@@ -459,6 +460,10 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
         array (
             0 => __DIR__ . '/..' . '/hyperf/pipeline/src',
         ),
+        'Hyperf\\Paginator\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/hyperf/paginator/src',
+        ),
         'Hyperf\\Nacos\\' => 
         array (
             0 => __DIR__ . '/..' . '/hyperf/nacos/src',
@@ -705,6 +710,7 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
         'App\\Model\\Model' => __DIR__ . '/../..' . '/app/Model/Model.php',
         'App\\Model\\Role' => __DIR__ . '/../..' . '/app/Model/Role.php',
         'App\\Model\\RoleLog' => __DIR__ . '/../..' . '/app/Model/RoleLog.php',
+        'App\\Model\\RoleUser' => __DIR__ . '/../..' . '/app/Model/RoleUser.php',
         'App\\Model\\User' => __DIR__ . '/../..' . '/app/Model/User.php',
         'App\\Model\\UserInfo' => __DIR__ . '/../..' . '/app/Model/UserInfo.php',
         'App\\Model\\UserLevel' => __DIR__ . '/../..' . '/app/Model/UserLevel.php',
@@ -1979,6 +1985,16 @@ class ComposerStaticInit88f2a4d4a4e81dc7d415bcdf39930654
         'Hyperf\\Nacos\\Provider\\InstanceProvider' => __DIR__ . '/..' . '/hyperf/nacos/src/Provider/InstanceProvider.php',
         'Hyperf\\Nacos\\Provider\\OperatorProvider' => __DIR__ . '/..' . '/hyperf/nacos/src/Provider/OperatorProvider.php',
         'Hyperf\\Nacos\\Provider\\ServiceProvider' => __DIR__ . '/..' . '/hyperf/nacos/src/Provider/ServiceProvider.php',
+        'Hyperf\\Paginator\\AbstractCursorPaginator' => __DIR__ . '/..' . '/hyperf/paginator/src/AbstractCursorPaginator.php',
+        'Hyperf\\Paginator\\AbstractPaginator' => __DIR__ . '/..' . '/hyperf/paginator/src/AbstractPaginator.php',
+        'Hyperf\\Paginator\\ConfigProvider' => __DIR__ . '/..' . '/hyperf/paginator/src/ConfigProvider.php',
+        'Hyperf\\Paginator\\Contract\\CursorPaginator' => __DIR__ . '/..' . '/hyperf/paginator/src/Contract/CursorPaginator.php',
+        'Hyperf\\Paginator\\Cursor' => __DIR__ . '/..' . '/hyperf/paginator/src/Cursor.php',
+        'Hyperf\\Paginator\\CursorPaginator' => __DIR__ . '/..' . '/hyperf/paginator/src/CursorPaginator.php',
+        'Hyperf\\Paginator\\LengthAwarePaginator' => __DIR__ . '/..' . '/hyperf/paginator/src/LengthAwarePaginator.php',
+        'Hyperf\\Paginator\\Listener\\PageResolverListener' => __DIR__ . '/..' . '/hyperf/paginator/src/Listener/PageResolverListener.php',
+        'Hyperf\\Paginator\\Paginator' => __DIR__ . '/..' . '/hyperf/paginator/src/Paginator.php',
+        'Hyperf\\Paginator\\UrlWindow' => __DIR__ . '/..' . '/hyperf/paginator/src/UrlWindow.php',
         'Hyperf\\Pipeline\\Pipeline' => __DIR__ . '/..' . '/hyperf/pipeline/src/Pipeline.php',
         'Hyperf\\Pool\\Channel' => __DIR__ . '/..' . '/hyperf/pool/src/Channel.php',
         'Hyperf\\Pool\\ConfigProvider' => __DIR__ . '/..' . '/hyperf/pool/src/ConfigProvider.php',

+ 71 - 0
vendor/composer/installed.json

@@ -3907,6 +3907,77 @@
             ],
             "install-path": "../hyperf/nacos"
         },
+        {
+            "name": "hyperf/paginator",
+            "version": "v3.1.42",
+            "version_normalized": "3.1.42.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/hyperf/paginator.git",
+                "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
+                "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
+                "shasum": ""
+            },
+            "require": {
+                "hyperf/contract": "~3.1.0",
+                "hyperf/support": "~3.1.0",
+                "hyperf/utils": "~3.1.0",
+                "php": ">=8.1"
+            },
+            "suggest": {
+                "hyperf/event": "Reqiured to use PageResolverListener.",
+                "hyperf/framework": "Reqiured to use PageResolverListener.",
+                "hyperf/http-server": "Reqiured to use PageResolverListener."
+            },
+            "time": "2024-09-25T02:54:12+00:00",
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1-dev"
+                },
+                "hyperf": {
+                    "config": "Hyperf\\Paginator\\ConfigProvider"
+                }
+            },
+            "installation-source": "dist",
+            "autoload": {
+                "psr-4": {
+                    "Hyperf\\Paginator\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "A paginator component for hyperf.",
+            "homepage": "https://hyperf.io",
+            "keywords": [
+                "hyperf",
+                "paginator",
+                "php"
+            ],
+            "support": {
+                "docs": "https://hyperf.wiki",
+                "issues": "https://github.com/hyperf/hyperf/issues",
+                "pull-request": "https://github.com/hyperf/hyperf/pulls",
+                "source": "https://github.com/hyperf/hyperf"
+            },
+            "funding": [
+                {
+                    "url": "https://hyperf.wiki/#/zh-cn/donate",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://opencollective.com/hyperf",
+                    "type": "open_collective"
+                }
+            ],
+            "install-path": "../hyperf/paginator"
+        },
         {
             "name": "hyperf/pipeline",
             "version": "v3.1.15",

+ 11 - 2
vendor/composer/installed.php

@@ -3,7 +3,7 @@
         'name' => 'hyperf/hyperf-skeleton',
         'pretty_version' => 'dev-master',
         'version' => 'dev-master',
-        'reference' => '2ca41ed66e11bff26b338e76a094da8061ce4d06',
+        'reference' => '5b45b0f0eb4388d1f26f5231c2be1e47e21b2631',
         'type' => 'project',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
@@ -439,7 +439,7 @@
         'hyperf/hyperf-skeleton' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '2ca41ed66e11bff26b338e76a094da8061ce4d06',
+            'reference' => '5b45b0f0eb4388d1f26f5231c2be1e47e21b2631',
             'type' => 'project',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
@@ -508,6 +508,15 @@
             'aliases' => array(),
             'dev_requirement' => false,
         ),
+        'hyperf/paginator' => array(
+            'pretty_version' => 'v3.1.42',
+            'version' => '3.1.42.0',
+            'reference' => 'b637a3deeee69f4a3e5a6d62ab8214244b98412a',
+            'type' => 'library',
+            'install_path' => __DIR__ . '/../hyperf/paginator',
+            'aliases' => array(),
+            'dev_requirement' => false,
+        ),
         'hyperf/pipeline' => array(
             'pretty_version' => 'v3.1.15',
             'version' => '3.1.15.0',

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels