From b39a0502e7941ce966fda53664cf1b04ba52d65f Mon Sep 17 00:00:00 2001
From: lrj <owen.stl@gmail.com>
Date: 星期三, 01 十月 2025 17:30:24 +0800
Subject: [PATCH] 清理测试文件:删除所有test、debug、fix、check_开头的文件,为重构做准备

---
 db.sql |  475 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 453 insertions(+), 22 deletions(-)

diff --git a/db.sql b/db.sql
index 7b2b5b0..a2622c1 100644
--- a/db.sql
+++ b/db.sql
@@ -1,11 +1,8 @@
 -- 鏁版嵁搴撶粨鏋勫鍑�
--- 鏁版嵁搴�: ryc
--- 瀵煎嚭鏃堕棿: 2025/9/30 08:39:43
--- 
--- 娉ㄦ剰锛氭鏂囦欢浠呭寘鍚〃缁撴瀯锛屼笉鍖呭惈鏁版嵁
+-- 鐢熸垚鏃堕棿: 2025-09-30T09:56:33.481Z
 
-SET NAMES utf8mb4;
-SET FOREIGN_KEY_CHECKS = 0;
+CREATE DATABASE IF NOT EXISTS `ryc` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+USE `ryc`;
 
 -- ----------------------------
 -- Table structure for t_activity
