1. 更新LOGO

2. 新增在用户列表页面更新当前用户手机号后,自动退出登录
3. 导出数据库模板
This commit is contained in:
ktianc 2022-10-10 21:29:31 +08:00
parent 7e2ab365f7
commit 44de01691f
14 changed files with 519 additions and 14 deletions

View File

@ -133,10 +133,15 @@ alembic revision --autogenerate -m "update"
alembic upgrade head
```
4. 数据化数据库数据
```
4. 导入数据库数据
```shell
# 数据库文件地址kinit-api/static/kinit.sql
# 导入命令
mysql> create database kinit; # 创建数据库
mysql> use kinit; # 使用已创建的数据库
mysql> set names utf8; # 设置编码
mysql> source kinit-api/static/kinit.sql # 导入备份数据库
```
5. 启动
@ -170,7 +175,8 @@ pnpm run build:pro
### 访问项目
- 访问地址http://localhost:5000 (默认为此地址,如有修改请按照配置文件)
- 账号:`superadmin` 密码:`admin123456`
- 账号:`15020221010` 密码:`kinit2022`
- 接口地址http://localhost:9000/docs (默认为此地址,如有修改请按照配置文件)
## 如何贡献

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -1,14 +1,10 @@
<script setup lang="ts">
import { ElDropdown, ElDropdownMenu, ElDropdownItem, ElMessageBox } from 'element-plus'
import { useI18n } from '@/hooks/web/useI18n'
import { resetRouter } from '@/router'
import { useRouter } from 'vue-router'
import { useDesign } from '@/hooks/web/useDesign'
import { useTagsViewStore } from '@/store/modules/tagsView'
import { useAuthStoreWithOut } from '@/store/modules/auth'
const tagsViewStore = useTagsViewStore()
const { getPrefixCls } = useDesign()
const prefixCls = getPrefixCls('user-info')
@ -27,8 +23,6 @@ const loginOut = () => {
})
.then(async () => {
authStore.logout()
tagsViewStore.delAllViews()
resetRouter() //
replace('/login')
})
.catch(() => {})

View File

@ -5,9 +5,12 @@ import { loginApi } from '@/api/login'
import { useAppStore } from '@/store/modules/app'
import { useCache } from '@/hooks/web/useCache'
import { getCurrentUserInfo } from '@/api/vadmin/auth/user'
import { resetRouter } from '@/router'
import { useTagsViewStore } from '@/store/modules/tagsView'
const appStore = useAppStore()
const { wsCache } = useCache()
const tagsViewStore = useTagsViewStore()
export interface UserState {
id?: number
@ -53,12 +56,16 @@ export const useAuthStore = defineStore({
// 存储用户信息
wsCache.set(appStore.getUserInfo, res.data.user)
this.user = res.data.user
this.isUser = true
}
return res
},
logout() {
wsCache.clear()
this.user = {}
this.isUser = false
resetRouter()
tagsViewStore.delAllViews()
},
updateUser(data: UserState) {
this.user.gender = data.gender
@ -69,6 +76,7 @@ export const useAuthStore = defineStore({
async getUserInfo() {
const res = await getCurrentUserInfo()
wsCache.set(appStore.getUserInfo, res.data)
this.isUser = true
this.user = res.data
}
}

View File

@ -38,7 +38,7 @@ const schema = reactive<FormSchema[]>([
{
field: 'telephone',
label: t('login.telephone'),
value: '15093430559',
value: '15020221010',
component: 'Input',
colProps: {
span: 24
@ -50,7 +50,7 @@ const schema = reactive<FormSchema[]>([
{
field: 'password',
label: t('login.password'),
value: '430559',
value: 'kinit2022',
component: 'InputPassword',
colProps: {
span: 24

View File

@ -17,9 +17,15 @@ import { ElButton, ElMessage, ElSwitch } from 'element-plus'
import { useI18n } from '@/hooks/web/useI18n'
import { selectDictLabel, DictDetail } from '@/utils/dict'
import { useDictStore } from '@/store/modules/dict'
import { useAuthStoreWithOut } from '@/store/modules/auth'
import { useRouter } from 'vue-router'
const { t } = useI18n()
const { replace } = useRouter()
const authStore = useAuthStoreWithOut()
let genderOptions = ref<DictDetail[]>([])
const getOptions = async () => {
@ -91,7 +97,14 @@ const save = async () => {
if (actionType.value === 'add') {
res.value = await addUserListApi(data)
} else if (actionType.value === 'edit') {
const user = authStore.getUser
res.value = await putUserListApi(data)
if (user.id === data.id && user.telephone !== data.telephone) {
dialogVisible.value = false
authStore.logout()
replace('/login')
return ElMessage.warning('认证已过期,请您重新登陆!')
}
}
if (res.value) {
dialogVisible.value = false

View File

@ -54,6 +54,7 @@ async def login_for_access_token(request: Request, data: dict = Depends(authenti
"nickname": user.nickname,
"avatar": user.avatar,
"gender": user.gender,
"create_datetime": user.create_datetime.strftime("%Y-%m-%d %H:%M:%S"),
"roles": [{"name": i.name, "value": i.role_key} for i in user.roles]
}
}

View File

@ -22,7 +22,7 @@ redoc_url 配置 Redoc 文档的路由地址如果禁用则为None
openapi_url配置接口文件json数据文件路由地址如果禁用则为None默认为/openapi.json
"""
app = FastAPI(
title="Kinit",
title="KInit",
description="初始项目故事来源于有一次我去面试当时面试官给的一道题是让我使用Django+Vue写出一个客户信息列表的CRUD"
"里面给出的信息还是蛮复杂的,当时写了接近一下午,最后还没过,哈哈哈哈。写现在的这个初始项目也是为了真的再次遇到这种情况,"
"我就可以很好的很快速的完成了。也能当领导安排新的项目,能够及时启动项目,不用再搭建脚手架了。",
@ -77,4 +77,4 @@ if __name__ == '__main__':
# debug调试
# workers启动几个进程
"""
uvicorn.run(app='main:app', host="0.0.0.0", port=9000, reload=True, debug=True, workers=1)
uvicorn.run(app='main:app', host="0.0.0.0", port=9000, reload=True, debug=True, workers=1)

483
kinit-api/static/kinit.sql Normal file
View File

@ -0,0 +1,483 @@
/*
Navicat Premium Data Transfer
Source Server : aliyun-mysql
Source Server Type : MySQL
Source Server Version : 80018 (8.0.18)
Source Host : rm-bp181adf0phw2o0r05o.mysql.rds.aliyuncs.com:3306
Source Schema : kinit
Target Server Type : MySQL
Target Server Version : 80018 (8.0.18)
File Encoding : 65001
Date: 10/10/2022 21:05:02
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for alembic_version
-- ----------------------------
DROP TABLE IF EXISTS `alembic_version`;
CREATE TABLE `alembic_version` (
`version_num` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
PRIMARY KEY (`version_num`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of alembic_version
-- ----------------------------
INSERT INTO `alembic_version` VALUES ('203b11efd025');
-- ----------------------------
-- Table structure for vadmin_auth_menu
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_auth_menu`;
CREATE TABLE `vadmin_auth_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '菜单图标',
`component` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '前端组件地址',
`path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '前端路由地址',
`hidden` tinyint(1) NULL DEFAULT NULL COMMENT '是否显示',
`menu_type` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '菜单类型',
`parent_id` int(11) NULL DEFAULT NULL COMMENT '父菜单',
`perms` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '权限标识',
`order` int(11) NULL DEFAULT NULL COMMENT '排序',
`disabled` tinyint(1) NULL DEFAULT NULL COMMENT '是否禁用',
`redirect` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '重定向地址',
`noCache` tinyint(1) NULL DEFAULT NULL COMMENT '如果设置为true则不会被 <keep-alive> 缓存(默认 false)',
`breadcrumb` tinyint(1) NULL DEFAULT NULL COMMENT '如果设置为false则不会在breadcrumb面包屑中显示(默认 true)',
`affix` tinyint(1) NULL DEFAULT NULL COMMENT '如果设置为true则会一直固定在tag项中(默认 false)',
`noTagsView` tinyint(1) NULL DEFAULT NULL COMMENT '如果设置为true则不会出现在tag中(默认 false)',
`canTo` tinyint(1) NULL DEFAULT NULL COMMENT '设置为true即使hidden为true也依然可以进行路由跳转(默认 false)',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '名称',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_menu_id`(`id` ASC) USING BTREE,
INDEX `parent_id`(`parent_id` ASC) USING BTREE,
INDEX `ix_vadmin_auth_menu_perms`(`perms` ASC) USING BTREE,
INDEX `ix_vadmin_auth_menu_title`(`title` ASC) USING BTREE,
CONSTRAINT `vadmin_auth_menu_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `vadmin_auth_menu` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 18 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '菜单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_auth_menu
-- ----------------------------
INSERT INTO `vadmin_auth_menu` VALUES (1, '2022-08-13 10:56:32', '2022-08-13 10:56:32', 'ant-design:dashboard-filled', '#', '/dashboard', 0, '0', NULL, NULL, 0, 0, '/dashboard/workbench', 0, 1, 0, 0, 0, 'router.dashboard');
INSERT INTO `vadmin_auth_menu` VALUES (4, '2022-08-13 11:22:47', '2022-08-13 11:22:47', NULL, 'views/Dashboard/Workplace', 'workbench', 0, '1', 1, NULL, 1, 0, NULL, 0, 1, 0, 0, 0, 'router.workplace');
INSERT INTO `vadmin_auth_menu` VALUES (9, '2022-09-22 17:21:30', '2022-09-22 17:21:30', '', 'views/vadmin/auth/menu/index', 'menu', 0, '1', 10, NULL, 1, 0, NULL, 0, 1, 0, 0, 0, 'router.menu');
INSERT INTO `vadmin_auth_menu` VALUES (10, '2022-09-22 22:53:52', '2022-09-22 22:53:52', 'ep:lock', '#', '/auth', 0, '0', NULL, NULL, 1, 0, '/auth/menu', 0, 1, 0, 0, 0, 'router.auth');
INSERT INTO `vadmin_auth_menu` VALUES (11, '2022-09-22 17:21:30', '2022-09-22 17:21:30', '', 'views/vadmin/auth/role/index', 'role', 0, '1', 10, NULL, 2, 0, NULL, 0, 1, 0, 0, 0, 'router.role');
INSERT INTO `vadmin_auth_menu` VALUES (12, '2022-09-22 17:21:30', '2022-10-01 15:39:00', '', 'views/vadmin/auth/user/index', 'user', 0, '1', 10, NULL, 3, 0, NULL, 0, 1, 0, 0, 0, 'router.user');
INSERT INTO `vadmin_auth_menu` VALUES (14, '2022-10-04 20:58:18', '2022-10-04 20:58:34', 'ant-design:setting-filled', '#', '/system', 0, '0', NULL, NULL, 2, 0, NULL, 0, 1, 0, 0, 0, '系统配置');
INSERT INTO `vadmin_auth_menu` VALUES (15, '2022-10-04 21:02:55', '2022-10-04 21:03:03', NULL, 'views/vadmin/system/dict/index', 'dict', 0, '1', 14, NULL, 0, 0, NULL, 0, 1, 0, 0, 0, '字典配置');
INSERT INTO `vadmin_auth_menu` VALUES (16, '2022-10-05 22:25:26', '2022-10-05 22:25:26', NULL, 'views/vadmin/system/dict/detail', 'dict/detail', 1, '1', 14, NULL, 2, 0, NULL, 0, 1, 0, 0, 0, '字典详情');
INSERT INTO `vadmin_auth_menu` VALUES (17, '2022-10-10 09:51:32', '2022-10-10 09:51:32', NULL, 'views/Home/Home', 'home', 1, '1', 14, NULL, 0, 0, NULL, 0, 1, 0, 0, 0, '个人主页');
-- ----------------------------
-- Table structure for vadmin_auth_role
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_auth_role`;
CREATE TABLE `vadmin_auth_role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '名称',
`role_key` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '权限字符',
`desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '描述',
`is_admin` tinyint(1) NULL DEFAULT NULL COMMENT '是否为超级角色',
`order` int(11) NULL DEFAULT NULL COMMENT '排序',
`disabled` tinyint(1) NULL DEFAULT NULL COMMENT '是否禁用',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_role_id`(`id` ASC) USING BTREE,
INDEX `ix_vadmin_auth_role_name`(`name` ASC) USING BTREE,
INDEX `ix_vadmin_auth_role_role_key`(`role_key` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '角色表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_auth_role
-- ----------------------------
INSERT INTO `vadmin_auth_role` VALUES (1, '2022-08-13 10:58:18', '2022-10-09 15:03:34', '管理员', 'admin', NULL, 1, 0, 0);
-- ----------------------------
-- Table structure for vadmin_auth_role_menus
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_auth_role_menus`;
CREATE TABLE `vadmin_auth_role_menus` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`role_id` int(11) NOT NULL,
`menu_id` int(11) NOT NULL,
PRIMARY KEY (`id`, `role_id`, `menu_id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_role_menus_id`(`id` ASC) USING BTREE,
INDEX `menu_id`(`menu_id` ASC) USING BTREE,
INDEX `role_id`(`role_id` ASC) USING BTREE,
CONSTRAINT `vadmin_auth_role_menus_ibfk_1` FOREIGN KEY (`menu_id`) REFERENCES `vadmin_auth_menu` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT,
CONSTRAINT `vadmin_auth_role_menus_ibfk_2` FOREIGN KEY (`role_id`) REFERENCES `vadmin_auth_role` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_auth_role_menus
-- ----------------------------
-- ----------------------------
-- Table structure for vadmin_auth_user
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_auth_user`;
CREATE TABLE `vadmin_auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`telephone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '手机号',
`name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '姓名',
`nickname` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '昵称',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '密码',
`avatar` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '头像',
`gender` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '性别',
`is_active` tinyint(1) NULL DEFAULT NULL COMMENT '是否可用',
`is_cancel` tinyint(1) NULL DEFAULT NULL COMMENT '是否注销',
`is_reset_password` tinyint(1) NULL DEFAULT NULL COMMENT '是否已经重置密码,没有重置的,登陆系统后必须重置密码',
`last_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最后一次登录IP',
`last_login` datetime NULL DEFAULT NULL COMMENT '最近一次登录时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_user_id`(`id` ASC) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_user_telephone`(`telephone` ASC) USING BTREE,
INDEX `ix_vadmin_auth_user_name`(`name` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '用户表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_auth_user
-- ----------------------------
INSERT INTO `vadmin_auth_user` VALUES (3, '2022-08-11 20:17:04', '2022-10-10 20:56:11', '15020221010', 'kinit', 'admin', '$2b$12$Ce7eSUKIIl8DMKeDyNHyr.Dp4aesQCM70RePigRVEny1Eql31R0Cq', NULL, '1', 1, 0, 1, NULL, NULL);
-- ----------------------------
-- Table structure for vadmin_auth_user_roles
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_auth_user_roles`;
CREATE TABLE `vadmin_auth_user_roles` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`user_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
PRIMARY KEY (`id`, `user_id`, `role_id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_auth_user_roles_id`(`id` ASC) USING BTREE,
INDEX `role_id`(`role_id` ASC) USING BTREE,
INDEX `user_id`(`user_id` ASC) USING BTREE,
CONSTRAINT `vadmin_auth_user_roles_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `vadmin_auth_role` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT,
CONSTRAINT `vadmin_auth_user_roles_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `vadmin_auth_user` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_auth_user_roles
-- ----------------------------
INSERT INTO `vadmin_auth_user_roles` VALUES (1, 3, 1);
-- ----------------------------
-- Table structure for vadmin_record_login
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_record_login`;
CREATE TABLE `vadmin_record_login` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`telephone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '手机号',
`status` tinyint(1) NULL DEFAULT NULL COMMENT '是否登录成功',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '登陆地址',
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '登陆地点',
`browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '浏览器',
`system` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作系统',
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '响应信息',
`request` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '请求信息',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_record_login_id`(`id` ASC) USING BTREE,
INDEX `ix_vadmin_record_login_telephone`(`telephone` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 174 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '登录记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_record_login
-- ----------------------------
INSERT INTO `vadmin_record_login` VALUES (1, '2022-08-10 21:34:05', '2022-08-10 21:34:05', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50356), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0BD5700>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0BD5D60>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0B5BAF0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (2, '2022-08-10 21:35:15', '2022-08-10 21:35:15', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61707), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0BE8130>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0BE8550>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0B5BD30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (3, '2022-08-10 21:37:01', '2022-08-10 21:37:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54422), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CA4A60>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CA4F70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0B5B9D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (4, '2022-08-10 21:37:22', '2022-08-10 21:37:22', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54451), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CAC8B0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CAC8E0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CA7670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (5, '2022-08-10 21:38:26', '2022-08-10 21:38:26', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56128), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CB6910>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CB6940>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CC5040>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (6, '2022-08-10 21:42:02', '2022-08-10 21:42:02', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56367), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CD3D00>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CD5C10>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CC5790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (7, '2022-08-10 21:42:34', '2022-08-10 21:42:34', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56418), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CE9DF0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CE9C70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CE1160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (8, '2022-08-10 21:43:10', '2022-08-10 21:43:10', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55684), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CF33A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CF3B20>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CE1DC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (9, '2022-08-10 21:43:28', '2022-08-10 21:43:28', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55719), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0D086A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0D08910>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFB3A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (10, '2022-08-10 21:43:54', '2022-08-10 21:43:54', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55785), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0D0DFD0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0D0DF10>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFBEE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (11, '2022-08-10 21:45:21', '2022-08-10 21:45:21', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50318), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0D15370>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0D15310>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFB040>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (12, '2022-08-10 21:45:27', '2022-08-10 21:45:27', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50333), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0D083D0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0D08880>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFB790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (13, '2022-08-10 21:45:39', '2022-08-10 21:45:39', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50374), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CF36A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CF3DF0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFBE50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (14, '2022-08-10 21:45:57', '2022-08-10 21:45:57', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62638), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CD3EE0>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CD3340>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFB8B0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (15, '2022-08-10 21:47:15', '2022-08-10 21:47:15', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62746), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0D1CF40>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0D1C3A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFBB80>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (16, '2022-08-10 22:07:31', '2022-08-10 22:07:31', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51722), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0CC8460>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0CC8D00>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFB160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (17, '2022-08-10 22:14:08', '2022-08-10 22:14:08', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 58087), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000021AB0C97400>, \'app\': <fastapi.applications.FastAPI object at 0x0000021AB08A6490>, \'router\': <fastapi.routing.APIRouter object at 0x0000021AB0971D30>, \'endpoint\': <function login_for_access_token at 0x0000021AB060FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000021AB0C97580>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000021AB0CFBCA0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (18, '2022-08-10 22:16:54', '2022-08-10 22:16:54', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64154), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000206455E0400>, \'app\': <fastapi.applications.FastAPI object at 0x0000020645466490>, \'router\': <fastapi.routing.APIRouter object at 0x0000020645531D30>, \'endpoint\': <function login_for_access_token at 0x00000206451CFCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000206455E0340>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000206455F4430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (19, '2022-08-10 22:24:13', '2022-08-10 22:24:13', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56554), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001649212F490>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001649212F3D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016492144430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (20, '2022-08-10 22:25:16', '2022-08-10 22:25:16', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 63556), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164921695B0>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016492169700>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016492129280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (21, '2022-08-10 22:26:57', '2022-08-10 22:26:57', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56410), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923A2460>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923A2550>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016492129550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (22, '2022-08-10 22:29:33', '2022-08-10 22:29:33', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52366), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923B8400>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923B80A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923A8700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (23, '2022-08-10 22:30:19', '2022-08-10 22:30:19', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52413), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923C5C40>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923C5BB0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923C80D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (24, '2022-08-10 22:31:18', '2022-08-10 22:31:18', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52484), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923D7070>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923D7760>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923C8D30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (25, '2022-08-10 22:32:01', '2022-08-10 22:32:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52553), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923E3640>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923EAD30>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923DB310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (26, '2022-08-10 22:34:01', '2022-08-10 22:34:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61736), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164923FBCD0>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164923FBAC0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923DBF70>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (27, '2022-08-10 22:35:30', '2022-08-10 22:35:30', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61857), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001649240E610>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001649240EC10>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923F0550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (28, '2022-08-10 22:36:30', '2022-08-10 22:36:30', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61927), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164924159A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000164924157C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923F05E0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (29, '2022-08-10 22:40:58', '2022-08-10 22:40:58', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52798), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000164924154F0>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016492415970>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923F0310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (30, '2022-08-10 22:41:39', '2022-08-10 22:41:39', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52852), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000016492403910>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016492403EE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923F0D30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (31, '2022-08-10 22:43:50', '2022-08-10 22:43:50', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61941), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001649241E550>, \'app\': <fastapi.applications.FastAPI object at 0x0000016491FB7520>, \'router\': <fastapi.routing.APIRouter object at 0x0000016492081DC0>, \'endpoint\': <function login_for_access_token at 0x0000016491D1FCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001649241E850>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000164923F0670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (32, '2022-08-11 08:52:49', '2022-08-11 08:52:49', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62634), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000287418DBCA0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000287418DBBE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000287418ECDC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (33, '2022-08-11 08:55:39', '2022-08-11 08:55:39', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62831), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741B6BCD0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741A6A9D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000287418BFC10>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (34, '2022-08-11 10:22:01', '2022-08-11 10:22:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53154), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741A570D0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741A57130>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028741B72820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (35, '2022-08-11 10:23:12', '2022-08-11 10:23:12', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53203), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741BB8E20>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741BB8370>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028741B72550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (36, '2022-08-11 10:23:16', '2022-08-11 10:23:16', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53210), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741BC09A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741BC0AF0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028741BBC550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (37, '2022-08-11 10:24:36', '2022-08-11 10:24:36', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53272), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741BD0D00>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741BD08B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028741BBC4C0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (38, '2022-08-11 11:02:53', '2022-08-11 11:02:53', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55070), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028741BE9B20>, \'app\': <fastapi.applications.FastAPI object at 0x0000028741833D90>, \'router\': <fastapi.routing.APIRouter object at 0x000002874178CC10>, \'endpoint\': <function login_for_access_token at 0x00000287414C7700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028741BE9DC0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028741BD6670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (39, '2022-08-11 16:04:40', '2022-08-11 16:04:40', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52794), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000015734A6BCA0>, \'app\': <fastapi.applications.FastAPI object at 0x00000157349C3D90>, \'router\': <fastapi.routing.APIRouter object at 0x000001573491CC10>, \'endpoint\': <function login_for_access_token at 0x0000015734657700>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000015734A6BBE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000015734A7CDC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (40, '2022-08-11 16:07:19', '2022-08-11 16:07:19', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52956), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000240B366AF70>, \'app\': <fastapi.applications.FastAPI object at 0x00000240B34F6130>, \'router\': <fastapi.routing.APIRouter object at 0x00000240B35DA8E0>, \'endpoint\': <function login_for_access_token at 0x00000240B3256C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000240B366AEB0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000240B3691310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (41, '2022-08-11 16:07:27', '2022-08-11 16:07:27', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52964), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000240B37E7490>, \'app\': <fastapi.applications.FastAPI object at 0x00000240B34F6130>, \'router\': <fastapi.routing.APIRouter object at 0x00000240B35DA8E0>, \'endpoint\': <function login_for_access_token at 0x00000240B3256C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000240B37E7280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000240B3676160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (42, '2022-08-11 16:07:36', '2022-08-11 16:07:36', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52976), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000240B3929220>, \'app\': <fastapi.applications.FastAPI object at 0x00000240B34F6130>, \'router\': <fastapi.routing.APIRouter object at 0x00000240B35DA8E0>, \'endpoint\': <function login_for_access_token at 0x00000240B3256C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000240B3929700>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000240B3676430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (43, '2022-08-11 16:07:41', '2022-08-11 16:07:41', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52981), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000240B3934EB0>, \'app\': <fastapi.applications.FastAPI object at 0x00000240B34F6130>, \'router\': <fastapi.routing.APIRouter object at 0x00000240B35DA8E0>, \'endpoint\': <function login_for_access_token at 0x00000240B3256C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000240B3934340>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000240B392C790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (44, '2022-08-11 19:54:14', '2022-08-11 19:54:14', '15093430559', 0, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64859), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002573AAB1850>, \'app\': <fastapi.applications.FastAPI object at 0x000002573AA00CA0>, \'router\': <fastapi.routing.APIRouter object at 0x000002573A93A070>, \'endpoint\': <function login_for_access_token at 0x000002573A6D01F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002573AAB1790>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002573AABFA60>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"123456\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'123456\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (45, '2022-08-11 20:17:23', '2022-08-11 20:17:23', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgyMDE4M30.753mEyH89HtNl5lUUlHM-s3FgtTAldZoQET33050z7o\", \"token_type\": \"bearer\", \"user_id\": 3, \"telephone\": \"15093430559\", \"is_reset_password\": false}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59049), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000244EE130880>, \'app\': <fastapi.applications.FastAPI object at 0x00000244EE082CD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000244EDFBA0A0>, \'endpoint\': <function login_for_access_token at 0x00000244EDD501F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000244EE1307C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000244EE13FA60>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (46, '2022-08-11 20:17:31', '2022-08-11 20:17:31', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgyMDE5MX0.SKH0EAUp7jG1iBx0V-lw0jNfqMT5qUsULdqz8sKltfg\", \"token_type\": \"bearer\", \"user_id\": 3, \"telephone\": \"15093430559\", \"is_reset_password\": false}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59057), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000244EE2D4220>, \'app\': <fastapi.applications.FastAPI object at 0x00000244EE082CD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000244EDFBA0A0>, \'endpoint\': <function login_for_access_token at 0x00000244EDD501F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000244EE147520>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000244EE1258B0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (47, '2022-08-11 21:48:00', '2022-08-11 21:48:00', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgyNTYyMH0.yrBOGlSEqk_x5qACSjdDR2qe7ag93vXLRqxYLPnClkg\", \"token_type\": \"bearer\", \"user_id\": 3, \"telephone\": \"15093430559\", \"is_reset_password\": false}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51274), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000244EE37C760>, \'app\': <fastapi.applications.FastAPI object at 0x00000244EE082CD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000244EDFBA0A0>, \'endpoint\': <function login_for_access_token at 0x00000244EDD501F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000244EE37C790>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000244EE3B63A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (48, '2022-08-11 22:01:12', '2022-08-11 22:01:12', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgyNjQxMn0.Y7HKPK4xcwr_rgN-lApJged3y9ARrPU5KdVwlyLLuoM\", \"token_type\": \"bearer\", \"user_id\": 3, \"telephone\": \"15093430559\", \"is_reset_password\": false}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 58566), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000244EE37C970>, \'app\': <fastapi.applications.FastAPI object at 0x00000244EE082CD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000244EDFBA0A0>, \'endpoint\': <function login_for_access_token at 0x00000244EDD501F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000244EE3CAB80>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000244EE3B6EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (49, '2022-08-11 22:42:21', '2022-08-11 22:42:21', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgyODg4MX0.Lfdl8QS5_AsZRqdUm0z64af8lfOFIr37tfCc0q_lenk\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 65313), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022BC5C323D0>, \'app\': <fastapi.applications.FastAPI object at 0x0000022BC5B31D30>, \'router\': <fastapi.routing.APIRouter object at 0x0000022BC5A6C100>, \'endpoint\': <function login_for_access_token at 0x0000022BC58011F0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022BC5C32070>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022BC5BD4790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (50, '2022-08-11 23:04:39', '2022-08-11 23:04:39', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDgzMDIxOX0.vZAyuNJQ0t6ctLUTfm2gWlAttKiCtecGEKITkdeGxBQ\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 57054), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002BD8188E5E0>, \'app\': <fastapi.applications.FastAPI object at 0x000002BD814470A0>, \'router\': <fastapi.routing.APIRouter object at 0x000002BD8150DBB0>, \'endpoint\': <function login_for_access_token at 0x000002BD812B6E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002BD8188E430>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002BD81872EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (51, '2022-08-12 08:42:03', '2022-08-12 08:42:03', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDg2NDg2NH0._HGh4KzfxWUH0pGpQwomglm2ZY9jzGroSBt6O5IQiNU\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51197), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002A060FB5EE0>, \'app\': <fastapi.applications.FastAPI object at 0x000002A060F0CE50>, \'router\': <fastapi.routing.APIRouter object at 0x000002A060E58700>, \'endpoint\': <function login_for_access_token at 0x000002A060CCB9D0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002A060FB5E20>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002A060FCD820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (52, '2022-08-12 08:45:36', '2022-08-12 08:45:36', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDg2NTA3Nn0.Nzo4vbJ6E_Y4pgfK9czAXvaTLug1DZmpTk9tJhOziNI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51328), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002A0612B1100>, \'app\': <fastapi.applications.FastAPI object at 0x000002A060F0CE50>, \'router\': <fastapi.routing.APIRouter object at 0x000002A060E58700>, \'endpoint\': <function login_for_access_token at 0x000002A060CCB9D0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002A0612B1EE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002A0612D7790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (53, '2022-08-12 21:18:01', '2022-08-12 21:18:01', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDkxMDIyM30.5QqmJ7rAf44Nh205LGPkKUgJDx0ex66YD9eD2H7Suro\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55880), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FCCBDF4F0>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FCC8170A0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FCC8DEBB0>, \'endpoint\': <function login_for_access_token at 0x0000022FCC686E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FCCBDF520>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FCCC0B280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (54, '2022-08-12 22:15:25', '2022-08-12 22:15:25', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDkxMzY2NX0.YOSzD92KQi-CGgHv6MFpvDjelHu8kdk8wnOlc_ry9hE\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 58307), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FCCD42100>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FCC8170A0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FCC8DEBB0>, \'endpoint\': <function login_for_access_token at 0x0000022FCC686E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FCCD2AFD0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FCCD3A820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (55, '2022-08-12 22:16:03', '2022-08-12 22:16:03', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDkxMzcwM30.ne_fHNrraJh88SJ--H75UK4I5FWVFsabgbdix6waZM8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 58349), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FCCD426A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FCC8170A0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FCC8DEBB0>, \'endpoint\': <function login_for_access_token at 0x0000022FCC686E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FCCD42430>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FCCD13550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (56, '2022-08-12 23:18:45', '2022-08-12 23:18:45', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDkxNzQ2NX0.sH2ucTaR3xpG_F2dUfWPI0b8XRN31xEAJXM77yPMG8E\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60746), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FCCCA4580>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FCC8170A0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FCC8DEBB0>, \'endpoint\': <function login_for_access_token at 0x0000022FCC686E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FCCDC74C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FCCD233A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (57, '2022-08-13 08:32:30', '2022-08-13 08:32:30', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDk1MDY5MH0.V51qVqU9Ys_Kn0zHPhmb0NU-4nSZKWr02Stl4ScXdSo\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54439), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001EF22D97CD0>, \'app\': <fastapi.applications.FastAPI object at 0x000001EF22A770A0>, \'router\': <fastapi.routing.APIRouter object at 0x000001EF22B3DBB0>, \'endpoint\': <function login_for_access_token at 0x000001EF228E7E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001EF22C22640>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001EF22BCEC10>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (58, '2022-08-13 08:33:00', '2022-08-13 08:33:00', '15093430559', 1, '127.0.0.1', NULL, 'Edge 104.0.1293', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDk1MDcyMH0.TweYSzjOl-SOXdzZTB8m-ouUK7k5amm_90k10If53HM\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59080), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001EF22E3E0D0>, \'app\': <fastapi.applications.FastAPI object at 0x000001EF22A770A0>, \'router\': <fastapi.routing.APIRouter object at 0x000001EF22B3DBB0>, \'endpoint\': <function login_for_access_token at 0x000001EF228E7E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001EF22E3E910>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001EF22E6C280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"104\", \" Not A;Brand\";v=\"99\", \"Microsoft Edge\";v=\"104\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (59, '2022-08-13 10:47:31', '2022-08-13 10:47:31', '15093430559', 0, '127.0.0.1', NULL, 'PostmanRuntime 7.26.8', 'Other ', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55980), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'content-type\', b\'application/json\'), (b\'user-agent\', b\'PostmanRuntime/7.26.8\'), (b\'accept\', b\'*/*\'), (b\'postman-token\', b\'891f3d5c-0ee1-4666-89cb-f920d490b28f\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'59\'), (b\'referer\', b\'http://127.0.0.1:9000/auth/login\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001511ACC31F0>, \'app\': <fastapi.applications.FastAPI object at 0x000001511ABB9FA0>, \'router\': <fastapi.routing.APIRouter object at 0x000001511AAED970>, \'endpoint\': <function login_for_access_token at 0x000001511A966E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001511ACC3280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001511ACB1C10>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\\r\\n \"telephone\": \"15093430559\",\\r\\n \"password\": \"123456\"\\r\\n}\', \'_headers\': Headers({\'content-type\': \'application/json\', \'user-agent\': \'PostmanRuntime/7.26.8\', \'accept\': \'*/*\', \'postman-token\': \'891f3d5c-0ee1-4666-89cb-f920d490b28f\', \'accept-encoding\': \'gzip, deflate, br\', \'connection\': \'keep-alive\', \'content-length\': \'59\', \'referer\': \'http://127.0.0.1:9000/auth/login\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123456\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (60, '2022-08-13 10:47:39', '2022-08-13 10:47:39', '15093430559', 1, '127.0.0.1', NULL, 'PostmanRuntime 7.26.8', 'Other ', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MDk1ODc5OX0.-h7fBHDMx05U0ZG3ABaU-3FiM9Qkcfp_q7K6z7clvdM\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": []}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55993), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'content-type\', b\'application/json\'), (b\'user-agent\', b\'PostmanRuntime/7.26.8\'), (b\'accept\', b\'*/*\'), (b\'postman-token\', b\'a062c42b-663a-44ec-af4d-bd7c9de8f722\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'59\'), (b\'referer\', b\'http://127.0.0.1:9000/auth/login\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001511ACC3CA0>, \'app\': <fastapi.applications.FastAPI object at 0x000001511ABB9FA0>, \'router\': <fastapi.routing.APIRouter object at 0x000001511AAED970>, \'endpoint\': <function login_for_access_token at 0x000001511A966E50>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001511ACC3970>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001511ACB1AF0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\\r\\n \"telephone\": \"15093430559\",\\r\\n \"password\": \"430559\"\\r\\n}\', \'_headers\': Headers({\'content-type\': \'application/json\', \'user-agent\': \'PostmanRuntime/7.26.8\', \'accept\': \'*/*\', \'postman-token\': \'a062c42b-663a-44ec-af4d-bd7c9de8f722\', \'accept-encoding\': \'gzip, deflate, br\', \'connection\': \'keep-alive\', \'content-length\': \'59\', \'referer\': \'http://127.0.0.1:9000/auth/login\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (61, '2022-09-12 18:33:40', '2022-09-12 18:33:40', '15093430559', 1, '127.0.0.1', NULL, 'Chrome 105.0.0', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MzU3ODc2MH0.yTHnPdsgUJHLD8p_FdICkI-qEKAwGjO4kBNMqxRJwzU\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 65474), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002AD945141C0>, \'app\': <fastapi.applications.FastAPI object at 0x000002AD944A0C10>, \'router\': <fastapi.routing.APIRouter object at 0x000002AD943BFD30>, \'endpoint\': <function login_for_access_token at 0x000002AD942B74C0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002AD945140D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002AD94526700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (62, '2022-09-13 22:57:03', '2022-09-13 22:57:03', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MzY4MDk2M30.Qkd6Rzm5mpYpvJPegUG1dVg1ronhNsurwoWjdJsJTu8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60225), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029F888541C0>, \'app\': <fastapi.applications.FastAPI object at 0x0000029F887E0C10>, \'router\': <fastapi.routing.APIRouter object at 0x0000029F886FFD30>, \'endpoint\': <function login_for_access_token at 0x0000029F885F84C0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029F888540D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029F88869670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (63, '2022-09-14 09:06:31', '2022-09-14 09:06:31', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2MzcxNzUzMX0.ypJWbesXl3hSU7h5f74MYx7idws6quhVJk_nKtatD18\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50568), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:3100/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:3100\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'localhost:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002B922247400>, \'app\': <fastapi.applications.FastAPI object at 0x000002B9221BFDF0>, \'router\': <fastapi.routing.APIRouter object at 0x000002B9220EFE50>, \'endpoint\': <function login_for_access_token at 0x000002B921FDFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002B922247310>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002B922250A60>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"password\":\"430559\",\"telephone\":\"15093430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:3100/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:3100\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json;charset=UTF-8\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'localhost:9000\'}), \'_json\': {\'password\': \'430559\', \'telephone\': \'15093430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (64, '2022-09-16 15:55:07', '2022-09-16 15:55:07', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52930), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000260756B9A30>, \'app\': <fastapi.applications.FastAPI object at 0x000002607546BEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000002607539F880>, \'endpoint\': <function login_for_access_token at 0x0000026075290C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000260756B9730>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002607564D700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (65, '2022-09-16 15:56:25', '2022-09-16 15:56:25', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52983), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001576FAD5B20>, \'app\': <fastapi.applications.FastAPI object at 0x000001576FA0EEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001576F940880>, \'endpoint\': <function login_for_access_token at 0x000001576F831C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001576FAD56A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001576FAD9EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (66, '2022-09-16 15:58:06', '2022-09-16 15:58:06', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53052), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FAEEEA820>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FAEE4DEB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FAED7F880>, \'endpoint\': <function login_for_access_token at 0x0000022FAEC6FC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FAEF14FA0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FAEF18EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (67, '2022-09-16 16:03:03', '2022-09-16 16:03:03', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64602), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FAEF14AC0>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FAEE4DEB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FAED7F880>, \'endpoint\': <function login_for_access_token at 0x0000022FAEC6FC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FAEF14B50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FAF1D9160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (68, '2022-09-16 16:07:28', '2022-09-16 16:07:28', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52635), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000022FAEED97F0>, \'app\': <fastapi.applications.FastAPI object at 0x0000022FAEE4DEB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000022FAED7F880>, \'endpoint\': <function login_for_access_token at 0x0000022FAEC6FC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000022FAF1CBB50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000022FAF1D9E50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (69, '2022-09-16 16:14:29', '2022-09-16 16:14:29', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55913), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963B7B1C0>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963BA5FD0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963BA8EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (70, '2022-09-16 16:15:07', '2022-09-16 16:15:07', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55969), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963D34760>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963E1DE50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963E2A160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (71, '2022-09-16 16:18:15', '2022-09-16 16:18:15', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62670), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963CBAB20>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963CBA880>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963E2AE50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (72, '2022-09-16 17:11:14', '2022-09-16 17:11:14', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64725), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963E2C8B0>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963E86280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963E7B8B0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (73, '2022-09-16 17:21:35', '2022-09-16 17:21:35', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54850), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963E759A0>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963E5E790>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963BA8DC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (74, '2022-09-16 17:24:49', '2022-09-16 17:24:49', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55835), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963E92250>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963E922B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963E2A700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (75, '2022-09-16 17:28:56', '2022-09-16 17:28:56', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51334), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D963EAA5E0>, \'app\': <fastapi.applications.FastAPI object at 0x000001D963ADBEB0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D963A0F880>, \'endpoint\': <function login_for_access_token at 0x000001D9638FFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D963EAA130>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D963E9D5E0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.33\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (76, '2022-09-22 14:16:11', '2022-09-22 14:16:11', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51007), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'46\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D065730>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D0A7250>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D094AF0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"admin\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'46\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'admin\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (77, '2022-09-22 14:18:58', '2022-09-22 14:18:58', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51170), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D2EC730>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D2EC130>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D0949D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123456\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123456\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (78, '2022-09-22 14:19:06', '2022-09-22 14:19:06', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51182), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D36F7F0>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D36F520>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D363DC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (79, '2022-09-22 14:22:12', '2022-09-22 14:22:12', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQyNzY3Mn0.C_5X5ffTC8sh9sYOBxysx1K6z69Zhe6dG4zszmohIy0\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51531), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D38E700>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D38E400>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D386790>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (80, '2022-09-22 14:22:52', '2022-09-22 14:22:52', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQyNzcxMn0.xQCenTtEVBa8KW0_UsRP-J60qj5KKNVNB367feSeKiE\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51577), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D3A16A0>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D3929A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D2FCCA0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (81, '2022-09-22 14:27:10', '2022-09-22 14:27:10', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51895), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D3352E0>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D0A75B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D363820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (82, '2022-09-22 14:27:23', '2022-09-22 14:27:23', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQyNzk4M30.n0UTf6-e1W4uuEoupamhIX28Nm21bFekqoEVZ2ib7lY\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51917), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D3B4880>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D3B41F0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D3AC160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (83, '2022-09-22 15:01:19', '2022-09-22 15:01:19', '15093430559', 0, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54248), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D3D2AF0>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D3DC850>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D3ACAF0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (84, '2022-09-22 15:01:28', '2022-09-22 15:01:28', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzMDAyOH0.iMVU4F-ygsGLDD2l_SE6nDI1OoY9XSB5Rc2TPlRnbCo\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54267), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'host\', b\'127.0.0.1:9000\'), (b\'connection\', b\'keep-alive\'), (b\'content-length\', b\'47\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-fetch-site\', b\'same-site\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002200D3F2C40>, \'app\': <fastapi.applications.FastAPI object at 0x000002200CF43340>, \'router\': <fastapi.routing.APIRouter object at 0x000002200CFE9C10>, \'endpoint\': <function login_for_access_token at 0x000002200CDEFC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002200D3F20A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002200D3EC550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'host\': \'127.0.0.1:9000\', \'connection\': \'keep-alive\', \'content-length\': \'47\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json\', \'sec-ch-ua-mobile\': \'?0\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'origin\': \'http://127.0.0.1:5000\', \'sec-fetch-site\': \'same-site\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-dest\': \'empty\', \'referer\': \'http://127.0.0.1:5000/\', \'accept-encoding\': \'gzip, deflate, br\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (85, '2022-09-22 15:25:07', '2022-09-22 15:25:07', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzMTQ0N30.YLp_7ACUlC0ymzeF-FhojgBjWISNDkkSC4oodcredI4\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 55806), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000220C850ED60>, \'app\': <fastapi.applications.FastAPI object at 0x00000220C8429BB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000220C8359DC0>, \'endpoint\': <function login_for_access_token at 0x00000220C8250C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000220C850EA90>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000220C8510310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (86, '2022-09-22 15:40:41', '2022-09-22 15:40:41', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzMjM4MX0.fQSioEhQYZH6MBAo9q2wvcugLe6Cs2RItyFk5uByIko\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56896), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000220C8743580>, \'app\': <fastapi.applications.FastAPI object at 0x00000220C8429BB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000220C8359DC0>, \'endpoint\': <function login_for_access_token at 0x00000220C8250C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000220C87437C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000220C85101F0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (87, '2022-09-22 15:48:57', '2022-09-22 15:48:57', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzMjg3N30.CJuhVzpdIo8CIpyuQx0m2mqec-q2MW2xOQL2SQV9sPA\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 57693), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000220C8743190>, \'app\': <fastapi.applications.FastAPI object at 0x00000220C8429BB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000220C8359DC0>, \'endpoint\': <function login_for_access_token at 0x00000220C8250C10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000220C8743820>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000220C8814B80>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (88, '2022-09-22 16:18:17', '2022-09-22 16:18:17', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNDYzN30.ZLToELGAqTczh4wtoNef9QQmV7CYKjYqUJvE5NDGiqA\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59535), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000016DFE463070>, \'app\': <fastapi.applications.FastAPI object at 0x0000016DFE38CC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000016DFE2B9E50>, \'endpoint\': <function login_for_access_token at 0x0000016DFE1ADC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016DFE446CA0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016DFE451700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (89, '2022-09-22 16:22:49', '2022-09-22 16:22:49', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNDkwOX0.cXf06bG_VFq6lJqwCrf6ZvqpLQmmRD_lp-wfxep3Qho\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59825), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000016DFE725520>, \'app\': <fastapi.applications.FastAPI object at 0x0000016DFE38CC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000016DFE2B9E50>, \'endpoint\': <function login_for_access_token at 0x0000016DFE1ADC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016DFE725310>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016DFE7105E0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (90, '2022-09-22 16:23:40', '2022-09-22 16:23:40', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNDk2MH0.8Rya958LqViYuTOp2xJg1VeNhKZqlv81s21o-SVIMkc\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59905), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000016DFE78F280>, \'app\': <fastapi.applications.FastAPI object at 0x0000016DFE38CC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000016DFE2B9E50>, \'endpoint\': <function login_for_access_token at 0x0000016DFE1ADC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016DFE78F370>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016DFE772940>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (91, '2022-09-22 16:24:27', '2022-09-22 16:24:27', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNTAwN30.wtU15ynVXeASc0O-_J46HQGfA9Cl00LOyVlIJxAw5iI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59973), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000016DFE7DC850>, \'app\': <fastapi.applications.FastAPI object at 0x0000016DFE38CC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000016DFE2B9E50>, \'endpoint\': <function login_for_access_token at 0x0000016DFE1ADC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000016DFE7DC280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000016DFE7E58B0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (92, '2022-09-22 16:38:14', '2022-09-22 16:38:14', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNTgzNH0.G8ZyTD_Th2zKrA1oTKemP3l9YdICDwreM7tg43BQo1o\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60920), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029D46496D30>, \'app\': <fastapi.applications.FastAPI object at 0x0000029D46415B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000029D44A55190>, \'endpoint\': <function login_for_access_token at 0x0000029D4623FD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029D46496C40>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029D464B93A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (93, '2022-09-22 17:02:06', '2022-09-22 17:02:06', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzNzI2Nn0.jSEVYWXwjCWJzwoTIb3Srq4neaJ7wND6iT3gOxCTdv8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62396), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029D4683B880>, \'app\': <fastapi.applications.FastAPI object at 0x0000029D46415B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000029D44A55190>, \'endpoint\': <function login_for_access_token at 0x0000029D4623FD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029D4683B370>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029D467FCDC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (94, '2022-09-22 17:21:48', '2022-09-22 17:21:48', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzODQ0OH0.7KyvxnG8Pjw_5sho15fWJ6QeBvZcMa6KJ0nJ8U4kiIA\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 63788), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029D468949A0>, \'app\': <fastapi.applications.FastAPI object at 0x0000029D46415B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000029D44A55190>, \'endpoint\': <function login_for_access_token at 0x0000029D4623FD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029D46894280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029D4687FAF0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (95, '2022-09-22 17:21:52', '2022-09-22 17:21:52', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzODQ1Mn0.PZsrQYFR0doBAWrAI6rnyh5UHlnjWIjYSGr6UebJQZ8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 63796), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzODQ0OH0.7KyvxnG8Pjw_5sho15fWJ6QeBvZcMa6KJ0nJ8U4kiIA\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029D468B4940>, \'app\': <fastapi.applications.FastAPI object at 0x0000029D46415B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000029D44A55190>, \'endpoint\': <function login_for_access_token at 0x0000029D4623FD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029D468B4E50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029D4687F280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQzODQ0OH0.7KyvxnG8Pjw_5sho15fWJ6QeBvZcMa6KJ0nJ8U4kiIA\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (96, '2022-09-22 19:57:25', '2022-09-22 19:57:25', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ0Nzc4Nn0.ghTsm7PxELxdstNBRPTFlK5Ykei3MST_-fIHvktlNaI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64025), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117857C40>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117857B50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002811785AF70>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (97, '2022-09-22 20:08:21', '2022-09-22 20:08:21', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ0ODQ0Mn0.VD8u0zZj2Pu3bXFe-Qz0zVdh52RUhnkKOybK3rafLZw\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61258), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117B4B100>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117B4B070>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117B64310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (98, '2022-09-22 20:13:23', '2022-09-22 20:13:23', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ0ODc0NH0.R797n8eEaVElyLKlTwStemCB6OqG5n9YJ03W4XSxkJo\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 57770), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117BD4DC0>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117BD4AF0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117BD5310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (99, '2022-09-22 20:39:11', '2022-09-22 20:39:11', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MDI5MX0.UgBJn9xJr7Rfgduab8UfK1KHJgaE6ZYnUKpF9-nAwtQ\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 49203), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117C3E700>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117C3E550>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117BD5310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (100, '2022-09-22 21:00:51', '2022-09-22 21:00:51', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MTU5MX0.zI3fsJ0IK3PGaGe7nrz3YAiaknMCwP3p6KELWyfvm_8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51855), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117C33430>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117BFD910>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117C139D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (101, '2022-09-22 21:02:10', '2022-09-22 21:02:10', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MTY3MX0.HqcEByvtSw_lCAFnBBmLWo5zFdMDhWK-su8rMjZOHd4\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54407), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117B63B20>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117B63CA0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117C00430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (102, '2022-09-22 21:02:37', '2022-09-22 21:02:37', '15093430559', 1, '127.0.0.1', NULL, 'Chrome 105.0.0', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MTY5OH0.X2fhP1vi9MsT5YKripqzmYMl7lQdf_QQfQ0s6rK4NYY\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61778), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117C6A100>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117B3A280>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117B64940>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (103, '2022-09-22 21:08:07', '2022-09-22 21:08:07', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MjAyOH0.WvjZG3xoeWErfna6lfFfuRLVKYN-T81IH8gnQ53_98E\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50126), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117BAD220>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117B63400>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117C13820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (104, '2022-09-22 21:10:17', '2022-09-22 21:10:17', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MjE1OH0.yHN7GbYL-N07rQKExbs9iusoms9wOPfgqRjX9KeQsdk\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 58607), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117BB76A0>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117C4FEE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117AE70D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard/workbench\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (105, '2022-09-22 21:17:29', '2022-09-22 21:17:29', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MjU5MH0.YUxQTVqXyCnNBTBa8mxhfmmY-HFwh4iBMKSnMJ78V3s\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 57230), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117CA5970>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117CA5C70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117BD5280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (106, '2022-09-22 21:28:55', '2022-09-22 21:28:55', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MzI3NX0.Ca7ilE3GgeqCOaJX3ZRVHksTnw2QROtQCuamiFMwqSg\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52200), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117CD5580>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117CC1F70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117CA6670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (107, '2022-09-22 21:30:02', '2022-09-22 21:30:02', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MzM0Mn0.FwgtKtIHiWklTj3TRBwsZ08qRQNVwYSOvQ7Zi3pa454\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52262), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117C25460>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117C25490>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117BD5EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (108, '2022-09-22 21:38:09', '2022-09-22 21:38:09', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ1MzgzMH0.yXo8a7DLYa4HfNRwhd8KDQ3wxAYx_1jEVfe0pZxE2Vs\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60868), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028117ABE0D0>, \'app\': <fastapi.applications.FastAPI object at 0x00000281177350D0>, \'router\': <fastapi.routing.APIRouter object at 0x00000281177E9E80>, \'endpoint\': <function login_for_access_token at 0x000002811760B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028117ACED30>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028117C13E50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (109, '2022-09-23 08:50:32', '2022-09-23 08:50:32', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDQ5NDE3Mn0.auRR84YMZENUUNg6rFOXokKd1PX-qcFsErdX0atfnS8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61151), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001F21B466D90>, \'app\': <fastapi.applications.FastAPI object at 0x000001F21B3E6B50>, \'router\': <fastapi.routing.APIRouter object at 0x000001F219A25190>, \'endpoint\': <function login_for_access_token at 0x000001F21B20FD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001F21B466CA0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001F21B4893A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (110, '2022-09-23 15:42:47', '2022-09-23 15:42:47', '18520220224', 0, NULL, NULL, 'Edge 105.0.1343', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (None, 0), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'x-forwarded-host\', b\'localhost:8080\'), (b\'x-forwarded-proto\', b\'http\'), (b\'x-forwarded-port\', b\'8080\'), (b\'x-forwarded-for\', b\'127.0.0.1\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:8080/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:8080\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'system_id\', b\'undefined\'), (b\'is_group\', b\'undefined\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AC17052E80>, \'app\': <fastapi.applications.FastAPI object at 0x000001AC16B48B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001AC15185190>, \'endpoint\': <function login_for_access_token at 0x000001AC1696BD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AC17052700>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AC16F7F9D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"18520220224\",\"password\":\"456789\"}\', \'_headers\': Headers({\'x-forwarded-host\': \'localhost:8080\', \'x-forwarded-proto\': \'http\', \'x-forwarded-port\': \'8080\', \'x-forwarded-for\': \'127.0.0.1\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:8080/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:8080\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json;charset=UTF-8\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'system_id\': \'undefined\', \'is_group\': \'undefined\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'18520220224\', \'password\': \'456789\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (111, '2022-09-23 15:57:46', '2022-09-23 15:57:46', '18520220224', 0, NULL, NULL, 'Edge 105.0.1343', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (None, 0), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'x-forwarded-host\', b\'localhost:8080\'), (b\'x-forwarded-proto\', b\'http\'), (b\'x-forwarded-port\', b\'8080\'), (b\'x-forwarded-for\', b\'127.0.0.1\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:8080/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:8080\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'system_id\', b\'undefined\'), (b\'is_group\', b\'undefined\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AC16F98250>, \'app\': <fastapi.applications.FastAPI object at 0x000001AC16B48B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001AC15185190>, \'endpoint\': <function login_for_access_token at 0x000001AC1696BD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AC16F98D90>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AC16F7F670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"18520220224\",\"password\":\"456789\"}\', \'_headers\': Headers({\'x-forwarded-host\': \'localhost:8080\', \'x-forwarded-proto\': \'http\', \'x-forwarded-port\': \'8080\', \'x-forwarded-for\': \'127.0.0.1\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:8080/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:8080\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json;charset=UTF-8\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'system_id\': \'undefined\', \'is_group\': \'undefined\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'18520220224\', \'password\': \'456789\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (112, '2022-09-23 15:58:03', '2022-09-23 15:58:03', '18520220224', 0, NULL, NULL, 'Edge 105.0.1343', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (None, 0), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'x-forwarded-host\', b\'localhost:8080\'), (b\'x-forwarded-proto\', b\'http\'), (b\'x-forwarded-port\', b\'8080\'), (b\'x-forwarded-for\', b\'127.0.0.1\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:8080/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:8080\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'system_id\', b\'undefined\'), (b\'is_group\', b\'undefined\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AC170521C0>, \'app\': <fastapi.applications.FastAPI object at 0x000001AC16B48B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001AC15185190>, \'endpoint\': <function login_for_access_token at 0x000001AC1696BD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AC17052B20>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AC16FB5550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"18520220224\",\"password\":\"456789\"}\', \'_headers\': Headers({\'x-forwarded-host\': \'localhost:8080\', \'x-forwarded-proto\': \'http\', \'x-forwarded-port\': \'8080\', \'x-forwarded-for\': \'127.0.0.1\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:8080/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:8080\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json;charset=UTF-8\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'system_id\': \'undefined\', \'is_group\': \'undefined\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'18520220224\', \'password\': \'456789\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (113, '2022-09-23 15:58:08', '2022-09-23 15:58:08', '18520220224', 0, NULL, NULL, 'Edge 105.0.1343', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (None, 0), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'x-forwarded-host\', b\'localhost:8080\'), (b\'x-forwarded-proto\', b\'http\'), (b\'x-forwarded-port\', b\'8080\'), (b\'x-forwarded-for\', b\'127.0.0.1\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:8080/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:8080\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'system_id\', b\'undefined\'), (b\'is_group\', b\'undefined\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AC16FC2340>, \'app\': <fastapi.applications.FastAPI object at 0x000001AC16B48B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001AC15185190>, \'endpoint\': <function login_for_access_token at 0x000001AC1696BD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AC16FC2310>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AC16F7F9D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"18520220224\",\"password\":\"456789\"}\', \'_headers\': Headers({\'x-forwarded-host\': \'localhost:8080\', \'x-forwarded-proto\': \'http\', \'x-forwarded-port\': \'8080\', \'x-forwarded-for\': \'127.0.0.1\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:8080/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:8080\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json;charset=UTF-8\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'system_id\': \'undefined\', \'is_group\': \'undefined\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'18520220224\', \'password\': \'456789\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (114, '2022-09-23 15:58:26', '2022-09-23 15:58:26', '18520220224', 0, NULL, NULL, 'Edge 105.0.1343', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (None, 0), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'x-forwarded-host\', b\'localhost:8080\'), (b\'x-forwarded-proto\', b\'http\'), (b\'x-forwarded-port\', b\'8080\'), (b\'x-forwarded-for\', b\'127.0.0.1\'), (b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://localhost:8080/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://localhost:8080\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'content-type\', b\'application/json;charset=UTF-8\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'system_id\', b\'undefined\'), (b\'is_group\', b\'undefined\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AC16FE1C10>, \'app\': <fastapi.applications.FastAPI object at 0x000001AC16B48B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001AC15185190>, \'endpoint\': <function login_for_access_token at 0x000001AC1696BD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AC16FE1520>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AC16F7FB80>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"18520220224\",\"password\":\"456789\"}\', \'_headers\': Headers({\'x-forwarded-host\': \'localhost:8080\', \'x-forwarded-proto\': \'http\', \'x-forwarded-port\': \'8080\', \'x-forwarded-for\': \'127.0.0.1\', \'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://localhost:8080/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://localhost:8080\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'accept\': \'application/json, text/plain, */*\', \'content-type\': \'application/json;charset=UTF-8\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42\', \'sec-ch-ua-mobile\': \'?0\', \'system_id\': \'undefined\', \'is_group\': \'undefined\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'18520220224\', \'password\': \'456789\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (115, '2022-09-26 20:58:21', '2022-09-26 20:58:21', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDc5NzA0Mn0.t1WBtqsPDyUTAq6UhENrJiR8gxiX4ThRez2nfQpCKu0\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 49895), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000029D29226BE0>, \'app\': <fastapi.applications.FastAPI object at 0x0000029D291BBE50>, \'router\': <fastapi.routing.APIRouter object at 0x0000029D290D9F70>, \'endpoint\': <function login_for_access_token at 0x0000029D28FDB5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000029D29226AF0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000029D2922AF70>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (116, '2022-09-27 10:28:19', '2022-09-27 10:28:19', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDg0NTY0MH0._M2ze3jnJB7cqQKRhi7c0hUS7IyuTlNCyc-0CJM-Jq8\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53451), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001EAEBC26DC0>, \'app\': <fastapi.applications.FastAPI object at 0x000001EAEBBA8B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001EAEA1E5190>, \'endpoint\': <function login_for_access_token at 0x000001EAEB9CBD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001EAEBC26CD0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001EAEBC493A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (117, '2022-09-27 21:19:09', '2022-09-27 21:19:09', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDg4NDY4OX0.h8MgEunkZg8e5jQZFIWM79TNPbZN3SjajifLaX5zX4g\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59952), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001FA65195B80>, \'app\': <fastapi.applications.FastAPI object at 0x000001FA6512AE50>, \'router\': <fastapi.routing.APIRouter object at 0x000001FA65047F70>, \'endpoint\': <function login_for_access_token at 0x000001FA64F4B5E0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001FA65195A90>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001FA65199F70>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \" Not;A Brand\";v=\"99\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (118, '2022-09-28 11:02:15', '2022-09-28 11:02:15', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NDkzNDA3NX0.t9r1o1JL7lrxh5WtKfkq7MajzcvTl-Tn693IS8v_enw\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50226), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001EC60545D60>, \'app\': <fastapi.applications.FastAPI object at 0x000001EC604C8B20>, \'router\': <fastapi.routing.APIRouter object at 0x000001EC5EB05190>, \'endpoint\': <function login_for_access_token at 0x000001EC602EBD30>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001EC60545C70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001EC605683A0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (119, '2022-09-30 11:06:21', '2022-09-30 11:06:21', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTEwNzEyMX0.9yQVcDsl2WRhPdazZK4-2EerEHybnMfW2YQ0KxCteAE\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52825), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028041B30C40>, \'app\': <fastapi.applications.FastAPI object at 0x0000028041AC6A60>, \'router\': <fastapi.routing.APIRouter object at 0x00000280419FE7C0>, \'endpoint\': <function login_for_access_token at 0x00000280418CBEE0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028041B30B50>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028041B44940>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (120, '2022-09-30 22:38:32', '2022-09-30 22:38:32', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTE0ODY1Mn0.-tSODsBwVLLSXrd0fWK27A0QnoX9vuWzOSe-rP41DVs\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59038), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001FD9436FA60>, \'app\': <fastapi.applications.FastAPI object at 0x000001FD9424C5E0>, \'router\': <fastapi.routing.APIRouter object at 0x000001FD94308F70>, \'endpoint\': <function login_for_access_token at 0x000001FD94117790>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001FD9436F970>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001FD9438B550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (121, '2022-10-01 11:20:30', '2022-10-01 11:20:30', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTE5NDM3MH0.qwYoBHsG6H0BkjU_kWSNdV-uNDGXJjJ6-JfgWGP-WWU\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 56159), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001E02F32FA60>, \'app\': <fastapi.applications.FastAPI object at 0x000001E02F20C5E0>, \'router\': <fastapi.routing.APIRouter object at 0x000001E02F2C8F70>, \'endpoint\': <function login_for_access_token at 0x000001E02F0D7790>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001E02F32F970>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001E02F34A550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (122, '2022-10-01 15:16:54', '2022-10-01 15:16:54', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTIwODU1NH0.O3dVocTSVVwXtiCJJYtFSX3f5hVGqC83_WfzvyxncSs\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 49456), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000025F005CFA60>, \'app\': <fastapi.applications.FastAPI object at 0x0000025F004AC5E0>, \'router\': <fastapi.routing.APIRouter object at 0x0000025F00568F70>, \'endpoint\': <function login_for_access_token at 0x0000025F00377790>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000025F005CF970>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000025F005EA550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (123, '2022-10-04 08:41:28', '2022-10-04 08:41:28', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTQ0NDAyOH0.xXlOjGflptCu6CUpcIReUq0Pj4rfAov4SfSNAE5hDnI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 63252), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000020A34189610>, \'app\': <fastapi.applications.FastAPI object at 0x0000020A3410FFA0>, \'router\': <fastapi.routing.APIRouter object at 0x0000020A340570D0>, \'endpoint\': <function login_for_access_token at 0x0000020A33F248B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000020A34189520>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000020A34196A60>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (124, '2022-10-04 17:41:44', '2022-10-04 17:41:44', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTQ3NjQ0NH0.VTmUwFYuApBE3xA6c39vpyjgXXeWNt25xPcSnFqTfzM\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62942), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001AD688F4D00>, \'app\': <fastapi.applications.FastAPI object at 0x000001AD68539C10>, \'router\': <fastapi.routing.APIRouter object at 0x000001AD68456B20>, \'endpoint\': <function login_for_access_token at 0x000001AD683448B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001AD688F48B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001AD68928280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (125, '2022-10-04 20:47:59', '2022-10-04 20:47:59', '15093430559', 1, '127.0.0.1', NULL, 'Edge 105.0.1343', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTQ4NzYyMH0.Agv5uCcVrPuZ9O6m2PbeMrlxC7Er1SEdjp1zL1j_H_g\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 52357), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000027F269E24F0>, \'app\': <fastapi.applications.FastAPI object at 0x0000027F2696BC10>, \'router\': <fastapi.routing.APIRouter object at 0x0000027F26887B20>, \'endpoint\': <function login_for_access_token at 0x0000027F267748B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000027F269E2400>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000027F269E3E50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Microsoft Edge\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (126, '2022-10-06 11:17:55', '2022-10-06 11:17:55', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTYyNjIxN30.fx81cIgT-sN8zhsF0iochTq0Z83yQ_GsHeqjUz4aLaI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 63548), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002CD258FE4F0>, \'app\': <fastapi.applications.FastAPI object at 0x000002CD25888C10>, \'router\': <fastapi.routing.APIRouter object at 0x000002CD257A6B20>, \'endpoint\': <function login_for_access_token at 0x000002CD256948B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002CD258FE400>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002CD25900E50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (127, '2022-10-06 12:54:50', '2022-10-06 12:54:50', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTYzMjAzMX0.j5FNpLDVamAUJmpw2oz3vE_rRWmJmQiTAam4nxwr8fs\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 49259), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002AFD47DF490>, \'app\': <fastapi.applications.FastAPI object at 0x000002AFD4769C10>, \'router\': <fastapi.routing.APIRouter object at 0x000002AFD4686B20>, \'endpoint\': <function login_for_access_token at 0x000002AFD45748B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002AFD47DF3A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002AFD47E0E50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (128, '2022-10-08 11:29:48', '2022-10-08 11:29:48', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTc5OTcyOH0.MYj1bXDulHFgmb45HLw4U0YK01VOgqKfwTjiAPD7v4Y\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 49255), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001B2250946A0>, \'app\': <fastapi.applications.FastAPI object at 0x000001B224F6BCD0>, \'router\': <fastapi.routing.APIRouter object at 0x000001B225025E80>, \'endpoint\': <function login_for_access_token at 0x000001B224E36040>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001B2250945B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001B2250AA670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (129, '2022-10-08 15:30:30', '2022-10-08 15:30:30', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTgxNDE3MH0.ydqh2kzp0gSzzdFAqMB9jD9QPVosGtuphrTPKwOqi38\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 50370), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000018740AF46A0>, \'app\': <fastapi.applications.FastAPI object at 0x00000187409CBCD0>, \'router\': <fastapi.routing.APIRouter object at 0x0000018740A85E80>, \'endpoint\': <function login_for_access_token at 0x0000018740896040>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000018740AF45B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000018740B0A670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (130, '2022-10-08 21:05:50', '2022-10-08 21:05:50', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTgzNDI5Mn0.PyuveHRHfF-UgyQwty3oHcxf46dFQ8HZPrQEN3vc0PE\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"admin\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53341), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001C370D16520>, \'app\': <fastapi.applications.FastAPI object at 0x000001C370BC95E0>, \'router\': <fastapi.routing.APIRouter object at 0x000001C370CA6CA0>, \'endpoint\': <function login_for_access_token at 0x000001C370AA48B0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001C370D16430>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001C370D30280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (131, '2022-10-09 15:00:13', '2022-10-09 15:00:13', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTg5ODc1M30.GZrcd5lvZ9OX8xoKFOHG12cXGxNELHmPZldfD2sixnQ\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59352), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000210D11C5700>, \'app\': <fastapi.applications.FastAPI object at 0x00000210D109CCD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000210D1155E80>, \'endpoint\': <function login_for_access_token at 0x00000210D0F65040>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000210D11C5610>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000210D11DA670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (132, '2022-10-09 15:47:21', '2022-10-09 15:47:21', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkwMTU4MX0.inGrREbk6XhumPyJ9TK1a7BUjcP_5P5BwFzaVJ_zho0\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61517), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000210D159DDC0>, \'app\': <fastapi.applications.FastAPI object at 0x00000210D109CCD0>, \'router\': <fastapi.routing.APIRouter object at 0x00000210D1155E80>, \'endpoint\': <function login_for_access_token at 0x00000210D0F65040>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000210D15CA100>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000210D15B8D30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (133, '2022-10-09 21:55:55', '2022-10-09 21:55:55', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyMzY5NH0._pRQWXI1d7wZvePvJu1nwOb63PgNJKa0-IIb-ZQvkGw\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51750), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B23FF4C0>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B23FF3D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B240D820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (134, '2022-10-09 22:01:20', '2022-10-09 22:01:20', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNDAyMH0.UbKay03vbniCifp02ZKvqpfZvRG4I4ATSmny_qQ1Cxk\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 51840), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B2687850>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B2687610>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B27425E0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (135, '2022-10-09 22:39:40', '2022-10-09 22:39:40', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53393), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B27072B0>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B2813160>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B280D1F0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (136, '2022-10-09 22:39:50', '2022-10-09 22:39:50', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53396), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B281EAC0>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B26EC3A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B27B1670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (137, '2022-10-09 22:39:52', '2022-10-09 22:39:52', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53399), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'53\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B2748340>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B2750040>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B27425E0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aaa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'53\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aaa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (138, '2022-10-09 22:40:01', '2022-10-09 22:40:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53402), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B27B2550>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B267EEB0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2785040>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123zz\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123zz\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (139, '2022-10-09 22:40:04', '2022-10-09 22:40:04', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53406), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B276B220>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B276B3D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2785CA0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123dd\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123dd\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (140, '2022-10-09 22:40:07', '2022-10-09 22:40:07', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53409), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B27FED00>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B27628B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2742B80>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (141, '2022-10-09 22:40:09', '2022-10-09 22:40:09', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53412), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B2867610>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B2867670>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2853550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (142, '2022-10-09 22:40:10', '2022-10-09 22:40:10', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53415), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B2870B20>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B2867E20>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2853DC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (143, '2022-10-09 22:40:11', '2022-10-09 22:40:11', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53418), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B288FC10>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B288FBE0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2853430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (144, '2022-10-09 22:40:16', '2022-10-09 22:40:16', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNjM1Nn0.XRGy2aULNdGyyqKVW9uPEkQdvcDeMQd-N8xtDWXPNUI\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53430), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000203B288FCA0>, \'app\': <fastapi.applications.FastAPI object at 0x00000203B237FB50>, \'router\': <fastapi.routing.APIRouter object at 0x00000203B0994160>, \'endpoint\': <function login_for_access_token at 0x00000203B217DB80>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000203B288FD00>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000203B2586700>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (145, '2022-10-09 22:42:11', '2022-10-09 22:42:11', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53463), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000017D8EFAB640>, \'app\': <fastapi.applications.FastAPI object at 0x0000017D8EC7FB50>, \'router\': <fastapi.routing.APIRouter object at 0x0000017D8D294160>, \'endpoint\': <function login_for_access_token at 0x0000017D8EA7BC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000017D8EFAB580>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000017D8EF3BCA0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (146, '2022-10-09 22:42:16', '2022-10-09 22:42:16', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNjQ3Nn0.vPPM18sq4V8qZcDzQxEjJ5Un-7TgzlljuYyqm90Z1AE\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53468), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000017D8ECFD430>, \'app\': <fastapi.applications.FastAPI object at 0x0000017D8EC7FB50>, \'router\': <fastapi.routing.APIRouter object at 0x0000017D8D294160>, \'endpoint\': <function login_for_access_token at 0x0000017D8EA7BC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000017D8EF99F70>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000017D8EF3BDC0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (147, '2022-10-09 22:43:02', '2022-10-09 22:43:02', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53525), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000017D8F080730>, \'app\': <fastapi.applications.FastAPI object at 0x0000017D8EC7FB50>, \'router\': <fastapi.routing.APIRouter object at 0x0000017D8D294160>, \'endpoint\': <function login_for_access_token at 0x0000017D8EA7BC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000017D8F080A30>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000017D8F08C310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (148, '2022-10-09 22:43:08', '2022-10-09 22:43:08', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNjUyOH0.SD0oouFrR5N3Ogxl_DY3ZWTTM1eEun0YH56NeIiHDcY\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53531), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000017D8F0BBFA0>, \'app\': <fastapi.applications.FastAPI object at 0x0000017D8EC7FB50>, \'router\': <fastapi.routing.APIRouter object at 0x0000017D8D294160>, \'endpoint\': <function login_for_access_token at 0x0000017D8EA7BC10>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000017D8F099190>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000017D8F0B5670>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (149, '2022-10-09 22:46:15', '2022-10-09 22:46:15', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53680), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000020BEF082400>, \'app\': <fastapi.applications.FastAPI object at 0x0000020BEECF0B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000020BED304160>, \'endpoint\': <function login_for_access_token at 0x0000020BEEAEBCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000020BEF082250>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000020BEED4FA60>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (150, '2022-10-09 22:46:25', '2022-10-09 22:46:25', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNjcyNX0.KJAxekzuBhw2w9sBN-8rCdG5h05dia8R3TiM9IIJRY4\", \"token_type\": \"bearer\", \"is_reset_password\": false, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53701), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000020BEF02C190>, \'app\': <fastapi.applications.FastAPI object at 0x0000020BEECF0B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000020BED304160>, \'endpoint\': <function login_for_access_token at 0x0000020BEEAEBCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000020BEF02C640>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000020BEF0568B0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (151, '2022-10-09 22:46:46', '2022-10-09 22:46:46', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTkyNjc0Nn0.ezQL3GS6bDQlZsmqP84ahRFU0CI986wRZ9WmBZ7tmUc\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 53726), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000020BEF128430>, \'app\': <fastapi.applications.FastAPI object at 0x0000020BEECF0B50>, \'router\': <fastapi.routing.APIRouter object at 0x0000020BED304160>, \'endpoint\': <function login_for_access_token at 0x0000020BEEAEBCA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000020BEF1038E0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000020BEF12B160>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (152, '2022-10-10 08:38:54', '2022-10-10 08:38:54', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59244), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001ABFE1CB6A0>, \'app\': <fastapi.applications.FastAPI object at 0x000001ABFE14BD30>, \'router\': <fastapi.routing.APIRouter object at 0x000001ABFC7551F0>, \'endpoint\': <function login_for_access_token at 0x000001ABFDF5D430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001ABFE1CB5B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001ABFE1D2D30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (153, '2022-10-10 08:41:10', '2022-10-10 08:41:10', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk2MjQxMH0.urS96S8RxpBK8i6U2XDFmki3-ImIlSVK4elMZpX7egw\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59387), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001ABFE1D84F0>, \'app\': <fastapi.applications.FastAPI object at 0x000001ABFE14BD30>, \'router\': <fastapi.routing.APIRouter object at 0x000001ABFC7551F0>, \'endpoint\': <function login_for_access_token at 0x000001ABFDF5D430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001ABFE1CBE80>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001ABFE1AFCA0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (154, '2022-10-10 08:43:18', '2022-10-10 08:43:18', '15093430559', 1, '127.0.0.1', NULL, 'Chrome 105.0.0', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk2MjUzOH0._9E1StzNCz8tUo0rcc0Np4x1Im7OD2N6RvsuY0_DbFs\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59475), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'authorization\', b\'null\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001ABFE4C68B0>, \'app\': <fastapi.applications.FastAPI object at 0x000001ABFE14BD30>, \'router\': <fastapi.routing.APIRouter object at 0x000001ABFC7551F0>, \'endpoint\': <function login_for_access_token at 0x000001ABFDF5D430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001ABFE4C64F0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001ABFE4D1430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\', \'sec-ch-ua-mobile\': \'?0\', \'authorization\': \'null\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Google Chrome\";v=\"105\", \"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"105\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (155, '2022-10-10 08:46:15', '2022-10-10 08:46:15', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk2MjcxNX0.pJfXlCcGf3HCAfCaAiV1Yx0vuKIqfpYUj45AxhO87ho\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 59620), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001ABFE5B4B50>, \'app\': <fastapi.applications.FastAPI object at 0x000001ABFE14BD30>, \'router\': <fastapi.routing.APIRouter object at 0x000001ABFC7551F0>, \'endpoint\': <function login_for_access_token at 0x000001ABFDF5D430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001ABFE512670>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001ABFE5AB430>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (156, '2022-10-10 12:32:29', '2022-10-10 12:32:29', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64248), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002144DCD34C0>, \'app\': <fastapi.applications.FastAPI object at 0x000002144DC5AC40>, \'router\': <fastapi.routing.APIRouter object at 0x000002144DB77D30>, \'endpoint\': <function login_for_access_token at 0x000002144DA5E430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002144DCD33D0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002144DCF01F0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (157, '2022-10-10 12:32:36', '2022-10-10 12:32:36', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk3NjI5Nn0.d8F8V-tF9ZtI9EGg2AqYjP6-JBArV4gdXnVj4op-FXg\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64252), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002144DCDF8E0>, \'app\': <fastapi.applications.FastAPI object at 0x000002144DC5AC40>, \'router\': <fastapi.routing.APIRouter object at 0x000002144DB77D30>, \'endpoint\': <function login_for_access_token at 0x000002144DA5E430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002144DE61D30>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000002144DCCCEE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (158, '2022-10-10 12:36:59', '2022-10-10 12:36:59', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64432), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028ED20DF5B0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028ED1DCAC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000028ED1CE8D30>, \'endpoint\': <function login_for_access_token at 0x0000028ED1BCE430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028ED20DF4C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028ED1E3C310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (159, '2022-10-10 12:37:12', '2022-10-10 12:37:12', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64441), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028ED1E434C0>, \'app\': <fastapi.applications.FastAPI object at 0x0000028ED1DCAC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000028ED1CE8D30>, \'endpoint\': <function login_for_access_token at 0x0000028ED1BCE430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028ED1E5A610>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028ED1E3C280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (160, '2022-10-10 12:37:19', '2022-10-10 12:37:19', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk3NjU4MH0.FrGJei7P9k45kTehiSLOZzpn4nMrsvh0oP1-SjBUnaw\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"0\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64449), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000028ED2174760>, \'app\': <fastapi.applications.FastAPI object at 0x0000028ED1DCAC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000028ED1CE8D30>, \'endpoint\': <function login_for_access_token at 0x0000028ED1BCE430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000028ED2174070>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000028ED1F7B9D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (161, '2022-10-10 12:43:07', '2022-10-10 12:43:07', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64733), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'54\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000018D5AC33F10>, \'app\': <fastapi.applications.FastAPI object at 0x0000018D5A8BAC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000018D5A7D8D30>, \'endpoint\': <function login_for_access_token at 0x0000018D5A6BE430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000018D5AC33940>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000018D5A92C280>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aaaa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'54\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aaaa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (162, '2022-10-10 12:43:14', '2022-10-10 12:43:14', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk3NjkzNH0.8rv7SaV9bht0zTLygF4505HlZSNLDEHbTKbc8zpaw4g\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"0\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 64740), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'cache-control\', b\'no-cache\'), (b\'pragma\', b\'no-cache\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000018D5AC337C0>, \'app\': <fastapi.applications.FastAPI object at 0x0000018D5A8BAC40>, \'router\': <fastapi.routing.APIRouter object at 0x0000018D5A7D8D30>, \'endpoint\': <function login_for_access_token at 0x0000018D5A6BE430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000018D5AC336A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000018D5AA6C9D0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'cache-control\': \'no-cache\', \'pragma\': \'no-cache\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (163, '2022-10-10 14:35:01', '2022-10-10 14:35:01', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54879), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'47\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D615491460>, \'app\': <fastapi.applications.FastAPI object at 0x000001D614E902E0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D614F55CD0>, \'endpoint\': <function login_for_access_token at 0x000001D614D4E430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D6154917C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D61547C820>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"430559\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'47\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'430559\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (164, '2022-10-10 14:35:05', '2022-10-10 14:35:05', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NTk4MzY0NX0.Q8lpzoZPGszfwub_WvFcE5i3HjaoDxFrBNzbTaxtWeg\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"Kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 54883), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000001D615495F40>, \'app\': <fastapi.applications.FastAPI object at 0x000001D614E902E0>, \'router\': <fastapi.routing.APIRouter object at 0x000001D614F55CD0>, \'endpoint\': <function login_for_access_token at 0x000001D614D4E430>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000001D615495DC0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001D61547CB80>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123zz\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123zz\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (165, '2022-10-10 20:14:49', '2022-10-10 20:14:49', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '手机号或密码不正确!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60928), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000143FFF19160>, \'app\': <fastapi.applications.FastAPI object at 0x00000143FFE93EB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000143FFDE1700>, \'endpoint\': <function login_for_access_token at 0x00000143FFC89CA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000143FFF19070>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000143FFF341F0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123aa\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123aa\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (166, '2022-10-10 20:14:55', '2022-10-10 20:14:55', '15093430559', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTA5MzQzMDU1OSIsImV4cCI6MTY2NjAwNDAzNn0.TPPo7sfBb9inyVPmddKpVuS30P4-2DjeIy4J5KggNNE\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15093430559\", \"name\": \"kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 60936), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000143FFF5C340>, \'app\': <fastapi.applications.FastAPI object at 0x00000143FFE93EB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000143FFDE1700>, \'endpoint\': <function login_for_access_token at 0x00000143FFC89CA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x00000143FFF2F430>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000143FFF09EE0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123zz\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123zz\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (167, '2022-10-10 20:29:35', '2022-10-10 20:29:35', '15093430559', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61410), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x00000143803BC310>, \'app\': <fastapi.applications.FastAPI object at 0x00000143FFE93EB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000143FFDE1700>, \'endpoint\': <function login_for_access_token at 0x00000143FFC89CA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000014380153F10>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000143FFF09550>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15093430559\",\"password\":\"123123123zz\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15093430559\', \'password\': \'123123123zz\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (168, '2022-10-10 20:29:43', '2022-10-10 20:29:43', '15020221010', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTAyMDIyMTAxMCIsImV4cCI6MTY2NjAwNDkyNH0.SnY2FEoOdz3u7ijnd4OXWHbF373OVGNJDvzfDdKnnes\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15020221010\", \"name\": \"kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 61414), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login?redirect=/dashboard\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'52\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000014380212FA0>, \'app\': <fastapi.applications.FastAPI object at 0x00000143FFE93EB0>, \'router\': <fastapi.routing.APIRouter object at 0x00000143FFDE1700>, \'endpoint\': <function login_for_access_token at 0x00000143FFC89CA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000014380212640>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x000001438019AD30>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221010\",\"password\":\"123123123zz\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login?redirect=/dashboard\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'52\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221010\', \'password\': \'123123123zz\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (169, '2022-10-10 20:52:18', '2022-10-10 20:52:18', '15020221010', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTAyMDIyMTAxMCIsImV4cCI6MTY2NjAwNjI3OX0.iqyMrknplsyea5CPpmiZnLvEUO0MnJdtOhc6KGUhwLM\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15020221010\", \"name\": \"kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"create_datetime\": \"2022-08-11 20:17:04\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62378), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'50\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x000002361676A100>, \'app\': <fastapi.applications.FastAPI object at 0x00000236166E2EB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000023616631700>, \'endpoint\': <function login_for_access_token at 0x00000236164DACA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x000002361675CFD0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x00000236167841F0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221010\",\"password\":\"kinit2022\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'50\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221010\', \'password\': \'kinit2022\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (170, '2022-10-10 20:53:27', '2022-10-10 20:53:27', '15020221010', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62457), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'50\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000023616B1D610>, \'app\': <fastapi.applications.FastAPI object at 0x00000236166E2EB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000023616631700>, \'endpoint\': <function login_for_access_token at 0x00000236164DACA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000023616B1D8B0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000023616B0BC10>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221010\",\"password\":\"kinit2022\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'50\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221010\', \'password\': \'kinit2022\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (171, '2022-10-10 20:55:44', '2022-10-10 20:55:44', '15020221010', 0, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '该手机号不存在!', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62551), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'50\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000023616B1DF70>, \'app\': <fastapi.applications.FastAPI object at 0x00000236166E2EB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000023616631700>, \'endpoint\': <function login_for_access_token at 0x00000236164DACA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000023616B1D6A0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000023616B0BE50>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221010\",\"password\":\"kinit2022\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'50\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221010\', \'password\': \'kinit2022\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (172, '2022-10-10 20:55:47', '2022-10-10 20:55:47', '15020221011', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTAyMDIyMTAxMSIsImV4cCI6MTY2NjAwNjQ4OX0.-ruDXL6mCEOs8di1uhyPy-ptheJ24VuAAiDIjgz_jr8\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15020221011\", \"name\": \"kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"create_datetime\": \"2022-08-11 20:17:04\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62554), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'50\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000023616B38D30>, \'app\': <fastapi.applications.FastAPI object at 0x00000236166E2EB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000023616631700>, \'endpoint\': <function login_for_access_token at 0x00000236164DACA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000023616B38A90>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000023616B284C0>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221011\",\"password\":\"kinit2022\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'50\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221011\', \'password\': \'kinit2022\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
INSERT INTO `vadmin_record_login` VALUES (173, '2022-10-10 20:56:17', '2022-10-10 20:56:17', '15020221010', 1, '127.0.0.1', NULL, 'Edge 106.0.1370', 'Windows 10', '{\"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTAyMDIyMTAxMCIsImV4cCI6MTY2NjAwNjUxOH0.jwRRTm0ztZNilvyxbztSbLJ3S3p4PEDSb84UHa7tmtg\", \"token_type\": \"bearer\", \"is_reset_password\": true, \"user\": {\"id\": 3, \"telephone\": \"15020221010\", \"name\": \"kinit\", \"nickname\": \"admin\", \"avatar\": null, \"gender\": \"1\", \"create_datetime\": \"2022-08-11 20:17:04\", \"roles\": [{\"name\": \"\\u7ba1\\u7406\\u5458\", \"value\": \"admin\"}]}}', '{\'scope\': {\'type\': \'http\', \'asgi\': {\'version\': \'3.0\', \'spec_version\': \'2.1\'}, \'http_version\': \'1.1\', \'server\': (\'127.0.0.1\', 9000), \'client\': (\'127.0.0.1\', 62619), \'scheme\': \'http\', \'method\': \'POST\', \'root_path\': \'\', \'path\': \'/auth/login/\', \'raw_path\': b\'/auth/login/\', \'query_string\': b\'\', \'headers\': [(b\'accept-language\', b\'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\'), (b\'accept-encoding\', b\'gzip, deflate, br\'), (b\'referer\', b\'http://127.0.0.1:5000/login\'), (b\'sec-fetch-dest\', b\'empty\'), (b\'sec-fetch-mode\', b\'cors\'), (b\'sec-fetch-site\', b\'same-origin\'), (b\'origin\', b\'http://127.0.0.1:5000\'), (b\'sec-ch-ua-platform\', b\'\"Windows\"\'), (b\'user-agent\', b\'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\'), (b\'authorization\', b\'null\'), (b\'sec-ch-ua-mobile\', b\'?0\'), (b\'content-type\', b\'application/json\'), (b\'accept\', b\'application/json, text/plain, */*\'), (b\'sec-ch-ua\', b\'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\'), (b\'content-length\', b\'50\'), (b\'connection\', b\'close\'), (b\'host\', b\'127.0.0.1:9000\')], \'fastapi_astack\': <contextlib.AsyncExitStack object at 0x0000023616BB4F40>, \'app\': <fastapi.applications.FastAPI object at 0x00000236166E2EB0>, \'router\': <fastapi.routing.APIRouter object at 0x0000023616631700>, \'endpoint\': <function login_for_access_token at 0x00000236164DACA0>, \'path_params\': {}}, \'_receive\': <bound method RequestResponseCycle.receive of <uvicorn.protocols.http.httptools_impl.RequestResponseCycle object at 0x0000023616BB41C0>>, \'_send\': <function ExceptionMiddleware.__call__.<locals>.sender at 0x0000023616BAE310>, \'_stream_consumed\': True, \'_is_disconnected\': False, \'_body\': b\'{\"telephone\":\"15020221010\",\"password\":\"kinit2022\"}\', \'_headers\': Headers({\'accept-language\': \'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6\', \'accept-encoding\': \'gzip, deflate, br\', \'referer\': \'http://127.0.0.1:5000/login\', \'sec-fetch-dest\': \'empty\', \'sec-fetch-mode\': \'cors\', \'sec-fetch-site\': \'same-origin\', \'origin\': \'http://127.0.0.1:5000\', \'sec-ch-ua-platform\': \'\"Windows\"\', \'user-agent\': \'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37\', \'authorization\': \'null\', \'sec-ch-ua-mobile\': \'?0\', \'content-type\': \'application/json\', \'accept\': \'application/json, text/plain, */*\', \'sec-ch-ua\': \'\"Chromium\";v=\"106\", \"Microsoft Edge\";v=\"106\", \"Not;A=Brand\";v=\"99\"\', \'content-length\': \'50\', \'connection\': \'close\', \'host\': \'127.0.0.1:9000\'}), \'_json\': {\'telephone\': \'15020221010\', \'password\': \'kinit2022\'}, \'_query_params\': QueryParams(\'\'), \'_cookies\': {}}');
-- ----------------------------
-- Table structure for vadmin_record_operation
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_record_operation`;
CREATE TABLE `vadmin_record_operation` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`user` int(11) NULL DEFAULT NULL COMMENT '操作人',
`status` tinyint(1) NULL DEFAULT NULL COMMENT '操作结果状态',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '登陆地址',
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '登陆地点',
`browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '浏览器',
`system` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作系统',
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '响应信息',
`request` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '请求信息',
`request_api` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '请求接口',
`request_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '请求方式',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_record_operation_id`(`id` ASC) USING BTREE,
INDEX `user`(`user` ASC) USING BTREE,
CONSTRAINT `vadmin_record_operation_ibfk_1` FOREIGN KEY (`user`) REFERENCES `vadmin_auth_user` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '操作记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_record_operation
-- ----------------------------
-- ----------------------------
-- Table structure for vadmin_record_sms_send
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_record_sms_send`;
CREATE TABLE `vadmin_record_sms_send` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`user_id` int(11) NULL DEFAULT NULL COMMENT '操作人',
`status` tinyint(1) NULL DEFAULT NULL COMMENT '发送状态',
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '发送内容',
`telephone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '目标手机号',
`desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '失败描述',
`scene` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '发送场景',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_record_sms_send_id`(`id` ASC) USING BTREE,
INDEX `user_id`(`user_id` ASC) USING BTREE,
CONSTRAINT `vadmin_record_sms_send_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `vadmin_auth_user` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '短信发送记录表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_record_sms_send
-- ----------------------------
-- ----------------------------
-- Table structure for vadmin_system_dict_details
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_system_dict_details`;
CREATE TABLE `vadmin_system_dict_details` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`is_default` tinyint(1) NULL DEFAULT NULL COMMENT '是否默认',
`dict_type_id` int(11) NULL DEFAULT NULL COMMENT '关联字典类型',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '备注',
`disabled` tinyint(1) NULL DEFAULT NULL COMMENT '字典状态,是否禁用',
`order` int(11) NULL DEFAULT NULL COMMENT '字典排序',
`label` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '字典标签',
`value` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '字典键值',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_system_dict_details_id`(`id` ASC) USING BTREE,
INDEX `dict_type_id`(`dict_type_id` ASC) USING BTREE,
INDEX `ix_vadmin_system_dict_details_label`(`label` ASC) USING BTREE,
INDEX `ix_vadmin_system_dict_details_value`(`value` ASC) USING BTREE,
CONSTRAINT `vadmin_system_dict_details_ibfk_1` FOREIGN KEY (`dict_type_id`) REFERENCES `vadmin_system_dict_type` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '字典详情表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_system_dict_details
-- ----------------------------
INSERT INTO `vadmin_system_dict_details` VALUES (1, '2022-10-07 12:05:19', '2022-10-07 12:05:19', 0, NULL, NULL, 0, 0, '', '0');
INSERT INTO `vadmin_system_dict_details` VALUES (2, '2022-10-07 12:07:43', '2022-10-07 12:08:02', 0, 1, NULL, 0, 0, '', '0');
INSERT INTO `vadmin_system_dict_details` VALUES (4, '2022-10-08 13:55:32', '2022-10-08 13:55:32', 0, 1, NULL, 0, 1, '', '1');
INSERT INTO `vadmin_system_dict_details` VALUES (5, '2022-10-08 14:05:15', '2022-10-08 14:05:38', 1, 2, NULL, 0, 0, '目录', '0');
INSERT INTO `vadmin_system_dict_details` VALUES (6, '2022-10-08 14:05:24', '2022-10-08 14:05:24', 0, 2, NULL, 0, 1, '菜单', '1');
INSERT INTO `vadmin_system_dict_details` VALUES (7, '2022-10-08 14:05:32', '2022-10-08 14:05:32', 0, 2, NULL, 0, 2, '按钮', '2');
-- ----------------------------
-- Table structure for vadmin_system_dict_type
-- ----------------------------
DROP TABLE IF EXISTS `vadmin_system_dict_type`;
CREATE TABLE `vadmin_system_dict_type` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`create_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_datetime` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`dict_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '字典名称',
`dict_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '字典类型',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '备注',
`disabled` tinyint(1) NULL DEFAULT NULL COMMENT '字典状态,是否禁用',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `ix_vadmin_system_dict_type_id`(`id` ASC) USING BTREE,
INDEX `ix_vadmin_system_dict_type_dict_name`(`dict_name` ASC) USING BTREE,
INDEX `ix_vadmin_system_dict_type_dict_type`(`dict_type` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '字典类型表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of vadmin_system_dict_type
-- ----------------------------
INSERT INTO `vadmin_system_dict_type` VALUES (1, '2022-10-05 22:03:43', '2022-10-08 13:57:16', '性别', 'sys_vadmin_gender', '', 0);
INSERT INTO `vadmin_system_dict_type` VALUES (2, '2022-10-08 13:57:32', '2022-10-08 13:57:32', '菜单类型', 'sys_vadmin_menu_type', NULL, 0);
SET FOREIGN_KEY_CHECKS = 1;