@@ -15,6 +12,7 @@
   `id` bigint NOT NULL AUTO_INCREMENT,
   `pid` bigint NOT NULL DEFAULT '0',
   `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
+  `sort_order` int DEFAULT NULL COMMENT '闃舵鐨勯『搴�',
   `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
   `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci,
   `signup_deadline` datetime NOT NULL,
@@ -32,7 +30,19 @@
   KEY `fk_t_activity_rating_scheme` (`rating_scheme_id`) USING BTREE,
   KEY `idx_t_activity_deadline` (`signup_deadline`) USING BTREE,
   CONSTRAINT `fk_t_activity_rating_scheme` FOREIGN KEY (`rating_scheme_id`) REFERENCES `t_rating_scheme` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
-) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_activity
+-- ----------------------------
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 0, '/', NULL, '2025', '13璁╀汉', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Sat Oct 04 2025 00:00:00 GMT+0800 (GMT+08:00)', '13243', 8, NULL, 1, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 1, '/1/', 1, '娴烽��', '', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Sat Oct 04 2025 00:00:00 GMT+0800 (GMT+08:00)', '', 8, NULL, 1, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 1, '/1/', 2, '澶嶈禌', '44444', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Tue Oct 07 2025 00:00:00 GMT+0800 (GMT+08:00)', '4444', 8, NULL, 1, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:22:09 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 0, '/', NULL, '2026', '1111', 'Thu Oct 02 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Sun Oct 05 2025 00:00:00 GMT+0800 (GMT+08:00)', '111', 8, NULL, 1, 'Tue Sep 30 2025 12:27:31 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:27:31 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, 4, '/4/', 1, '娴烽��', '', 'Thu Oct 02 2025 00:00:00 GMT+0800 (GMT+08:00)', NULL, '', 8, NULL, 1, 'Tue Sep 30 2025 12:27:31 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:27:31 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, 0, '/', NULL, '2027', '333333', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Sat Oct 04 2025 00:00:00 GMT+0800 (GMT+08:00)', '123', 8, NULL, 1, 'Tue Sep 30 2025 12:32:22 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:32:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, 6, '/6/', 1, '娴烽��', '4444', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', '4444', 8, 1000, 1, 'Tue Sep 30 2025 12:32:22 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 13:57:13 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_activity` (`id`, `pid`, `path`, `sort_order`, `name`, `description`, `signup_deadline`, `match_time`, `address`, `rating_scheme_id`, `player_max`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, 6, '/6/', 2, '澶嶈禌', '333333', 'Fri Oct 03 2025 00:00:00 GMT+0800 (GMT+08:00)', 'Sat Oct 04 2025 00:00:00 GMT+0800 (GMT+08:00)', '3333', 8, 100, 1, 'Tue Sep 30 2025 14:04:22 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:04:22 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_activity_judge
@@ -52,7 +62,12 @@
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE,
   UNIQUE KEY `uq_stage_judge` (`stage_id`,`judge_id`) USING BTREE
-) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_activity_judge
+-- ----------------------------
+INSERT INTO `t_activity_judge` (`id`, `activity_id`, `stage_id`, `judge_id`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 6, 7, 68, NULL, NULL, 'Tue Sep 30 2025 14:04:38 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:04:38 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_activity_player
@@ -78,7 +93,13 @@
   `update_user_id` bigint DEFAULT NULL,
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE
-) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_activity_player
+-- ----------------------------
+INSERT INTO `t_activity_player` (`id`, `activity_id`, `stage_id`, `player_id`, `region_id`, `project_name`, `description`, `reject_reason`, `judge_id`, `feedback`, `total_score`, `rank`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 6, 7, 1, 6, 'AI', 'AI code', NULL, NULL, 'OK', NULL, NULL, 1, 'Tue Sep 30 2025 14:21:08 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:18 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_activity_player` (`id`, `activity_id`, `stage_id`, `player_id`, `region_id`, `project_name`, `description`, `reject_reason`, `judge_id`, `feedback`, `total_score`, `rank`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 6, 8, 1, 6, 'AI', 'AI code', NULL, NULL, NULL, NULL, NULL, 1, 'Tue Sep 30 2025 17:29:13 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 17:29:13 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_activity_player_rating
@@ -101,7 +122,12 @@
   `update_user_id` bigint DEFAULT NULL,
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
+
+-- ----------------------------
+-- Records of t_activity_player_rating
+-- ----------------------------
+INSERT INTO `t_activity_player_rating` (`id`, `activity_id`, `activity_player_id`, `rating_scheme_id`, `stage_id`, `player_id`, `judge_id`, `total_score`, `feedback`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 6, 1, 8, 1, 1, 68, 27.00, '鍝﹀摝鍝�', 1, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:54 GMT+0800 (GMT+08:00)', NULL, 1);
 
 -- ----------------------------
 -- Table structure for t_activity_player_rating_item
@@ -126,7 +152,15 @@
   `update_user_id` bigint DEFAULT NULL,
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE
-) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_activity_player_rating_item
+-- ----------------------------
+INSERT INTO `t_activity_player_rating_item` (`id`, `activity_id`, `activity_player_id`, `activity_player_rating_id`, `stage_id`, `player_id`, `judge_id`, `rating_scheme_id`, `rating_item_id`, `score`, `feedback`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 6, 1, 1, 1, 1, 68, 8, 10, 7.00, NULL, 1, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity_player_rating_item` (`id`, `activity_id`, `activity_player_id`, `activity_player_rating_id`, `stage_id`, `player_id`, `judge_id`, `rating_scheme_id`, `rating_item_id`, `score`, `feedback`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 6, 1, 1, 1, 1, 68, 8, 11, 12.00, NULL, 1, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity_player_rating_item` (`id`, `activity_id`, `activity_player_id`, `activity_player_rating_id`, `stage_id`, `player_id`, `judge_id`, `rating_scheme_id`, `rating_item_id`, `score`, `feedback`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 6, 1, 1, 1, 1, 68, 8, 12, 5.00, NULL, 1, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:53 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_activity_player_rating_item` (`id`, `activity_id`, `activity_player_id`, `activity_player_rating_id`, `stage_id`, `player_id`, `judge_id`, `rating_scheme_id`, `rating_item_id`, `score`, `feedback`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 6, 1, 1, 1, 1, 68, 8, 13, 3.00, NULL, 1, 'Tue Sep 30 2025 14:26:54 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:26:54 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_carousel
@@ -145,6 +179,13 @@
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='杞挱鍥�';
+
+-- ----------------------------
+-- Records of t_carousel
+-- ----------------------------
+INSERT INTO `t_carousel` (`id`, `title`, `description`, `sort_order`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, '111', '232322', 1, 1, 'Tue Sep 23 2025 11:06:43 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 11:23:57 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_carousel` (`id`, `title`, `description`, `sort_order`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, '111123333', '44444', 2, 1, 'Tue Sep 23 2025 17:40:04 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 22:20:55 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_carousel` (`id`, `title`, `description`, `sort_order`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, '2026', '1111', 999, 1, 'Fri Sep 26 2025 22:11:08 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 26 2025 22:11:08 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_employee
@@ -166,6 +207,19 @@
   PRIMARY KEY (`id`) USING BTREE,
   UNIQUE KEY `phone` (`phone`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_employee
+-- ----------------------------
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (1, 'Admin', '13981970816', 'JUDGE_MANAGER', 2, 1, 'Wed Sep 24 2025 15:22:21 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:34:21 GMT+0800 (GMT+08:00)', NULL, 1, '111111000');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (2, '澶氳鑹叉祴璇曠敤鎴�', '13800000003', 'MANAGER', 29, 1, 'Wed Sep 24 2025 21:08:16 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 21:08:16 GMT+0800 (GMT+08:00)', NULL, 0, '鏃㈡槸鍛樺伐鍙堟槸璇勫鐨勬祴璇曡处鍙�');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (4, '娴嬭瘯鍛樺伐Service', '13900000003', 'EMPLOYEE', 32, 1, 'Wed Sep 24 2025 22:26:40 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:26:40 GMT+0800 (GMT+08:00)', NULL, 0, '鐩存帴娴嬭瘯EmployeeService');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (5, '?????GraphQL', '13900000004', 'EMPLOYEE', 33, 1, 'Wed Sep 24 2025 22:26:50 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:26:50 GMT+0800 (GMT+08:00)', NULL, 0, '??GraphQL??????');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (6, '?????GraphQL2', '13900000005', 'EMPLOYEE', 34, 1, 'Wed Sep 24 2025 22:27:01 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:27:01 GMT+0800 (GMT+08:00)', NULL, 0, '??GraphQL??????2');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (7, 'uK', '13412341222', 'SUPER_ADMIN', 35, 1, 'Wed Sep 24 2025 22:29:32 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:29:32 GMT+0800 (GMT+08:00)', NULL, 0, '0000');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (8, 'Test Employee Edit - Modified', '13900000010', 'EMPLOYEE', 36, 1, 'Wed Sep 24 2025 22:31:42 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:31:43 GMT+0800 (GMT+08:00)', NULL, 2, 'Modified password and description');
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (9, 'Test', '13900000011', 'EMPLOYEE', 37, 1, 'Wed Sep 24 2025 22:33:36 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:33:36 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_employee` (`id`, `name`, `phone`, `role_id`, `user_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `description`) VALUES (18, '娴嬭瘯鍛樺伐', '13800000001', 'ADMIN', 120, 1, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 0, '绯荤粺娴嬭瘯鍛樺伐璐﹀彿');
 
 -- ----------------------------
 -- Table structure for t_employee_role
@@ -207,7 +261,14 @@
   `introduction` text COMMENT '涓汉浠嬬粛',
   PRIMARY KEY (`id`) USING BTREE,
   UNIQUE KEY `phone` (`phone`) USING BTREE
-) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_judge
+-- ----------------------------
+INSERT INTO `t_judge` (`id`, `name`, `user_id`, `phone`, `gender`, `state`, `role_id`, `description`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `title`, `company`, `introduction`) VALUES (65, '寮犱笁', NULL, '13800138000', 1, 1, NULL, '鎷ユ湁10骞翠互涓婄殑鎶�鏈紑鍙戠粡楠岋紝涓撴敞浜庝簯璁$畻鍜屽ぇ鏁版嵁棰嗗煙銆�', 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0, NULL, NULL, NULL);
+INSERT INTO `t_judge` (`id`, `name`, `user_id`, `phone`, `gender`, `state`, `role_id`, `description`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `title`, `company`, `introduction`) VALUES (66, '鐜嬩簲', 123, '13940833', 1, 1, NULL, '楂樼骇鎶�鏈笓瀹讹紝鎷ユ湁涓板瘜鐨勮涓氱粡楠�', 'Mon Sep 29 2025 18:49:01 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:49:01 GMT+0800 (GMT+08:00)', NULL, 1, NULL, NULL, NULL);
+INSERT INTO `t_judge` (`id`, `name`, `user_id`, `phone`, `gender`, `state`, `role_id`, `description`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `title`, `company`, `introduction`) VALUES (68, 'UK2026', 2, '13981970816', 1, 1, NULL, '绯荤粺鑷姩鍒涘缓鐨勮瘎濮�', 'Tue Sep 30 2025 10:46:11 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 10:46:11 GMT+0800 (GMT+08:00)', NULL, 0, NULL, NULL, NULL);
 
 -- ----------------------------
 -- Table structure for t_judge_tag
@@ -226,6 +287,15 @@
   PRIMARY KEY (`id`) USING BTREE,
   KEY `fk_t_judge_major_tag` (`tag_id`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=97 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_judge_tag
+-- ----------------------------
+INSERT INTO `t_judge_tag` (`id`, `judge_id`, `tag_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (92, 65, 29, 1, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_judge_tag` (`id`, `judge_id`, `tag_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (93, 65, 30, 1, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_judge_tag` (`id`, `judge_id`, `tag_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (94, 65, 31, 1, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_judge_tag` (`id`, `judge_id`, `tag_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (95, 66, 9, 1, 'Mon Sep 29 2025 18:49:00 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:49:00 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_judge_tag` (`id`, `judge_id`, `tag_id`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (96, 66, 8, 1, 'Mon Sep 29 2025 18:49:00 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:49:00 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_media
@@ -251,7 +321,24 @@
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE,
   KEY `uq_type_id` (`target_type`,`target_id`)
-) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_media
+-- ----------------------------
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (112, 'judge_avatar.jpg', 1, 65, 1, 'avatars/judge_avatar_1759142940287.jpg', NULL, 'jpg', 1024, NULL, NULL, 1, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (113, 'logo.jpg', 1, 66, 1, '20250929/b5840d47-b046-4461-9d78-27881c917f03.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 29 2025 18:49:02 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:49:02 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (114, 'a1.png', 2, 73, 1, '20250929/bc8be85a-c0d9-4d75-885e-cb19d613e00f.png', NULL, 'png', 3628657, NULL, NULL, 1, 'Mon Sep 29 2025 19:16:11 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 19:16:11 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (115, 'bug1.png', 2, 73, 1, '20250929/23aee0a8-dc1e-4ec5-b4a6-2b80370940cb.png', NULL, 'png', 84959, NULL, NULL, 1, 'Mon Sep 29 2025 19:16:11 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 19:16:11 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (116, 'mg665p1c-h3pighsw-6rguef2u-byme.jpg', 7, 2, 1, 'avatars/20250930/mg665p1c-h3pighsw-6rguef2u-byme.jpg', NULL, 'jpg', 3624223, NULL, NULL, 1, 'Tue Sep 30 2025 09:08:55 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:21:09 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (117, 'mg5v06il-rei95zgu-f9okwt82-iruh.png', 5, 51, 1, 'attachments/20250930/mg5v06il-rei95zgu-f9okwt82-iruh.png', NULL, 'png', 93686, NULL, NULL, 1, 'Tue Sep 30 2025 09:08:55 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 09:08:55 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (118, 'test-avatar.jpg', 7, 1, 1, 'avatars/test-avatar.jpg', NULL, 'jpg', 50000, NULL, NULL, 1, 'Tue Sep 30 2025 09:32:13 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 09:32:13 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (119, 'avatar.jpg', 7, 54, 1, '116', NULL, 'jpg', 0, NULL, NULL, 1, 'Tue Sep 30 2025 10:02:21 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 10:02:21 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (120, 'bug2.png', 2, 6, 1, '20250930/21d5b84e-5d99-4b0f-9fca-c93c92c46652.png', NULL, 'png', 93686, NULL, NULL, 1, 'Tue Sep 30 2025 12:32:23 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:32:23 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (121, 'mg665q2v-a6tikk1u-llgcqsw4-j4ek.jpg', 5, 1, 1, 'attachments/20250930/mg665q2v-a6tikk1u-llgcqsw4-j4ek.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Tue Sep 30 2025 14:21:10 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:21:10 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (122, 'mg665q2v-a6tikk1u-llgcqsw4-j4ek.jpg', 5, 2, 1, 'attachments/20250930/mg665q2v-a6tikk1u-llgcqsw4-j4ek.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Tue Sep 30 2025 17:29:13 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 17:29:13 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (123, 'a2.png', 4, 1, 1, '20250930/3fbde670-1b38-4e8b-bd50-1f81718f7466.png', NULL, 'png', 5013816, NULL, NULL, 1, 'Tue Sep 30 2025 17:34:26 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 17:34:26 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (124, 'logo.jpg', 4, 2, 1, '20250930/78b0e032-197c-4f69-b531-968e12a0a0e1.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Tue Sep 30 2025 17:34:37 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 17:34:37 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_media_backup_avatar_migration
@@ -278,15 +365,47 @@
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
 
 -- ----------------------------
+-- Records of t_media_backup_avatar_migration
+-- ----------------------------
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 'logo.jpg', 1, 0, 1, 'avatars/logo_test.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:24:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:24:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 'logo.jpg', 1, 0, 1, 'avatars/logo_test.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:25:35 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:25:35 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, 'logo.jpg', 1, 0, 1, 'avatars/logo_test.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:26:41 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:26:41 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, 'logo.jpg', 1, 0, 1, 'avatars/logo_test.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:27:29 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:27:29 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (17, 'logo.jpg', 1, 0, 1, '20250922/221c144a-15da-41ae-9fe2-1721b740e3bd.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 15:39:10 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 15:39:10 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 'judge_avatar.jpg', 1, 21, 1, 'avatars/judge_avatar_1758458288387.jpg', NULL, 'jpg', 1024, NULL, NULL, 1, 'Sun Sep 21 2025 20:38:06 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 10:57:45 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (22, 'C1.jpg', 1, 21, 1, '20250923/5b3b8556-3096-4c5b-a391-d6ec0b7a1dca.jpg', NULL, 'jpg', 456547, NULL, NULL, 1, 'Tue Sep 23 2025 08:57:55 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 08:57:55 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 'logo.jpg', 1, 22, 1, 'avatars/logo_1758464410213.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:20:08 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 10:57:46 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, 'logo.jpg', 1, 27, 1, 'avatars/judge_1758465900493_logo.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:45:01 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:45:01 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, 'logo.jpg', 1, 28, 1, 'avatars/judge_1758465960096_logo.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:46:00 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:46:00 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, 'logo.jpg', 1, 29, 1, 'avatars/judge_1758466031697_logo.jpg', NULL, 'jpg', 2048, NULL, NULL, 1, 'Sun Sep 21 2025 22:47:12 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:47:12 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (10, 'logo.jpg', 1, 30, 1, '20250921/6ab1ca46-eb4f-46c2-a065-495eb7aaf81b.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Sun Sep 21 2025 22:57:06 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 22:57:06 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (11, 'judge_avatar_36', 1, 36, 1, 'https://ryc-1256886520.cos.ap-chengdu.myqcloud.com/20250922/cff3c319-36d3-4969-ad66-7c9c02d6a642.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 09:24:18 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 09:24:18 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (12, 'a.png', 1, 37, 1, '20250922/f53c4de4-f286-47bd-9849-6fc610d2a3a3.png', NULL, 'png', 2041024, NULL, NULL, 1, 'Mon Sep 22 2025 09:34:22 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 09:34:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (13, 'logo.jpg', 1, 38, 1, '20250922/d11d9137-88c0-40c8-b0ed-c75c19188129.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 13:12:23 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 13:12:23 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (14, 'logo.jpg', 1, 39, 1, '20250922/ac760a7a-4105-4b32-922e-39da3c7032a8.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 13:16:44 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 13:16:44 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (15, 'logo.jpg', 1, 40, 1, '20250922/2e4717e4-67fd-4caa-b281-17d86053a274.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 13:47:20 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 13:47:20 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (16, 'logo.jpg', 1, 41, 1, '20250922/59a406d7-4123-4ac3-b157-184c987e4368.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Mon Sep 22 2025 15:33:37 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 22 2025 15:33:37 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (37, 'avatar.jpg', 1, 41, 1, 'avatar_1759035802271', NULL, 'jpg', 0, NULL, NULL, 1, 'Sun Sep 28 2025 13:03:22 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 13:03:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (23, 'a2.png', 1, 42, 1, '20250923/bcadfa95-5a30-493b-b819-befd8695063b.png', NULL, 'png', 65846, NULL, NULL, 1, 'Tue Sep 23 2025 10:39:27 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 10:39:27 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (40, 'avatar.jpg', 1, 42, 1, 'test-avatar-media-id-1759035864664', NULL, 'jpg', 0, NULL, NULL, 1, 'Sun Sep 28 2025 13:04:25 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 13:04:25 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (27, 'a.png', 1, 43, 1, '20250923/d54f92f2-2dd8-475a-b766-b4d0ee473b99.png', NULL, 'png', 2041024, NULL, NULL, 1, 'Tue Sep 23 2025 17:45:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 17:45:32 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (28, '寰俊鍥剧墖_20250831200430_16_48.png', 1, 44, 1, '20250924/11903ee1-d0ff-4299-996f-c1851c70f8e1.png', NULL, 'png', 162478, NULL, NULL, 1, 'Wed Sep 24 2025 10:10:44 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 10:10:44 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (29, 'logo.jpg', 1, 45, 1, '20250924/cca43df6-1f69-4ade-86d1-9021156fa1f6.jpg', NULL, 'jpg', 67671, NULL, NULL, 1, 'Wed Sep 24 2025 13:40:04 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 13:40:04 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (31, '寰俊鍥剧墖_20250831200430_16_48.png', 1, 46, 1, '20250924/6706fc1d-c8e8-4eae-bbc7-be992cc59bd5.png', NULL, 'png', 162478, NULL, NULL, 1, 'Wed Sep 24 2025 18:49:44 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 18:49:44 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (32, '寰俊鍥剧墖_20250831200430_16_48.png', 1, 47, 1, '20250924/b17c8097-ff10-43b2-b544-0b205e4f23d4.png', NULL, 'png', 162478, NULL, NULL, 1, 'Wed Sep 24 2025 18:59:31 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 18:59:31 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (33, '寰俊鍥剧墖_20250831200430_16_48.png', 1, 48, 1, '20250924/b6378b03-29a4-4c0d-930f-cfbe072f4de6.png', NULL, 'png', 162478, NULL, NULL, 1, 'Wed Sep 24 2025 19:12:16 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 19:12:16 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_media_backup_avatar_migration` (`id`, `name`, `target_type`, `target_id`, `media_type`, `path`, `thumb_path`, `file_ext`, `file_size`, `duration`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (34, '寰俊鍥剧墖_20250831200430_16_48.png', 1, 49, 1, '20250924/cceb4e5f-d022-43b6-9dbc-b5c81fd4dcdc.png', NULL, 'png', 162478, NULL, NULL, 1, 'Wed Sep 24 2025 19:36:52 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 19:36:52 GMT+0800 (GMT+08:00)', NULL, 0);
+
+-- ----------------------------
 -- Table structure for t_msg
 -- ----------------------------
 DROP TABLE IF EXISTS `t_msg`;
 CREATE TABLE `t_msg` (
-  `id` int NOT NULL AUTO_INCREMENT,
+  `id` bigint NOT NULL AUTO_INCREMENT,
   `target_type` int NOT NULL,
-  `target_id` int NOT NULL,
-  `player_id` int NOT NULL,
-  `user_id` int NOT NULL,
+  `target_id` bigint NOT NULL,
+  `player_id` bigint NOT NULL,
+  `user_id` bigint NOT NULL,
   `content` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
   `template_content` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL,
   `wx_msg_success` bit(1) NOT NULL,
@@ -346,12 +465,21 @@
 ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
 
 -- ----------------------------
+-- Records of t_permission
+-- ----------------------------
+INSERT INTO `t_permission` (`id`, `code`, `name`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, 'SYSTEM_USER_MANAGE', 'User Management', 'SYSTEM', 'Manage platform users and roles', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 17:00:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_permission` (`id`, `code`, `name`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (10, 'PLAYER_AUDIT', 'Player Audit', 'PLAYER', 'Review player registrations', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 17:00:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_permission` (`id`, `code`, `name`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (11, 'JUDGE_MANAGE', 'Judge Management', 'JUDGE', 'Maintain judge information', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 17:00:22 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_permission` (`id`, `code`, `name`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (12, 'ACTIVITY_MANAGE', 'Activity Management', 'ACTIVITY', 'Maintain activities and stage configuration', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 17:00:22 GMT+0800 (GMT+08:00)', NULL, 0);
+
+-- ----------------------------
 -- Table structure for t_player
 -- ----------------------------
 DROP TABLE IF EXISTS `t_player`;
 CREATE TABLE `t_player` (
   `id` bigint NOT NULL AUTO_INCREMENT,
   `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
+  `user_id` bigint NOT NULL,
   `phone` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
   `role_id` bigint NOT NULL,
   `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
@@ -366,10 +494,14 @@
   `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
   `update_user_id` bigint DEFAULT NULL,
   `version` bigint NOT NULL DEFAULT '0',
-  `user_id` bigint NOT NULL,
   PRIMARY KEY (`id`) USING BTREE,
   UNIQUE KEY `phone` (`phone`) USING BTREE
-) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_player
+-- ----------------------------
+INSERT INTO `t_player` (`id`, `name`, `user_id`, `phone`, `role_id`, `description`, `gender`, `education`, `introduction`, `reject_reason`, `final_score`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 'UK2025', 2, '13981970816', 1, NULL, 0, '鏈', '', NULL, NULL, 1, 'Tue Sep 30 2025 14:21:08 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:21:08 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_rating_item
@@ -392,6 +524,20 @@
 ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
 
 -- ----------------------------
+-- Records of t_rating_item
+-- ----------------------------
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 1, '浠g爜璐ㄩ噺', 30, 1, 1, 'Mon Sep 22 2025 10:30:56 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:58:48 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 1, '鍔熻兘瀹屾暣鎬�', 25, 2, 1, 'Mon Sep 22 2025 10:30:56 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:58:48 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 1, '鐢ㄦ埛浣撻獙', 20, 3, 1, 'Mon Sep 22 2025 10:30:56 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:58:48 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 1, '鍒涙柊鎬�', 15, 4, 1, 'Tue Sep 23 2025 22:45:06 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:58:48 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, 1, '椤圭洰灞曠ず', 10, 5, 1, 'Tue Sep 23 2025 22:45:06 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:58:48 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, 6, '??', 100, 1, 1, 'Sat Sep 27 2025 10:05:44 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 10:05:44 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (10, 8, '鍒涙剰', 15, 1, 1, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (11, 8, '鍥㈤槦', 20, 1, 1, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (12, 8, '璧勯噾', 10, 1, 1, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_item` (`id`, `scheme_id`, `name`, `max_score`, `order_no`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (13, 8, '鍙鎬�', 15, 1, 1, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 0);
+
+-- ----------------------------
 -- Table structure for t_rating_scheme
 -- ----------------------------
 DROP TABLE IF EXISTS `t_rating_scheme`;
@@ -407,6 +553,17 @@
   `version` bigint NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_rating_scheme
+-- ----------------------------
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, '缂栫▼澶ц禌璇勫垎鏍囧噯', '鐢ㄤ簬缂栫▼姣旇禌鐨勭患鍚堣瘎鍒嗘爣鍑嗭紝鍖呭惈浠g爜璐ㄩ噺銆佸姛鑳藉畬鏁存�с�佺敤鎴蜂綋楠屻�佸垱鏂版�у拰椤圭洰灞曠ず绛夌淮搴�', 1, 'Sat Sep 20 2025 20:11:58 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 16:57:37 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, '鎶�鑳芥瘮璧涜瘎鍒嗘ā鏉�', '涓撻棬鐢ㄤ簬鎶�鑳界被姣旇禌鐨勮瘎鍒嗘ā鏉�', 0, 'Sat Sep 20 2025 20:11:58 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:37:19 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, '2025', '椤堕《椤堕《', 0, 'Mon Sep 22 2025 10:30:56 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:37:17 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, '2025-1', '4鍛冨憙鍛冨憙', 0, 'Tue Sep 23 2025 22:45:06 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:37:15 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, '??????', '?????????', 0, 'Wed Sep 24 2025 12:59:43 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:37:10 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, '??????', '???????', 0, 'Sat Sep 27 2025 10:05:44 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:37:07 GMT+0800 (GMT+08:00)', NULL, 1);
+INSERT INTO `t_rating_scheme` (`id`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, '2025鍒涗笟姣旇禌', '2025鍒涗笟姣旇禌', 1, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 21:03:14 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_region
@@ -431,6 +588,39 @@
 ) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
 
 -- ----------------------------
+-- Records of t_region
+-- ----------------------------
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 0, '鍥涘窛鐪�', NULL, 1, 0, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 0, '閲嶅簡甯�', NULL, 1, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:39:15 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 1, '鎴愰兘甯�', NULL, 2, 0, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 1, '鐪夊北甯�', NULL, 2, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:39:18 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, 1, '寰烽槼甯�', NULL, 2, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:39:19 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, 3, '澶╁簻鏂板尯', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, 3, '涓滈儴鏂板尯', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, 3, '楂樻柊', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, 3, '閿︽睙', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (10, 3, '闈掔緤', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (11, 3, '閲戠墰', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (12, 3, '姝︿警', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (13, 3, '鎴愬崕', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (14, 3, '榫欐硥', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (15, 3, '闈掔櫧姹�', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (16, 3, '鏂伴兘', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (17, 3, '娓╂睙', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (18, 3, '鍙屾祦', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (19, 3, '閮兘', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (20, 3, '绠�闃�', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (21, 3, '閮芥睙鍫�', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (22, 3, '褰窞', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (23, 3, '閭涘磧', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (24, 3, '宕囧窞', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (25, 3, '閲戝爞', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (26, 3, '鏂版触', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (27, 3, '澶ч倯', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (28, 3, '钂叉睙', NULL, 3, 1, NULL, 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 11:38:28 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_region` (`id`, `pid`, `name`, `code`, `level`, `leaf_flag`, `full_path`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (29, 1, '璧勯槼', NULL, 2, 1, NULL, 1, 'Tue Sep 23 2025 19:14:08 GMT+0800 (GMT+08:00)', 1, 'Tue Sep 23 2025 19:14:08 GMT+0800 (GMT+08:00)', 1, 0);
+
+-- ----------------------------
 -- Table structure for t_role
 -- ----------------------------
 DROP TABLE IF EXISTS `t_role`;
@@ -451,6 +641,14 @@
 ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
 
 -- ----------------------------
+-- Records of t_role
+-- ----------------------------
+INSERT INTO `t_role` (`id`, `code`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, 'SUPER_ADMIN', '瓒呯骇绠$悊鍛�', 'Full system privileges', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', 1, 'Wed Sep 24 2025 14:58:43 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_role` (`id`, `code`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, 'AUDITOR', '骞冲彴宸ヤ綔浜哄憳', 'Review player applications', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', 1, 'Wed Sep 24 2025 15:05:53 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_role` (`id`, `code`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, 'JUDGE_MANAGER', '璇勫', 'Manage judges and competition stages', 1, 'Fri Sep 19 2025 16:51:12 GMT+0800 (GMT+08:00)', 1, 'Wed Sep 24 2025 14:58:42 GMT+0800 (GMT+08:00)', 1, 0);
+INSERT INTO `t_role` (`id`, `code`, `name`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (19, 'PLAYER', '鍙傝禌浜哄憳', '鍙傝禌浜哄憳', 1, 'Wed Sep 24 2025 14:58:36 GMT+0800 (GMT+08:00)', 1, 'Wed Sep 24 2025 14:58:36 GMT+0800 (GMT+08:00)', 1, 1);
+
+-- ----------------------------
 -- Table structure for t_role_permission
 -- ----------------------------
 DROP TABLE IF EXISTS `t_role_permission`;
@@ -466,6 +664,17 @@
   PRIMARY KEY (`id`) USING BTREE,
   KEY `fk_t_role_permission_perm` (`permission_id`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_role_permission
+-- ----------------------------
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, 7, 9, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, 7, 10, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, 7, 11, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, 7, 12, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, 8, 10, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, 9, 11, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_role_permission` (`id`, `role_id`, `permission_id`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, 9, 12, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 'Fri Sep 19 2025 20:32:43 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_tag
@@ -487,6 +696,33 @@
   UNIQUE KEY `code` (`code`) USING BTREE,
   KEY `idx_t_tag_category` (`category`) USING BTREE
 ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_tag
+-- ----------------------------
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (1, '鐢�', 'male', 'gender', '鐢锋��', 1, 'Sat Sep 20 2025 15:54:26 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 08:59:09 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (2, '濂�', 'female', 'gender', '濂虫��', 1, 'Sat Sep 20 2025 15:54:27 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:55 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (3, '楂樹腑', 'high_school', 'education', '楂樹腑瀛﹀巻', 1, 'Sat Sep 20 2025 15:54:27 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:56 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (4, '澶т笓', 'junior_college', 'education', '澶т笓瀛﹀巻', 1, 'Sat Sep 20 2025 15:54:27 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:56 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (5, '鏈', 'bachelor', 'education', '鏈瀛﹀巻', 1, 'Sat Sep 20 2025 15:54:27 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:56 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (6, '纭曞+', 'master', 'education', '纭曞+瀛﹀巻', 1, 'Sat Sep 20 2025 15:54:28 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:56 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (7, '鍗氬+', 'doctorate', 'education', '鍗氬+瀛﹀巻', 1, 'Sat Sep 20 2025 15:54:28 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:07:56 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (8, '閫氳', 'communication', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (9, '闆跺敭', 'retail', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (10, '椁愰ギ', 'catering', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (11, '寤虹瓚', 'architecture', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (12, '鏈嶈', 'clothing', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (13, '璁$畻鏈�', 'computer', 'major', NULL, 1, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 09:03:51 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (14, '璁捐', 'design', 'major', '璁捐绫讳笓涓�', 1, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (15, '缂栫▼', 'programming', 'major', '缂栫▼/杞欢寮�鍙�', 1, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (16, '甯傚満', 'marketing', 'major', '甯傚満/鍝佺墝', 1, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 10:28:57 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (17, '閲戣瀺', 'finance', 'major', '閲戣瀺/璐㈠姟', 1, 'Sun Sep 21 2025 10:28:58 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 10:28:58 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (18, '绠$悊', 'management', 'major', '绠$悊/杩愯惀', 1, 'Sun Sep 21 2025 10:28:58 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 10:28:58 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (27, 'Java寮�鍙�', 'java', 'major', NULL, 1, 'Sun Sep 21 2025 20:17:23 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 20:17:23 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (28, '鍓嶇寮�鍙�', 'frontend', 'major', NULL, 1, 'Sun Sep 21 2025 20:17:23 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 20:17:23 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (29, '浜戣绠�', '浜戣绠�', '鎶�鏈�', NULL, 1, 'Sun Sep 21 2025 20:38:06 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 20:38:06 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (30, '澶ф暟鎹�', '澶ф暟鎹�', '鎶�鏈�', NULL, 1, 'Sun Sep 21 2025 20:38:07 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 20:38:07 GMT+0800 (GMT+08:00)', NULL, 0);
+INSERT INTO `t_tag` (`id`, `name`, `code`, `category`, `description`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`) VALUES (31, '鏋舵瀯璁捐', '鏋舵瀯璁捐', '鎶�鏈�', NULL, 1, 'Sun Sep 21 2025 20:38:07 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 21 2025 20:38:07 GMT+0800 (GMT+08:00)', NULL, 0);
 
 -- ----------------------------
 -- Table structure for t_user
@@ -512,7 +748,84 @@
   PRIMARY KEY (`id`) USING BTREE,
   UNIQUE KEY `uq_wx_open_id` (`wx_openid`) USING BTREE,
   UNIQUE KEY `uq_phone` (`phone`)
-) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- ----------------------------
+-- Records of t_user
+-- ----------------------------
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (2, 'UK2025', NULL, '13981970816', 'Tue Sep 30 2025 00:00:00 GMT+0800 (GMT+08:00)', 'test_admin_openid_123456', 'test_admin_unionid_123456', NULL, '$2a$10$hqbLL9GW5hG/MCehHt3E4evtNLxMil8vyj46vNulVwVaXLsHQVFvK', 1, 'Sat Sep 20 2025 18:49:14 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 14:21:08 GMT+0800 (GMT+08:00)', NULL, 13, '13800138000');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (3, '鎵归噺鐢ㄦ埛1', NULL, NULL, NULL, 'wx_openid_batch_1', 'wx_unionid_batch_1', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010001');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (4, '鎵归噺鐢ㄦ埛2', NULL, NULL, NULL, 'wx_openid_batch_2', 'wx_unionid_batch_2', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010002');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (5, '鎵归噺鐢ㄦ埛3', NULL, NULL, NULL, 'wx_openid_batch_3', 'wx_unionid_batch_3', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010003');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (6, '鎵归噺鐢ㄦ埛4', NULL, NULL, NULL, 'wx_openid_batch_4', 'wx_unionid_batch_4', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010004');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (7, '鎵归噺鐢ㄦ埛5', NULL, NULL, NULL, 'wx_openid_batch_5', 'wx_unionid_batch_5', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010005');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (8, '鎵归噺鐢ㄦ埛6', NULL, NULL, NULL, 'wx_openid_batch_6', 'wx_unionid_batch_6', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010006');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (9, '鎵归噺鐢ㄦ埛7', NULL, NULL, NULL, 'wx_openid_batch_7', 'wx_unionid_batch_7', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010007');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (10, '鎵归噺鐢ㄦ埛8', NULL, NULL, NULL, 'wx_openid_batch_8', 'wx_unionid_batch_8', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010008');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (11, '鎵归噺鐢ㄦ埛9', NULL, NULL, NULL, 'wx_openid_batch_9', 'wx_unionid_batch_9', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010009');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (12, '鎵归噺鐢ㄦ埛10', NULL, NULL, NULL, 'wx_openid_batch_10', 'wx_unionid_batch_10', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010010');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (13, '鎵归噺鐢ㄦ埛11', NULL, NULL, NULL, 'wx_openid_batch_11', 'wx_unionid_batch_11', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010011');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (14, '鎵归噺鐢ㄦ埛12', NULL, NULL, NULL, 'wx_openid_batch_12', 'wx_unionid_batch_12', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010012');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (15, '鎵归噺鐢ㄦ埛13', NULL, NULL, NULL, 'wx_openid_batch_13', 'wx_unionid_batch_13', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010013');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (16, '鎵归噺鐢ㄦ埛14', NULL, NULL, NULL, 'wx_openid_batch_14', 'wx_unionid_batch_14', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010014');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (17, '鎵归噺鐢ㄦ埛15', NULL, NULL, NULL, 'wx_openid_batch_15', 'wx_unionid_batch_15', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010015');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (18, '鎵归噺鐢ㄦ埛16', NULL, NULL, NULL, 'wx_openid_batch_16', 'wx_unionid_batch_16', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010016');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (19, '鎵归噺鐢ㄦ埛17', NULL, NULL, NULL, 'wx_openid_batch_17', 'wx_unionid_batch_17', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010017');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (20, '鎵归噺鐢ㄦ埛18', NULL, NULL, NULL, 'wx_openid_batch_18', 'wx_unionid_batch_18', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010018');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (21, '鎵归噺鐢ㄦ埛19', NULL, NULL, NULL, 'wx_openid_batch_19', 'wx_unionid_batch_19', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010019');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (22, '鎵归噺鐢ㄦ埛20', NULL, NULL, NULL, 'wx_openid_batch_20', 'wx_unionid_batch_20', NULL, NULL, 1, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 23 2025 19:39:32 GMT+0800 (GMT+08:00)', NULL, 0, '13800010020');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (23, 'abc', NULL, '13412341234', NULL, NULL, NULL, NULL, NULL, 1, 'Wed Sep 24 2025 18:49:44 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 18:49:44 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (24, 'owen2', NULL, '13512351233', NULL, NULL, NULL, NULL, '$2a$10$8Kxiwl7Y6ZPBbcXvVnAcse5nKFiEv4PwfSjTcfvST73OeWlxOh1fO', 1, 'Wed Sep 24 2025 18:59:30 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 20:58:22 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (25, 'charon', NULL, '13312341231', NULL, NULL, NULL, NULL, '$2a$10$sCG7ZH8r7K1uuXVtILRAO.AHZ8ICf/RhaVLKYquL9zn59M8JOXJJ6', 1, 'Wed Sep 24 2025 19:12:15 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 19:12:15 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (26, '骞呭害杈惧埌', NULL, '13612341233', NULL, NULL, NULL, NULL, '$2a$10$Kni9VyfMaDfPPSKqBFsXSOx42xjHuYIl5m.TzCWc2.qSNGiZwTc4i', 1, 'Wed Sep 24 2025 19:36:52 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 19:36:52 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (29, '澶氳鑹叉祴璇曠敤鎴�', NULL, NULL, NULL, 'test_multi_role_openid', 'test_multi_role_unionid', NULL, '$2a$10$iYNVWrYeTv3zd921sWkuGO5iqlaO8W03U0.N5d/LQUTcbq2PGzGd.', 1, 'Wed Sep 24 2025 21:08:16 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 21:08:16 GMT+0800 (GMT+08:00)', NULL, 0, '13800000003');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (32, '娴嬭瘯鍛樺伐Service', NULL, '13900000003', NULL, NULL, NULL, NULL, '$2a$10$HeGs60KbbI94jNjgx81BOeextvSPcIjSxfnGhk1aH9SwznJannnem', 1, 'Wed Sep 24 2025 22:26:40 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:26:40 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (33, '?????GraphQL', NULL, '13900000004', NULL, NULL, NULL, NULL, '$2a$10$gkpg6pLmJ1LqLao8JAToserhGcFY92jq07PKyTn8N.pSzhedOaj0G', 1, 'Wed Sep 24 2025 22:26:50 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:26:50 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (34, '?????GraphQL2', NULL, '13900000005', NULL, NULL, NULL, NULL, '$2a$10$lugKOumFCa32vFPYhFl2O.M0rdDPbJjUE0T0bOQEDZS5LyT88sacy', 1, 'Wed Sep 24 2025 22:27:01 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:27:01 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (35, 'uK', NULL, '13412341222', NULL, NULL, NULL, NULL, '$2a$10$pHtlOvXum0.wqzRkJ3gxte38JpAmUCuLQKw.HfWeUf9HfcZ0vzIpS', 1, 'Wed Sep 24 2025 22:29:32 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:29:32 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (36, 'Test Employee Edit - Modified', NULL, '13900000010', NULL, NULL, NULL, NULL, '$2a$10$mlnfm/AhpxypAjN8fknLmuBvNdA7mRZyzZ5fwKsd9uQh.0cydCEsm', 1, 'Wed Sep 24 2025 22:31:42 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:31:43 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (37, 'Test', NULL, '13900000011', NULL, NULL, NULL, NULL, '$2a$10$7Cw66wTO3WoW7LAFGHQV8OnYeqH4iPkueCasFQQ9ID9bFaxUcvFTu', 1, 'Wed Sep 24 2025 22:33:36 GMT+0800 (GMT+08:00)', NULL, 'Wed Sep 24 2025 22:33:36 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (53, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test123', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:27:11 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:27:11 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (54, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_123', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:34:26 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:34:26 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (55, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_456', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:38:13 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:38:13 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (56, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_789', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:38:25 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:38:25 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (57, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758811212038', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (58, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758811212020', NULL, NULL, NULL, 1, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', NULL, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (59, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, NULL, NULL, 1, 'Sat Sep 27 2025 18:39:45 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 18:39:45 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (60, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758970258618', 'test_unionid_1758970258619', NULL, NULL, 1, 'Sat Sep 27 2025 18:50:59 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 18:50:59 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (61, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758970297509', 'test_unionid_1758970297509', NULL, NULL, 1, 'Sat Sep 27 2025 18:51:38 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 18:51:38 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (62, '????', NULL, '13800138000', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$sZzYN1pAIGLq.tVet/Uc/OzC/BtALqXSZYvDtKpNKcPmqruJAb94S', 1, 'Sat Sep 27 2025 20:13:34 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 12:04:18 GMT+0800 (GMT+08:00)', NULL, 3, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (63, '鏉庡洓', NULL, '13900139000', 'Thu Aug 20 1992 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$108TYjAB1.BQK.px681x3uWAxGkA/HyCkQdGBo42l4yXp0l2mIyiC', 1, 'Sat Sep 27 2025 20:14:52 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 20:14:52 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (64, '娴嬭瘯鐢ㄦ埛', NULL, '13912345678', 'Sun Aug 20 1995 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$sAzK1YVEWuLEqYV/VLoFL.qAB42LHcZ0N76mqyUmCUm2TZLJSLZsK', 1, 'Sat Sep 27 2025 21:09:53 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 19:10:34 GMT+0800 (GMT+08:00)', NULL, 3, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (65, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758984255561', 'test_unionid_1758984255561', NULL, NULL, 1, 'Sat Sep 27 2025 22:44:16 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 22:44:16 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (66, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1758984267938', 'test_unionid_1758984267938', NULL, NULL, 1, 'Sat Sep 27 2025 22:44:28 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 22:44:28 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (68, '?????', NULL, '13987654321', 'Wed May 15 1996 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$En4tLSMGb6ABLxoeM/p5wOMoX5mYF83sXYRvxJBO4vstkWbCbInVG', 1, 'Sat Sep 27 2025 22:51:50 GMT+0800 (GMT+08:00)', NULL, 'Sat Sep 27 2025 22:51:50 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (69, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1759021536834', 'test_unionid_1759021536834', NULL, NULL, 1, 'Sun Sep 28 2025 09:05:37 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 09:05:37 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (70, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1759021805903', 'test_unionid_1759021805903', NULL, NULL, 1, 'Sun Sep 28 2025 09:10:06 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 09:10:06 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (71, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1759021932665', 'test_unionid_1759021932665', NULL, NULL, 1, 'Sun Sep 28 2025 09:12:13 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 09:12:13 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (72, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1759022073544', 'test_unionid_1759022073544', NULL, NULL, 1, 'Sun Sep 28 2025 09:14:34 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 09:14:34 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (73, '寰俊鐢ㄦ埛', NULL, NULL, NULL, 'test_openid_1759022567421', 'test_unionid_1759022567421', NULL, NULL, 1, 'Sun Sep 28 2025 09:22:48 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 09:22:48 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (76, '娴嬭瘯鐢ㄦ埛1759035802271', NULL, '13800002271', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$QVupV.yQijdfO908O1h40.4vmn/UNoY.uQEXD.3.lCAUTYiokv1Te', 1, 'Sun Sep 28 2025 13:03:22 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 13:03:23 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (77, '濯掍綋API娴嬭瘯鐢ㄦ埛', NULL, '13900139664', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$XU/4t7yhmbkyqar2alZGo.Tmns8YFDUr0xZPUtnuHbn3lud0vh.e.', 1, 'Sun Sep 28 2025 13:04:25 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 13:04:25 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (78, '娴嬭瘯鐢ㄦ埛_debug', NULL, '13900000001', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$a2hjbdq2pXvVVaRZmyT9H.GcZh3ZudqFt6T8SXbX4KhxSVl8gbHaa', 1, 'Sun Sep 28 2025 20:32:26 GMT+0800 (GMT+08:00)', NULL, 'Sun Sep 28 2025 20:32:26 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (79, '娴嬭瘯鐢ㄦ埛1759105017981', NULL, '13800002981', NULL, NULL, NULL, NULL, '$2a$10$DG4vQhQrWrl0Z/kZay0em.zdaImk/PExo5MJfC.sC0VD/.idgWDM.', 1, 'Mon Sep 29 2025 08:16:58 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:16:58 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (80, '娴嬭瘯鐢ㄦ埛1759105041943', NULL, '13800009830', NULL, NULL, NULL, NULL, '$2a$10$j5H0cenFHPxhlIinfSj1h.SjLx8svBkLB/RuGtokDHMJ6HN5jrFsK', 1, 'Mon Sep 29 2025 08:17:22 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:17:22 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (81, '娴嬭瘯鐢ㄦ埛1759106607579', NULL, '13800007579', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$BKmORxmhEa9Thqkp0fUxXegMICGZW1pNZfPDlAKn.A3PHvi9AjxiS', 1, 'Mon Sep 29 2025 08:43:28 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:43:28 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (82, '娴嬭瘯鐢ㄦ埛1759106643010', NULL, '13800003010', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$1TK8ysLXx4akCfkirhmR1.iZltlbC2X/BeoOTNVyNidopKP4zMteK', 1, 'Mon Sep 29 2025 08:44:03 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:44:03 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (83, '娴嬭瘯鐢ㄦ埛1759106697474', NULL, '13800007474', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$3b71dtTccI9J9iZZSAuZY.7KhG3Bj9fcRJuxQwQigsWI.wF6B4Oce', 1, 'Mon Sep 29 2025 08:44:58 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:44:58 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (84, '娴嬭瘯鐢ㄦ埛1759106720525', NULL, '13800000525', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$36IfGQhTUGir1L3.IV6ww.RKn.LN3mesEPonypw.H.XXIbdNvGLGe', 1, 'Mon Sep 29 2025 08:45:21 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:45:21 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (85, '娴嬭瘯鐢ㄦ埛1759106746467', NULL, '13800006467', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$QU.9OXlGvo5Ss6MSjZQh4OlrhlUf2z8nWWWrXgiGe3w5vk15.JkBW', 1, 'Mon Sep 29 2025 08:45:47 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:45:47 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (86, '娴嬭瘯鐢ㄦ埛1759107093870', NULL, '13800005495', NULL, NULL, NULL, NULL, '$2a$10$zWfTST3lbbUgubAaV7XUYO/OWvQ4e.aFApb01q8YNx0CYw7jMOS26', 1, 'Mon Sep 29 2025 08:51:34 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:51:34 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (87, '娴嬭瘯鐢ㄦ埛1759107344742', NULL, '13800001738', NULL, NULL, NULL, NULL, '$2a$10$lZNm.t0vN3TiCwAPxlYcGuAm9QO7bnu9KUgmiAsOiALwO6Mr1VFNK', 1, 'Mon Sep 29 2025 08:55:45 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 08:55:45 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (92, '鐜嬩簲', NULL, '13942841107', NULL, NULL, NULL, NULL, '$2a$10$lvyBNyfeAsNoE7Aiq7be8uWHagrcElwPx1ekSAvQL.b1XmNUd3W3u', 1, 'Mon Sep 29 2025 18:47:21 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:47:21 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (93, '鐜嬩簲', NULL, '13945217', NULL, NULL, NULL, NULL, '$2a$10$rhhZlmV6PP8jLx1YsRhJQuQFzzYyCp6CLbNM30WjtVyrVugJYjdlC', 1, 'Mon Sep 29 2025 18:47:25 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:47:25 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (107, '鐜嬩簲', NULL, '13942896875', NULL, NULL, NULL, NULL, '$2a$10$JCFNNlvuxlKkpi3w7U5L..bwSbtjvJM2RKM.hFncH4rdqXzdz1m3q', 1, 'Mon Sep 29 2025 18:48:17 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:17 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (108, '鐜嬩簲', NULL, '13998923', NULL, NULL, NULL, NULL, '$2a$10$aEKM/dOf8c.DsdovVuu7Uu05lMagSbnxFNti4dyOozU2/biudqVf2', 1, 'Mon Sep 29 2025 18:48:19 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:19 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (120, '娴嬭瘯鍛樺伐', NULL, '13800000001', NULL, 'test_employee_openid', 'test_employee_unionid', NULL, '$2a$10$VBHNbQlhM1OnQ8QTLkEVSeXBfLAlD9AJqNjErsYC664SUzMZZxjp.', 1, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 0, '13800000001');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (121, '娴嬭瘯璇勫', NULL, '13800000002', NULL, 'test_judge_openid', 'test_judge_unionid', NULL, '$2a$10$VBHNbQlhM1OnQ8QTLkEVSeXBfLAlD9AJqNjErsYC664SUzMZZxjp.', 1, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:53 GMT+0800 (GMT+08:00)', NULL, 0, '13800000002');
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (122, '鐜嬩簲', NULL, '13942938847', NULL, NULL, NULL, NULL, '$2a$10$3.diloZPEZzq0wdP2jPbIOGL7C93Hs4mR2jhetYayM74txu5wjh5u', 1, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:48:59 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (123, '鐜嬩簲', NULL, '13940833', NULL, NULL, NULL, NULL, '$2a$10$/lZwlcTM9HGFQc/R7e4n7OIH7hlDDwAAZpILuQqPZM/kMP7Uti.9S', 1, 'Mon Sep 29 2025 18:49:01 GMT+0800 (GMT+08:00)', NULL, 'Mon Sep 29 2025 18:49:01 GMT+0800 (GMT+08:00)', NULL, 0, NULL);
+INSERT INTO `t_user` (`id`, `name`, `gender`, `phone`, `birthday`, `wx_openid`, `wx_unionid`, `wx_oa_openid`, `password`, `state`, `create_time`, `create_user_id`, `update_time`, `update_user_id`, `version`, `mobile`) VALUES (133, '??????43', NULL, '13800000043', 'Mon Jan 01 1990 00:00:00 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, '$2a$10$ySx04kGprBjPthzie6GbIesKYPlwM.I.elzWU5GQhD8CujxfHZtoy', 1, 'Tue Sep 30 2025 10:02:21 GMT+0800 (GMT+08:00)', NULL, 'Tue Sep 30 2025 10:02:21 GMT+0800 (GMT+08:00)', NULL, 1, NULL);
 
 -- ----------------------------
 -- Table structure for t_wx_login_record
@@ -543,6 +856,124 @@
   KEY `idx_phone_authorized` (`phone_authorized`),
   KEY `idx_create_user_id` (`create_user_id`),
   KEY `idx_update_user_id` (`update_user_id`)
-) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='寰俊鐧诲綍璁板綍琛�';
+) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='寰俊鐧诲綍璁板綍琛�';
 
-SET FOREIGN_KEY_CHECKS = 1;
+-- ----------------------------
+-- Records of t_wx_login_record
+-- ----------------------------
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (1, 'test_openid_123', NULL, 54, 'Thu Sep 25 2025 22:36:54 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, 0, NULL, 'Thu Sep 25 2025 22:36:54 GMT+0800 (GMT+08:00)', 'Thu Sep 25 2025 22:36:54 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (2, 'test_openid_456', NULL, 55, 'Thu Sep 25 2025 22:38:13 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, 0, NULL, 'Thu Sep 25 2025 22:38:13 GMT+0800 (GMT+08:00)', 'Thu Sep 25 2025 22:38:13 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (3, 'test_openid_789', NULL, 56, 'Thu Sep 25 2025 22:38:26 GMT+0800 (GMT+08:00)', NULL, NULL, NULL, 0, NULL, 'Thu Sep 25 2025 22:38:26 GMT+0800 (GMT+08:00)', 'Thu Sep 25 2025 22:38:26 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (4, 'test_openid_1758811212038', NULL, 57, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', NULL, 0, NULL, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (5, 'test_openid_1758811212020', NULL, 58, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', NULL, 0, NULL, 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', 'Thu Sep 25 2025 22:40:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (6, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'PPlR7x40sag8yfXcUeYzIw==', 0, NULL, 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (7, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'PPlR7x40sag8yfXcUeYzIw==', 0, NULL, 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 18:49:19 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (8, 'test_openid_1758970258618', 'test_unionid_1758970258619', 60, 'Sat Sep 27 2025 18:50:59 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'test_session_key_1758970258619', 0, NULL, 'Sat Sep 27 2025 18:50:59 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 18:50:59 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (9, 'test_openid_1758970297509', 'test_unionid_1758970297509', 61, 'Sat Sep 27 2025 18:51:38 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'test_session_key_1758970297509', 0, NULL, 'Sat Sep 27 2025 18:51:38 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 18:51:38 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (10, 'test_openid_1758984255561', 'test_unionid_1758984255561', 65, 'Sat Sep 27 2025 22:44:16 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'test_session_key_1758984255561', 0, NULL, 'Sat Sep 27 2025 22:44:16 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 22:44:16 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (11, 'test_openid_1758984267938', 'test_unionid_1758984267938', 66, 'Sat Sep 27 2025 22:44:28 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'test_session_key_1758984267938', 0, NULL, 'Sat Sep 27 2025 22:44:28 GMT+0800 (GMT+08:00)', 'Sat Sep 27 2025 22:44:28 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (12, 'test_openid_1759021805903', 'test_unionid_1759021805903', 70, 'Sun Sep 28 2025 09:10:06 GMT+0800 (GMT+08:00)', '192.168.1.100', 'Test Device', 'test_session_key_1759021805903', 0, NULL, 'Sun Sep 28 2025 09:10:06 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:10:06 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (13, 'test_openid_1759021932665', 'test_unionid_1759021932665', 71, 'Sun Sep 28 2025 09:12:13 GMT+0800 (GMT+08:00)', '192.168.1.100', 'Test Device', 'test_session_key_1759021932665', 0, NULL, 'Sun Sep 28 2025 09:12:13 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:12:13 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (14, 'test_openid_1759022073544', 'test_unionid_1759022073544', 72, 'Sun Sep 28 2025 09:14:34 GMT+0800 (GMT+08:00)', '192.168.1.100', 'Test Device - sessionKey Fix Test', 'test_session_key_1759022073544', 0, NULL, 'Sun Sep 28 2025 09:14:34 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:14:34 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (15, 'test_openid_1759022567421', 'test_unionid_1759022567421', 73, 'Sun Sep 28 2025 09:22:48 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'test_session_key_1759022567421', 0, NULL, 'Sun Sep 28 2025 09:22:48 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:22:48 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (16, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 09:43:39 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 09:43:39 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:43:39 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (17, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 09:51:35 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 09:51:35 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:51:35 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (18, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 09:58:46 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 09:58:46 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 09:58:46 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (19, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:02:24 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:02:24 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:02:24 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (20, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:04:36 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:04:36 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:04:36 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (21, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:07:48 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:07:48 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:07:48 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (22, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:22:18 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:22:18 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:22:18 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (23, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:31:58 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:31:58 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:31:58 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (24, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:33:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:33:12 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:33:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (25, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:34:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'test_device', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:34:12 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:34:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (26, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:42:31 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:42:31 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:42:31 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (27, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:43:58 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:43:58 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:43:58 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (28, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:46:21 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:46:21 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:46:21 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (29, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 10:58:38 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 10:58:38 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 10:58:38 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (30, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:01:45 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:01:45 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:01:45 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (31, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:16:49 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:16:49 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:16:49 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (32, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:20:21 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:20:21 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:20:21 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (33, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:31:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:31:12 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:31:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (34, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:34:43 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:34:43 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:34:43 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (35, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:38:05 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:38:05 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:38:05 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (36, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:42:26 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:42:26 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:42:26 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (37, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:42:36 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:42:36 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:42:36 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (38, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:42:47 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:42:47 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:42:47 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (39, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:42:54 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:42:54 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:42:54 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (40, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:43:02 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:43:02 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:43:02 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (41, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:52:24 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:52:24 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:52:24 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (42, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 11:52:32 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 11:52:32 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 11:52:32 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (43, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 12:01:00 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 12:01:00 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 12:01:00 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (44, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:21:49 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:21:49 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:21:49 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (45, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:26:35 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:26:35 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:26:35 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (46, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:31:30 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:31:30 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:31:30 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (47, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:31:43 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:31:43 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:31:43 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (48, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:35:41 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:35:41 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:35:41 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (49, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:36:15 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:36:15 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:36:15 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (50, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:36:32 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:36:32 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:36:32 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (51, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:42:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:42:12 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:42:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (52, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:42:27 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:42:27 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:42:27 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (53, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:42:35 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:42:35 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:42:35 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (54, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:43:16 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:43:16 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:43:16 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (55, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:43:54 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:43:54 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:43:54 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (56, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:44:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:44:12 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:44:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (57, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:44:25 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:44:25 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:44:25 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (58, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:44:41 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:44:41 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:44:41 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (59, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:44:48 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:44:48 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:44:48 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (60, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:44:57 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:44:57 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:44:57 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (61, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:46:38 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:46:38 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:46:38 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (62, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:53:17 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:53:17 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:53:17 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (63, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:57:10 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:57:10 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:57:10 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (64, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:57:22 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:57:22 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:57:22 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (65, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:57:34 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:57:34 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:57:34 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (66, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:57:41 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:57:41 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:57:41 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (67, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:07 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:07 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:07 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (68, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:20 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:20 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:20 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (69, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:31 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:31 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:31 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (70, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:46 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:46 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:46 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (71, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:49 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:49 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:49 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (72, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:58:57 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:58:57 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:58:57 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (73, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:59:07 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:59:07 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:59:07 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (74, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:59:18 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:59:18 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:59:18 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (75, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 13:59:50 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 13:59:50 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 13:59:50 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (76, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:00:00 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:00:00 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:00:00 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (77, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:00:11 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:00:11 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:00:11 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (78, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:00:43 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:00:43 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:00:43 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (79, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:00:45 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:00:45 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:00:45 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (80, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:00:47 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:00:47 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:00:47 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (81, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:09:21 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:09:21 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:09:21 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (82, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:14:06 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:14:06 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:14:06 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (83, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 14:14:24 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NHJCRHrl/6BuYUoyr/Fx0Q==', 0, NULL, 'Sun Sep 28 2025 14:14:24 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 14:14:24 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (84, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:04:20 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:04:20 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:04:20 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (85, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:13:15 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:13:15 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:13:15 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (86, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:13:37 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:13:37 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:13:37 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (87, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:13:57 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:13:57 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:13:57 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (88, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:15:41 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:15:41 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:15:41 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (89, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:15:58 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:15:58 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:15:58 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (90, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:16:22 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:16:22 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:16:22 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (91, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:16:33 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:16:33 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:16:33 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (92, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:19:08 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:19:08 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:19:08 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (93, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:21:17 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:21:17 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:21:17 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (94, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 20:21:44 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 20:21:44 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 20:21:44 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (95, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 22:11:53 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 22:11:53 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 22:11:53 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (96, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 22:49:47 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 22:49:47 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 22:49:47 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (97, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Sun Sep 28 2025 22:58:58 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'kI6uhWBiK+Yhg0DIcghg0A==', 0, NULL, 'Sun Sep 28 2025 22:58:58 GMT+0800 (GMT+08:00)', 'Sun Sep 28 2025 22:58:58 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (98, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:22:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:22:12 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:22:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (99, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:31:24 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:31:24 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:31:24 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (100, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:32:51 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:32:51 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:32:51 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (101, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:33:25 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:33:25 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:33:25 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (102, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:38:37 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:38:37 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:38:37 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (103, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:46:37 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:46:37 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:46:37 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (104, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 08:48:57 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 08:48:57 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 08:48:57 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (105, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 09:03:20 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 09:03:20 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 09:03:20 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (106, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 09:22:06 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 09:22:06 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 09:22:06 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (107, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 09:40:37 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 09:40:37 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 09:40:37 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (108, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 09:58:33 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 09:58:33 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 09:58:33 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (109, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Mon Sep 29 2025 10:01:54 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'AayzoBmtjQhX3ubh2pWr2Q==', 0, NULL, 'Mon Sep 29 2025 10:01:54 GMT+0800 (GMT+08:00)', 'Mon Sep 29 2025 10:01:54 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (116, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 09:07:52 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'Esfw6euQufW7cZop3dgoSg==', 0, NULL, 'Tue Sep 30 2025 09:07:52 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 09:07:52 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (117, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 09:07:59 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'Esfw6euQufW7cZop3dgoSg==', 0, NULL, 'Tue Sep 30 2025 09:07:59 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 09:07:59 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (118, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 10:39:12 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'Esfw6euQufW7cZop3dgoSg==', 0, NULL, 'Tue Sep 30 2025 10:39:12 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 10:39:12 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (119, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 14:05:00 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'Esfw6euQufW7cZop3dgoSg==', 0, NULL, 'Tue Sep 30 2025 14:05:00 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 14:05:00 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (120, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 14:20:13 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'Esfw6euQufW7cZop3dgoSg==', 0, NULL, 'Tue Sep 30 2025 14:20:13 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 14:20:13 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+INSERT INTO `t_wx_login_record` (`id`, `wx_openid`, `wx_unionid`, `user_id`, `login_time`, `login_ip`, `device_info`, `session_key`, `phone_authorized`, `phone_auth_time`, `create_time`, `update_time`, `state`, `create_user_id`, `update_user_id`, `version`) VALUES (121, 'ogxxA1-KrSVTdqI9T1uaB1BQwPGU', NULL, 59, 'Tue Sep 30 2025 17:39:16 GMT+0800 (GMT+08:00)', '127.0.0.1', 'devtools iPhone 12/13 (Pro) iOS 10.0.1', 'NZCjzJrxBJXrDugAmcxw9Q==', 0, NULL, 'Tue Sep 30 2025 17:39:16 GMT+0800 (GMT+08:00)', 'Tue Sep 30 2025 17:39:16 GMT+0800 (GMT+08:00)', 1, NULL, NULL, 0);
+

--
Gitblit v1.8.0