-- MySQL dump 10.13 Distrib 8.0.44, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: cool -- ------------------------------------------------------ -- Server version 8.0.44 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `base_sys_conf` -- DROP TABLE IF EXISTS `base_sys_conf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `base_sys_conf` ( `id` bigint NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `c_key` varchar(255) NOT NULL COMMENT '配置键', `c_value` text NOT NULL COMMENT '值', PRIMARY KEY (`id`), UNIQUE KEY `auto_idx_base_sys_conf_c_key` (`c_key`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统配置表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `base_sys_conf` -- LOCK TABLES `base_sys_conf` WRITE; /*!40000 ALTER TABLE `base_sys_conf` DISABLE KEYS */; INSERT INTO `base_sys_conf` (`id`, `create_time`, `update_time`, `c_key`, `c_value`) VALUES (1,'2025-11-19 02:45:00','2025-11-19 02:45:00','logKeep','31'),(2,'2025-11-19 02:45:00','2025-11-19 02:45:00','recycleKeep','31'),(3,'2025-11-19 02:45:00','2025-11-19 02:45:00','db_base.json','success'),(4,'2025-11-19 02:45:01','2025-11-19 02:45:01','menu_menu.json','success'),(5,'2025-11-19 02:45:01','2025-11-19 02:45:01','menu_menu_8.0.json','success'),(6,'2025-11-19 09:27:07','2025-11-19 09:27:07','JWT_SECRET_TOKEN','b0d1b7dbde7f4c09a8559fef6fa28655'),(7,'2025-11-19 09:27:07','2025-11-19 09:27:07','JWT_SECRET_REFRESH_TOKEN','326c0dd09c414c39ad596096b0fc329b'); /*!40000 ALTER TABLE `base_sys_conf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `base_sys_department` -- DROP TABLE IF EXISTS `base_sys_department`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `base_sys_department` ( `id` bigint NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `name` varchar(255) NOT NULL COMMENT '部门名称', `parent_id` bigint DEFAULT NULL COMMENT '上级部门ID', `order_num` int DEFAULT '0' COMMENT '排序', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统部门'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `base_sys_department` -- LOCK TABLES `base_sys_department` WRITE; /*!40000 ALTER TABLE `base_sys_department` DISABLE KEYS */; INSERT INTO `base_sys_department` (`id`, `create_time`, `update_time`, `name`, `parent_id`, `order_num`) VALUES (1,'2025-11-19 02:45:00','2025-11-19 02:45:00','COOL',NULL,0),(11,'2025-11-19 02:45:00','2025-11-19 02:45:00','开发',12,2),(12,'2025-11-19 02:45:00','2025-11-19 02:45:00','测试',1,1),(13,'2025-11-19 02:45:00','2025-11-19 02:45:00','游客',1,3); /*!40000 ALTER TABLE `base_sys_department` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `base_sys_log` -- DROP TABLE IF EXISTS `base_sys_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `base_sys_log` ( `id` bigint NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `user_id` bigint DEFAULT NULL COMMENT '用户ID', `action` varchar(1000) DEFAULT NULL COMMENT '行为', `ip` varchar(50) DEFAULT NULL COMMENT 'IP', `params` json DEFAULT NULL COMMENT '参数', PRIMARY KEY (`id`), KEY `auto_idx_base_sys_log_user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2866 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统日志表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `base_sys_log` -- LOCK TABLES `base_sys_log` WRITE; /*!40000 ALTER TABLE `base_sys_log` DISABLE KEYS */; INSERT INTO `base_sys_log` (`id`, `create_time`, `update_time`, `user_id`, `action`, `ip`, `params`) VALUES (2127,'2026-01-20 11:58:08','2026-01-20 11:58:08',1,'/admin/base/sys/log/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2128,'2026-01-20 11:58:10','2026-01-20 11:58:10',1,'/admin/task/info/page','127.0.0.1','{\"page\": \"1\", \"size\": \"100\", \"userId\": 1}'),(2129,'2026-01-20 11:58:13','2026-01-20 11:58:13',1,'/admin/task/info/delete','127.0.0.1','{\"ids\": [1], \"userId\": 1}'),(2130,'2026-01-20 11:58:13','2026-01-20 11:58:13',1,'/admin/task/info/page','127.0.0.1','{\"page\": \"1\", \"size\": \"100\", \"userId\": 1}'),(2131,'2026-01-20 11:58:15','2026-01-20 11:58:15',1,'/admin/dict/type/page','127.0.0.1','{\"page\": \"1\", \"size\": \"50\", \"sort\": \"asc\", \"order\": \"createTime\", \"userId\": 1}'),(2132,'2026-01-20 11:58:16','2026-01-20 11:58:16',1,'/admin/space/type/page','127.0.0.1','{\"page\": \"1\", \"size\": \"50\", \"sort\": \"asc\", \"order\": \"createTime\", \"userId\": 1}'),(2133,'2026-01-20 11:58:16','2026-01-20 11:58:16',1,'/admin/recycle/data/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2134,'2026-01-20 11:58:24','2026-01-20 11:58:24',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2135,'2026-01-20 11:58:25','2026-01-20 11:58:25',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2136,'2026-01-20 11:58:26','2026-01-20 11:58:26',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2137,'2026-01-20 11:58:26','2026-01-20 11:58:26',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2138,'2026-01-20 11:58:27','2026-01-20 11:58:27',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2139,'2026-01-20 11:58:28','2026-01-20 11:58:28',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2140,'2026-01-20 11:58:29','2026-01-20 11:58:29',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2141,'2026-01-20 11:58:30','2026-01-20 11:58:30',1,'/admin/nongchuang/gift-card/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2142,'2026-01-20 11:58:31','2026-01-20 11:58:31',1,'/admin/nongchuang/user-seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2143,'2026-01-20 11:58:31','2026-01-20 11:58:31',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2144,'2026-01-20 11:58:32','2026-01-20 11:58:32',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2145,'2026-01-20 11:58:32','2026-01-20 11:58:32',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2146,'2026-01-20 11:58:32','2026-01-20 11:58:32',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2147,'2026-01-20 11:58:32','2026-01-20 11:58:32',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2148,'2026-01-20 11:58:32','2026-01-20 11:58:32',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2149,'2026-01-20 12:01:03','2026-01-20 12:01:03',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2150,'2026-01-20 12:03:48','2026-01-20 12:03:48',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2151,'2026-01-20 12:03:48','2026-01-20 12:03:48',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2152,'2026-01-20 12:03:50','2026-01-20 12:03:50',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2153,'2026-01-20 12:03:50','2026-01-20 12:03:50',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2154,'2026-01-20 12:04:16','2026-01-20 12:04:16',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2155,'2026-01-20 12:04:16','2026-01-20 12:04:16',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2156,'2026-01-20 12:24:04','2026-01-20 12:24:04',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2157,'2026-01-20 12:31:08','2026-01-20 12:31:08',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2158,'2026-01-20 12:31:08','2026-01-20 12:31:08',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2159,'2026-01-20 12:31:09','2026-01-20 12:31:09',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2160,'2026-01-20 12:32:06','2026-01-20 12:32:06',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2161,'2026-01-20 12:32:06','2026-01-20 12:32:06',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2162,'2026-01-20 12:32:06','2026-01-20 12:32:06',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2163,'2026-01-20 12:32:24','2026-01-20 12:32:24',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2164,'2026-01-20 12:32:24','2026-01-20 12:32:24',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2165,'2026-01-20 12:32:27','2026-01-20 12:32:27',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2166,'2026-01-20 12:32:27','2026-01-20 12:32:27',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2167,'2026-01-20 12:32:28','2026-01-20 12:32:28',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2168,'2026-01-20 12:32:32','2026-01-20 12:32:32',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2169,'2026-01-20 12:32:36','2026-01-20 12:32:36',NULL,'/api/nongchuang/cart/list','127.0.0.1','{}'),(2170,'2026-01-20 12:34:01','2026-01-20 12:34:01',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2171,'2026-01-20 12:34:30','2026-01-20 12:34:30',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2172,'2026-01-20 12:34:30','2026-01-20 12:34:30',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2173,'2026-01-20 12:34:30','2026-01-20 12:34:30',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2174,'2026-01-20 12:34:32','2026-01-20 12:34:32',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2175,'2026-01-20 12:34:32','2026-01-20 12:34:32',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2176,'2026-01-20 12:34:35','2026-01-20 12:34:35',NULL,'/api/nongchuang/my-seed/list','127.0.0.1','{}'),(2177,'2026-01-20 12:34:37','2026-01-20 12:34:37',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2178,'2026-01-20 12:35:35','2026-01-20 12:35:35',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0c3d4kml2q841h4IBLml2zUG851d4kmy\"}'),(2179,'2026-01-20 12:35:37','2026-01-20 12:35:37',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2180,'2026-01-20 12:35:37','2026-01-20 12:35:37',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2181,'2026-01-20 12:35:37','2026-01-20 12:35:37',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2182,'2026-01-20 12:35:40','2026-01-20 12:35:40',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2183,'2026-01-20 12:35:40','2026-01-20 12:35:40',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2184,'2026-01-20 12:42:06','2026-01-20 12:42:06',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2185,'2026-01-20 12:42:06','2026-01-20 12:42:06',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2186,'2026-01-20 12:42:29','2026-01-20 12:42:29',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2187,'2026-01-20 12:42:29','2026-01-20 12:42:29',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2188,'2026-01-20 12:42:57','2026-01-20 12:42:57',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2189,'2026-01-20 12:42:57','2026-01-20 12:42:57',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2190,'2026-01-20 12:46:05','2026-01-20 12:46:05',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2191,'2026-01-20 12:46:05','2026-01-20 12:46:05',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2192,'2026-01-20 12:46:05','2026-01-20 12:46:05',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2193,'2026-01-20 12:47:52','2026-01-20 12:47:52',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2194,'2026-01-20 12:47:52','2026-01-20 12:47:52',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2195,'2026-01-20 12:47:52','2026-01-20 12:47:52',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2196,'2026-01-20 12:47:59','2026-01-20 12:47:59',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2197,'2026-01-20 12:48:03','2026-01-20 12:48:03',NULL,'/api/nongchuang/seed/store','127.0.0.1','{}'),(2198,'2026-01-20 12:48:06','2026-01-20 12:48:06',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2199,'2026-01-20 12:48:10','2026-01-20 12:48:10',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2200,'2026-01-20 12:48:10','2026-01-20 12:48:10',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2201,'2026-01-20 12:48:12','2026-01-20 12:48:12',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2202,'2026-01-20 12:48:12','2026-01-20 12:48:12',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2203,'2026-01-20 12:48:15','2026-01-20 12:48:15',NULL,'/api/nongchuang/cart/list','127.0.0.1','{}'),(2204,'2026-01-20 12:48:19','2026-01-20 12:48:19',NULL,'/api/nongchuang/seed/store','127.0.0.1','{}'),(2205,'2026-01-20 12:48:45','2026-01-20 12:48:45',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2206,'2026-01-20 12:48:50','2026-01-20 12:48:50',NULL,'/api/nongchuang/product/detail/1','127.0.0.1','{}'),(2207,'2026-01-20 12:54:45','2026-01-20 12:54:45',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2208,'2026-01-20 12:55:53','2026-01-20 12:55:53',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2209,'2026-01-20 12:56:07','2026-01-20 12:56:07',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2210,'2026-01-20 12:56:37','2026-01-20 12:56:37',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2211,'2026-01-20 12:58:48','2026-01-20 12:58:48',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2212,'2026-01-20 12:58:48','2026-01-20 12:58:48',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2213,'2026-01-20 12:58:48','2026-01-20 12:58:48',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2214,'2026-01-20 12:59:22','2026-01-20 12:59:22',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2215,'2026-01-20 12:59:25','2026-01-20 12:59:25',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2216,'2026-01-20 12:59:25','2026-01-20 12:59:25',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2217,'2026-01-20 12:59:27','2026-01-20 12:59:27',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2218,'2026-01-20 12:59:28','2026-01-20 12:59:28',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2219,'2026-01-20 13:01:06','2026-01-20 13:01:06',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0d3bnjHa1CpT0L09PkIa1jW06g0bnjHd\"}'),(2220,'2026-01-20 13:01:10','2026-01-20 13:01:10',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2221,'2026-01-20 13:01:21','2026-01-20 13:01:21',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2222,'2026-01-20 13:01:23','2026-01-20 13:01:23',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2223,'2026-01-20 13:01:41','2026-01-20 13:01:41',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2224,'2026-01-20 13:01:41','2026-01-20 13:01:41',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2225,'2026-01-20 13:01:44','2026-01-20 13:01:44',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2226,'2026-01-20 13:01:45','2026-01-20 13:01:45',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2227,'2026-01-20 13:01:45','2026-01-20 13:01:45',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2228,'2026-01-20 13:01:45','2026-01-20 13:01:45',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2229,'2026-01-20 13:01:46','2026-01-20 13:01:46',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2230,'2026-01-20 13:01:46','2026-01-20 13:01:46',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2231,'2026-01-20 13:01:46','2026-01-20 13:01:46',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2232,'2026-01-20 13:01:46','2026-01-20 13:01:46',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2233,'2026-01-20 13:01:46','2026-01-20 13:01:46',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2234,'2026-01-20 13:07:11','2026-01-20 13:07:11',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2235,'2026-01-20 13:07:11','2026-01-20 13:07:11',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2236,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2237,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2238,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2239,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2240,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2241,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2242,'2026-01-20 13:07:14','2026-01-20 13:07:14',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2243,'2026-01-20 13:07:15','2026-01-20 13:07:15',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2244,'2026-01-20 13:07:45','2026-01-20 13:07:45',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2245,'2026-01-20 13:07:45','2026-01-20 13:07:45',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2246,'2026-01-20 13:07:48','2026-01-20 13:07:48',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2247,'2026-01-20 13:07:48','2026-01-20 13:07:48',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2248,'2026-01-20 13:07:48','2026-01-20 13:07:48',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2249,'2026-01-20 13:07:48','2026-01-20 13:07:48',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2250,'2026-01-20 13:07:48','2026-01-20 13:07:48',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2251,'2026-01-20 13:08:03','2026-01-20 13:08:03',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2252,'2026-01-20 13:08:03','2026-01-20 13:08:03',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2253,'2026-01-20 13:08:03','2026-01-20 13:08:03',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2254,'2026-01-20 13:20:22','2026-01-20 13:20:22',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2255,'2026-01-20 13:20:22','2026-01-20 13:20:22',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2256,'2026-01-20 13:20:22','2026-01-20 13:20:22',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2257,'2026-01-20 13:20:53','2026-01-20 13:20:53',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2258,'2026-01-20 13:20:55','2026-01-20 13:20:55',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2259,'2026-01-20 13:20:55','2026-01-20 13:20:55',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2260,'2026-01-20 13:20:57','2026-01-20 13:20:57',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2261,'2026-01-20 13:20:57','2026-01-20 13:20:57',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2262,'2026-01-20 13:21:26','2026-01-20 13:21:26',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2263,'2026-01-20 13:23:29','2026-01-20 13:23:29',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2264,'2026-01-20 13:23:29','2026-01-20 13:23:29',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2265,'2026-01-20 13:23:49','2026-01-20 13:23:49',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2266,'2026-01-20 13:23:49','2026-01-20 13:23:49',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2267,'2026-01-20 13:23:49','2026-01-20 13:23:49',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2268,'2026-01-20 13:23:53','2026-01-20 13:23:53',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2269,'2026-01-20 13:23:56','2026-01-20 13:23:56',NULL,'/api/nongchuang/seed/store','127.0.0.1','{}'),(2270,'2026-01-20 13:24:00','2026-01-20 13:24:00',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2271,'2026-01-20 13:24:00','2026-01-20 13:24:00',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2272,'2026-01-20 13:24:02','2026-01-20 13:24:02',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2273,'2026-01-20 13:24:05','2026-01-20 13:24:05',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2274,'2026-01-20 13:24:23','2026-01-20 13:24:23',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2275,'2026-01-20 13:24:23','2026-01-20 13:24:23',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2276,'2026-01-20 13:24:27','2026-01-20 13:24:27',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2277,'2026-01-20 13:24:27','2026-01-20 13:24:27',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2278,'2026-01-20 13:24:42','2026-01-20 13:24:42',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2279,'2026-01-20 13:24:42','2026-01-20 13:24:42',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2280,'2026-01-20 13:24:42','2026-01-20 13:24:42',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2281,'2026-01-20 14:43:59','2026-01-20 14:43:59',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2282,'2026-01-20 14:44:08','2026-01-20 14:44:08',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2283,'2026-01-20 14:44:14','2026-01-20 14:44:14',NULL,'/api/nongchuang/cart/list','127.0.0.1','{}'),(2284,'2026-01-20 14:44:18','2026-01-20 14:44:18',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2285,'2026-01-20 14:44:22','2026-01-20 14:44:22',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2286,'2026-01-20 14:44:23','2026-01-20 14:44:23',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2287,'2026-01-20 14:44:42','2026-01-20 14:44:42',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2288,'2026-01-20 14:44:42','2026-01-20 14:44:42',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2289,'2026-01-20 14:44:47','2026-01-20 14:44:47',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2290,'2026-01-20 14:44:47','2026-01-20 14:44:47',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2291,'2026-01-20 14:44:47','2026-01-20 14:44:47',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2292,'2026-01-20 14:44:47','2026-01-20 14:44:47',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2293,'2026-01-20 14:44:47','2026-01-20 14:44:47',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2294,'2026-01-20 14:44:51','2026-01-20 14:44:51',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2295,'2026-01-20 14:44:51','2026-01-20 14:44:51',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2296,'2026-01-20 14:44:51','2026-01-20 14:44:51',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2297,'2026-01-20 14:44:54','2026-01-20 14:44:54',NULL,'/admin/base/open/captcha','127.0.0.1','{\"color\": \"#2c3142\", \"width\": \"150\", \"height\": \"45\"}'),(2298,'2026-01-20 14:45:03','2026-01-20 14:45:03',NULL,'/admin/base/open/login','127.0.0.1','{\"password\": \"123456\", \"username\": \"admin\", \"captchaId\": \"c2a36f53-fdb9-414b-b03a-72290332287a\", \"verifyCode\": \"dU5O\"}'),(2299,'2026-01-20 14:45:03','2026-01-20 14:45:03',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2300,'2026-01-20 14:45:03','2026-01-20 14:45:03',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2301,'2026-01-20 14:45:03','2026-01-20 14:45:03',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2302,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2303,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2304,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2305,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2306,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2307,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2308,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2309,'2026-01-20 14:45:04','2026-01-20 14:45:04',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2310,'2026-01-20 14:51:14','2026-01-20 14:51:14',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2311,'2026-01-20 14:51:19','2026-01-20 14:51:19',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2312,'2026-01-20 14:51:22','2026-01-20 14:51:22',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2313,'2026-01-20 14:51:30','2026-01-20 14:51:30',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2314,'2026-01-20 14:51:30','2026-01-20 14:51:30',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2315,'2026-01-20 14:51:30','2026-01-20 14:51:30',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2316,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2317,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2318,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2319,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2320,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2321,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2322,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2323,'2026-01-20 14:51:33','2026-01-20 14:51:33',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2324,'2026-01-20 14:51:34','2026-01-20 14:51:34',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2325,'2026-01-20 14:51:34','2026-01-20 14:51:34',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2326,'2026-01-20 14:51:38','2026-01-20 14:51:38',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2327,'2026-01-20 14:51:39','2026-01-20 14:51:39',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2328,'2026-01-20 14:51:43','2026-01-20 14:51:43',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2329,'2026-01-20 14:51:43','2026-01-20 14:51:43',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2330,'2026-01-20 14:51:44','2026-01-20 14:51:44',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2331,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2332,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2333,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2334,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2335,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2336,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2337,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2338,'2026-01-20 14:51:46','2026-01-20 14:51:46',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2339,'2026-01-20 14:53:12','2026-01-20 14:53:12',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2340,'2026-01-20 14:53:12','2026-01-20 14:53:12',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2341,'2026-01-20 14:53:15','2026-01-20 14:53:15',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2342,'2026-01-20 14:53:15','2026-01-20 14:53:15',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2343,'2026-01-20 14:53:16','2026-01-20 14:53:16',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2344,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2345,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2346,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2347,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2348,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2349,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2350,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2351,'2026-01-20 14:53:17','2026-01-20 14:53:17',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2352,'2026-01-20 14:53:48','2026-01-20 14:53:48',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2353,'2026-01-20 14:53:48','2026-01-20 14:53:48',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2354,'2026-01-20 15:06:21','2026-01-20 15:06:21',NULL,'/admin/base/open/captcha','127.0.0.1','{\"color\": \"#2c3142\", \"width\": \"150\", \"height\": \"45\"}'),(2355,'2026-01-20 15:06:30','2026-01-20 15:06:30',NULL,'/admin/base/open/login','127.0.0.1','{\"password\": \"123456\", \"username\": \"admin\", \"captchaId\": \"80ac3f92-b05e-41d5-92c3-5ba38b75050a\", \"verifyCode\": \"bcMH\"}'),(2356,'2026-01-20 15:06:30','2026-01-20 15:06:30',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2357,'2026-01-20 15:06:30','2026-01-20 15:06:30',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2358,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2359,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2360,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2361,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2362,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2363,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2364,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2365,'2026-01-20 15:06:31','2026-01-20 15:06:31',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2366,'2026-01-20 15:06:36','2026-01-20 15:06:36',1,'/admin/base/sys/department/list','127.0.0.1','{\"userId\": 1}'),(2367,'2026-01-20 15:06:37','2026-01-20 15:06:37',1,'/admin/base/sys/user/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1, \"departmentIds\": \"1\"}'),(2368,'2026-01-20 15:06:38','2026-01-20 15:06:38',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2369,'2026-01-20 15:06:38','2026-01-20 15:06:38',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2370,'2026-01-20 15:06:39','2026-01-20 15:06:39',1,'/admin/base/sys/role/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2371,'2026-01-20 15:06:42','2026-01-20 15:06:42',1,'/admin/base/sys/param/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"userId\": 1}'),(2372,'2026-01-20 15:06:46','2026-01-20 15:06:46',1,'/admin/base/sys/log/getKeep','127.0.0.1','{\"userId\": 1}'),(2373,'2026-01-20 15:06:46','2026-01-20 15:06:46',1,'/admin/base/sys/log/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2374,'2026-01-20 15:06:55','2026-01-20 15:06:55',1,'/admin/base/sys/param/info','127.0.0.1','{\"id\": \"6\", \"userId\": 1}'),(2375,'2026-01-20 15:07:16','2026-01-20 15:07:16',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2376,'2026-01-20 15:07:21','2026-01-20 15:07:21',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2377,'2026-01-20 15:07:22','2026-01-20 15:07:22',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2378,'2026-01-20 15:07:24','2026-01-20 15:07:24',1,'/admin/nongchuang/model-3d/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"userId\": 1}'),(2379,'2026-01-20 15:07:30','2026-01-20 15:07:30',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2380,'2026-01-20 15:07:31','2026-01-20 15:07:31',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2381,'2026-01-20 15:07:37','2026-01-20 15:07:37',1,'/admin/base/comm/uploadMode','127.0.0.1','{\"userId\": 1}'),(2382,'2026-01-20 15:07:37','2026-01-20 15:07:37',NULL,'/admin/base/comm/upload','127.0.0.1','{}'),(2383,'2026-01-20 15:08:31','2026-01-20 15:08:31',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2384,'2026-01-20 15:08:34','2026-01-20 15:08:34',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2385,'2026-01-20 15:08:35','2026-01-20 15:08:35',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2386,'2026-01-20 15:08:39','2026-01-20 15:08:39',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2387,'2026-01-20 15:08:39','2026-01-20 15:08:39',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2388,'2026-01-20 15:08:43','2026-01-20 15:08:43',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2389,'2026-01-20 15:08:43','2026-01-20 15:08:43',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2390,'2026-01-20 15:08:48','2026-01-20 15:08:48',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2391,'2026-01-20 15:08:48','2026-01-20 15:08:48',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2392,'2026-01-20 15:08:48','2026-01-20 15:08:48',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2393,'2026-01-20 15:08:51','2026-01-20 15:08:51',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2394,'2026-01-20 15:09:57','2026-01-20 15:09:57',1,'/admin/nongchuang/user/delete','127.0.0.1','{\"ids\": [6], \"userId\": 1}'),(2395,'2026-01-20 15:09:57','2026-01-20 15:09:57',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2396,'2026-01-20 15:09:58','2026-01-20 15:09:58',1,'/admin/nongchuang/user/delete','127.0.0.1','{\"ids\": [7], \"userId\": 1}'),(2397,'2026-01-20 15:09:58','2026-01-20 15:09:58',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2398,'2026-01-20 15:10:05','2026-01-20 15:10:05',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2399,'2026-01-20 15:10:05','2026-01-20 15:10:05',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2400,'2026-01-20 15:10:13','2026-01-20 15:10:13',1,'/admin/base/sys/menu/delete','127.0.0.1','{\"ids\": [123], \"userId\": 1}'),(2401,'2026-01-20 15:10:13','2026-01-20 15:10:13',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2402,'2026-01-20 15:10:13','2026-01-20 15:10:13',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2403,'2026-01-20 15:10:15','2026-01-20 15:10:15',1,'/admin/base/sys/menu/list','127.0.0.1','{\"userId\": 1}'),(2404,'2026-01-20 15:10:15','2026-01-20 15:10:15',1,'/admin/base/sys/menu/info','127.0.0.1','{\"id\": \"121\", \"userId\": 1}'),(2405,'2026-01-20 15:10:23','2026-01-20 15:10:23',1,'/admin/base/sys/menu/update','127.0.0.1','{\"id\": 121, \"icon\": \"icon-list\", \"name\": \"菜单管理\", \"type\": 1, \"isShow\": true, \"router\": \"/nongchuang/app-menu/list\", \"userId\": 1, \"orderNum\": 10, \"parentId\": 97, \"viewPath\": \"nongchuang/views/app-menu\", \"keepAlive\": true, \"childMenus\": {}, \"createTime\": \"2026-01-20 15:04:37\", \"parentName\": {}, \"updateTime\": \"2026-01-20 15:04:37\"}'),(2406,'2026-01-20 15:10:23','2026-01-20 15:10:23',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2407,'2026-01-20 15:10:23','2026-01-20 15:10:23',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2408,'2026-01-20 15:10:25','2026-01-20 15:10:25',1,'/admin/base/sys/menu/info','127.0.0.1','{\"id\": \"122\", \"userId\": 1}'),(2409,'2026-01-20 15:10:25','2026-01-20 15:10:25',1,'/admin/base/sys/menu/list','127.0.0.1','{\"userId\": 1}'),(2410,'2026-01-20 15:10:32','2026-01-20 15:10:32',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2411,'2026-01-20 15:10:32','2026-01-20 15:10:32',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2412,'2026-01-20 15:10:35','2026-01-20 15:10:35',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2413,'2026-01-20 15:10:35','2026-01-20 15:10:35',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2414,'2026-01-20 15:10:35','2026-01-20 15:10:35',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2415,'2026-01-20 15:10:35','2026-01-20 15:10:35',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2416,'2026-01-20 15:10:39','2026-01-20 15:10:39',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2417,'2026-01-20 15:10:39','2026-01-20 15:10:39',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2418,'2026-01-20 15:10:39','2026-01-20 15:10:39',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2419,'2026-01-20 15:10:40','2026-01-20 15:10:40',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2420,'2026-01-20 15:10:40','2026-01-20 15:10:40',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2421,'2026-01-20 15:10:48','2026-01-20 15:10:48',1,'/admin/base/sys/menu/info','127.0.0.1','{\"id\": \"122\", \"userId\": 1}'),(2422,'2026-01-20 15:10:48','2026-01-20 15:10:48',1,'/admin/base/sys/menu/list','127.0.0.1','{\"userId\": 1}'),(2423,'2026-01-20 15:10:53','2026-01-20 15:10:53',1,'/admin/base/sys/menu/update','127.0.0.1','{\"id\": 122, \"icon\": \"icon-app\", \"name\": \"分类管理\", \"type\": 1, \"isShow\": true, \"router\": \"/nongchuang/category/list\", \"userId\": 1, \"orderNum\": 11, \"parentId\": 97, \"viewPath\": \"nongchuang/views/category\", \"keepAlive\": true, \"childMenus\": {}, \"createTime\": \"2026-01-20 15:04:37\", \"parentName\": {}, \"updateTime\": \"2026-01-20 15:04:37\"}'),(2424,'2026-01-20 15:10:53','2026-01-20 15:10:53',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2425,'2026-01-20 15:10:53','2026-01-20 15:10:53',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2426,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2427,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2428,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2429,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2430,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2431,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2432,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2433,'2026-01-20 15:10:57','2026-01-20 15:10:57',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2434,'2026-01-20 15:10:58','2026-01-20 15:10:58',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2435,'2026-01-20 15:10:58','2026-01-20 15:10:58',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2436,'2026-01-20 15:11:00','2026-01-20 15:11:00',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2437,'2026-01-20 15:11:00','2026-01-20 15:11:00',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2438,'2026-01-20 15:11:00','2026-01-20 15:11:00',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2439,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2440,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2441,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2442,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2443,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2444,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2445,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2446,'2026-01-20 15:11:01','2026-01-20 15:11:01',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2447,'2026-01-20 15:11:04','2026-01-20 15:11:04',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2448,'2026-01-20 15:11:11','2026-01-20 15:11:11',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2449,'2026-01-20 15:11:12','2026-01-20 15:11:12',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2450,'2026-01-20 15:11:13','2026-01-20 15:11:13',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2451,'2026-01-20 15:11:14','2026-01-20 15:11:14',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2452,'2026-01-20 15:11:14','2026-01-20 15:11:14',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2453,'2026-01-20 15:11:16','2026-01-20 15:11:16',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2454,'2026-01-20 15:11:16','2026-01-20 15:11:16',1,'/admin/nongchuang/gift-card/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2455,'2026-01-20 15:11:17','2026-01-20 15:11:17',1,'/admin/nongchuang/user-seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2456,'2026-01-20 15:11:18','2026-01-20 15:11:18',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2457,'2026-01-20 15:11:19','2026-01-20 15:11:19',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2458,'2026-01-20 15:11:20','2026-01-20 15:11:20',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2459,'2026-01-20 15:11:21','2026-01-20 15:11:21',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2460,'2026-01-20 15:11:21','2026-01-20 15:11:21',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2461,'2026-01-20 15:11:21','2026-01-20 15:11:21',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2462,'2026-01-20 15:11:21','2026-01-20 15:11:21',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2463,'2026-01-20 15:11:22','2026-01-20 15:11:22',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2464,'2026-01-20 15:16:52','2026-01-20 15:16:52',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2465,'2026-01-20 15:16:52','2026-01-20 15:16:52',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2466,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2467,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2468,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2469,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2470,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2471,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2472,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2473,'2026-01-20 15:16:54','2026-01-20 15:16:54',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2474,'2026-01-20 15:16:56','2026-01-20 15:16:56',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2475,'2026-01-20 15:16:57','2026-01-20 15:16:57',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2476,'2026-01-20 15:16:58','2026-01-20 15:16:58',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2477,'2026-01-20 15:18:03','2026-01-20 15:18:03',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2478,'2026-01-20 15:18:04','2026-01-20 15:18:04',1,'/admin/nongchuang/user-seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2479,'2026-01-20 15:18:04','2026-01-20 15:18:04',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2480,'2026-01-20 15:18:05','2026-01-20 15:18:05',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2481,'2026-01-20 15:18:05','2026-01-20 15:18:05',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2482,'2026-01-20 15:18:05','2026-01-20 15:18:05',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2483,'2026-01-20 15:18:05','2026-01-20 15:18:05',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2484,'2026-01-20 15:18:05','2026-01-20 15:18:05',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2485,'2026-01-20 15:18:08','2026-01-20 15:18:08',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2486,'2026-01-20 15:18:18','2026-01-20 15:18:18',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2487,'2026-01-20 15:18:19','2026-01-20 15:18:19',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2488,'2026-01-20 15:18:30','2026-01-20 15:18:30',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2489,'2026-01-20 15:18:30','2026-01-20 15:18:30',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2490,'2026-01-20 15:18:30','2026-01-20 15:18:30',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2491,'2026-01-20 15:18:43','2026-01-20 15:18:43',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2492,'2026-01-20 15:18:44','2026-01-20 15:18:44',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2493,'2026-01-20 15:18:44','2026-01-20 15:18:44',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2494,'2026-01-20 15:18:47','2026-01-20 15:18:47',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2495,'2026-01-20 15:18:47','2026-01-20 15:18:47',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2496,'2026-01-20 15:23:58','2026-01-20 15:23:58',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2497,'2026-01-20 15:23:59','2026-01-20 15:23:59',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2498,'2026-01-20 15:26:48','2026-01-20 15:26:48',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2499,'2026-01-20 15:26:48','2026-01-20 15:26:48',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2500,'2026-01-20 15:26:48','2026-01-20 15:26:48',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2501,'2026-01-20 15:28:04','2026-01-20 15:28:04',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2502,'2026-01-20 15:28:04','2026-01-20 15:28:04',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2503,'2026-01-20 15:28:14','2026-01-20 15:28:14',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2504,'2026-01-20 15:28:43','2026-01-20 15:28:43',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2505,'2026-01-20 15:28:44','2026-01-20 15:28:44',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2506,'2026-01-20 15:28:49','2026-01-20 15:28:49',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2507,'2026-01-20 15:28:49','2026-01-20 15:28:49',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2508,'2026-01-20 15:28:49','2026-01-20 15:28:49',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2509,'2026-01-20 15:28:51','2026-01-20 15:28:51',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2510,'2026-01-20 15:29:07','2026-01-20 15:29:07',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2511,'2026-01-20 15:29:08','2026-01-20 15:29:08',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2512,'2026-01-20 15:29:09','2026-01-20 15:29:09',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2513,'2026-01-20 15:30:17','2026-01-20 15:30:17',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2514,'2026-01-20 15:30:17','2026-01-20 15:30:17',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2515,'2026-01-20 15:30:19','2026-01-20 15:30:19',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2516,'2026-01-20 15:30:51','2026-01-20 15:30:51',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2517,'2026-01-20 15:30:51','2026-01-20 15:30:51',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2518,'2026-01-20 15:30:54','2026-01-20 15:30:54',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2519,'2026-01-20 15:31:20','2026-01-20 15:31:20',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2520,'2026-01-20 15:31:20','2026-01-20 15:31:20',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2521,'2026-01-20 15:31:20','2026-01-20 15:31:20',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2522,'2026-01-20 15:35:03','2026-01-20 15:35:03',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2523,'2026-01-20 15:35:03','2026-01-20 15:35:03',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2524,'2026-01-20 15:35:05','2026-01-20 15:35:05',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2525,'2026-01-20 15:35:05','2026-01-20 15:35:05',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2526,'2026-01-20 15:35:06','2026-01-20 15:35:06',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2527,'2026-01-20 15:35:06','2026-01-20 15:35:06',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2528,'2026-01-20 15:35:28','2026-01-20 15:35:28',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2529,'2026-01-20 15:35:49','2026-01-20 15:35:49',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2530,'2026-01-20 15:35:49','2026-01-20 15:35:49',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2531,'2026-01-20 15:35:49','2026-01-20 15:35:49',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2532,'2026-01-20 15:35:56','2026-01-20 15:35:56',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2533,'2026-01-20 15:35:58','2026-01-20 15:35:58',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2534,'2026-01-20 15:35:58','2026-01-20 15:35:58',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2535,'2026-01-20 15:35:59','2026-01-20 15:35:59',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2536,'2026-01-20 15:35:59','2026-01-20 15:35:59',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2537,'2026-01-20 15:36:07','2026-01-20 15:36:07',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3YtxFa13ZY2L0t7xGa1ibZ8f3YtxFU\"}'),(2538,'2026-01-20 15:36:09','2026-01-20 15:36:09',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2539,'2026-01-20 15:36:09','2026-01-20 15:36:09',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2540,'2026-01-20 15:36:09','2026-01-20 15:36:09',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2541,'2026-01-20 15:36:11','2026-01-20 15:36:11',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2542,'2026-01-20 15:36:11','2026-01-20 15:36:11',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2543,'2026-01-20 15:40:00','2026-01-20 15:40:00',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2544,'2026-01-20 15:40:00','2026-01-20 15:40:00',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2545,'2026-01-20 15:40:26','2026-01-20 15:40:26',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2546,'2026-01-20 15:40:26','2026-01-20 15:40:26',NULL,'/api/nongchuang/user/info','127.0.0.1','{}'),(2547,'2026-01-20 15:44:54','2026-01-20 15:44:54',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2548,'2026-01-20 15:44:55','2026-01-20 15:44:55',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2549,'2026-01-20 15:44:57','2026-01-20 15:44:57',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2550,'2026-01-20 15:44:57','2026-01-20 15:44:57',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2551,'2026-01-20 15:44:57','2026-01-20 15:44:57',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2552,'2026-01-20 15:44:57','2026-01-20 15:44:57',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2553,'2026-01-20 15:44:58','2026-01-20 15:44:58',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2554,'2026-01-20 15:45:08','2026-01-20 15:45:08',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2555,'2026-01-20 15:45:09','2026-01-20 15:45:09',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2556,'2026-01-20 15:45:10','2026-01-20 15:45:10',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2557,'2026-01-20 15:45:12','2026-01-20 15:45:12',1,'/admin/nongchuang/gift-card/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2558,'2026-01-20 15:45:12','2026-01-20 15:45:12',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2559,'2026-01-20 15:45:13','2026-01-20 15:45:13',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2560,'2026-01-20 15:45:14','2026-01-20 15:45:14',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2561,'2026-01-20 15:45:55','2026-01-20 15:45:55',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2562,'2026-01-20 15:45:55','2026-01-20 15:45:55',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2563,'2026-01-20 15:45:55','2026-01-20 15:45:55',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2564,'2026-01-20 15:48:25','2026-01-20 15:48:25',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2565,'2026-01-20 15:48:25','2026-01-20 15:48:25',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2566,'2026-01-20 15:48:27','2026-01-20 15:48:27',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2567,'2026-01-20 15:48:27','2026-01-20 15:48:27',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2568,'2026-01-20 15:48:29','2026-01-20 15:48:29',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2569,'2026-01-20 15:48:29','2026-01-20 15:48:29',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2570,'2026-01-20 15:48:29','2026-01-20 15:48:29',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2571,'2026-01-20 15:48:30','2026-01-20 15:48:30',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2572,'2026-01-20 15:48:49','2026-01-20 15:48:49',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2573,'2026-01-20 15:48:49','2026-01-20 15:48:49',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2574,'2026-01-20 15:49:51','2026-01-20 15:49:51',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2575,'2026-01-20 15:49:51','2026-01-20 15:49:51',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2576,'2026-01-20 15:49:51','2026-01-20 15:49:51',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2577,'2026-01-20 16:14:15','2026-01-20 16:14:15',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2578,'2026-01-20 16:14:15','2026-01-20 16:14:15',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2579,'2026-01-20 16:14:15','2026-01-20 16:14:15',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2580,'2026-01-20 17:39:22','2026-01-20 17:39:22',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0b3W5dGa1EbV1L01MnGa1DsxD74W5dGT\"}'),(2581,'2026-01-20 17:40:54','2026-01-20 17:40:54',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2582,'2026-01-20 17:40:54','2026-01-20 17:40:54',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2583,'2026-01-20 17:41:09','2026-01-20 17:41:09',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2584,'2026-01-20 17:41:09','2026-01-20 17:41:09',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2585,'2026-01-20 17:41:09','2026-01-20 17:41:09',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2586,'2026-01-20 17:54:35','2026-01-20 17:54:35',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2587,'2026-01-20 17:54:35','2026-01-20 17:54:35',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2588,'2026-01-20 17:54:35','2026-01-20 17:54:35',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2589,'2026-01-20 17:54:40','2026-01-20 17:54:40',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0f3Ht10w3Kymn63Me73w3sZqQa1Ht10h\"}'),(2590,'2026-01-20 18:02:03','2026-01-20 18:02:03',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2591,'2026-01-20 18:02:03','2026-01-20 18:02:03',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2592,'2026-01-20 18:02:03','2026-01-20 18:02:03',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2593,'2026-01-20 18:02:08','2026-01-20 18:02:08',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3sDIkl2YbG2h4FtAml2pwolO3sDIka\"}'),(2594,'2026-01-20 18:06:12','2026-01-20 18:06:12',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2595,'2026-01-20 18:06:12','2026-01-20 18:06:12',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2596,'2026-01-20 18:06:12','2026-01-20 18:06:12',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2597,'2026-01-20 22:23:31','2026-01-20 22:23:31',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2598,'2026-01-20 22:23:31','2026-01-20 22:23:31',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2599,'2026-01-20 22:23:31','2026-01-20 22:23:31',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2600,'2026-01-20 22:23:45','2026-01-20 22:23:45',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2601,'2026-01-20 22:43:25','2026-01-20 22:43:25',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2602,'2026-01-20 22:43:25','2026-01-20 22:43:25',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2603,'2026-01-20 22:43:25','2026-01-20 22:43:25',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2604,'2026-01-20 22:43:40','2026-01-20 22:43:40',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0f3LQgll2nWk2h4wkTnl23yiry3LQglX\"}'),(2605,'2026-01-20 22:49:47','2026-01-20 22:49:47',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2606,'2026-01-20 22:49:47','2026-01-20 22:49:47',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2607,'2026-01-20 22:49:47','2026-01-20 22:49:47',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2608,'2026-01-20 22:49:53','2026-01-20 22:49:53',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2609,'2026-01-20 22:49:53','2026-01-20 22:49:53',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2610,'2026-01-20 22:49:53','2026-01-20 22:49:53',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2611,'2026-01-20 22:50:00','2026-01-20 22:50:00',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3D8Jkl2LUV2h4TIPml2r2LNJ3D8Jkf\"}'),(2612,'2026-01-20 22:56:22','2026-01-20 22:56:22',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2613,'2026-01-20 22:56:54','2026-01-20 22:56:54',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2614,'2026-01-20 22:56:55','2026-01-20 22:56:55',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2615,'2026-01-20 22:56:58','2026-01-20 22:56:58',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2616,'2026-01-20 22:56:58','2026-01-20 22:56:58',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2617,'2026-01-20 22:57:29','2026-01-20 22:57:29',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2618,'2026-01-20 22:57:29','2026-01-20 22:57:29',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2619,'2026-01-20 22:57:33','2026-01-20 22:57:33',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2620,'2026-01-20 22:57:33','2026-01-20 22:57:33',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2621,'2026-01-20 22:57:37','2026-01-20 22:57:37',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2622,'2026-01-20 22:57:37','2026-01-20 22:57:37',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2623,'2026-01-20 22:57:42','2026-01-20 22:57:42',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2624,'2026-01-20 22:57:42','2026-01-20 22:57:42',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2625,'2026-01-20 22:57:42','2026-01-20 22:57:42',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2626,'2026-01-20 22:57:42','2026-01-20 22:57:42',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2627,'2026-01-20 22:57:46','2026-01-20 22:57:46',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2628,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2629,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2630,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2631,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2632,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2633,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2634,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2635,'2026-01-20 22:57:53','2026-01-20 22:57:53',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2636,'2026-01-20 22:57:56','2026-01-20 22:57:56',1,'/admin/base/sys/department/list','127.0.0.1','{\"userId\": 1}'),(2637,'2026-01-20 22:57:56','2026-01-20 22:57:56',1,'/admin/base/sys/user/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1, \"departmentIds\": \"1\"}'),(2638,'2026-01-20 22:57:57','2026-01-20 22:57:57',1,'/admin/base/sys/menu/list','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"asc\", \"order\": \"orderNum\", \"userId\": 1}'),(2639,'2026-01-20 22:57:57','2026-01-20 22:57:57',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2640,'2026-01-20 22:57:58','2026-01-20 22:57:58',1,'/admin/base/sys/role/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2641,'2026-01-20 22:58:01','2026-01-20 22:58:01',1,'/admin/base/sys/param/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"userId\": 1}'),(2642,'2026-01-20 22:58:03','2026-01-20 22:58:03',1,'/admin/base/sys/log/getKeep','127.0.0.1','{\"userId\": 1}'),(2643,'2026-01-20 22:58:03','2026-01-20 22:58:03',1,'/admin/base/sys/log/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2644,'2026-01-20 22:58:06','2026-01-20 22:58:06',1,'/admin/task/info/page','127.0.0.1','{\"page\": \"1\", \"size\": \"100\", \"userId\": 1}'),(2645,'2026-01-20 22:58:08','2026-01-20 22:58:08',1,'/admin/dict/type/page','127.0.0.1','{\"page\": \"1\", \"size\": \"50\", \"sort\": \"asc\", \"order\": \"createTime\", \"userId\": 1}'),(2646,'2026-01-20 22:58:09','2026-01-20 22:58:09',1,'/admin/space/type/page','127.0.0.1','{\"page\": \"1\", \"size\": \"50\", \"sort\": \"asc\", \"order\": \"createTime\", \"userId\": 1}'),(2647,'2026-01-20 22:58:10','2026-01-20 22:58:10',1,'/admin/recycle/data/page','127.0.0.1','{\"page\": \"1\", \"size\": \"20\", \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2648,'2026-01-20 22:58:10','2026-01-20 22:58:10',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2649,'2026-01-20 22:58:10','2026-01-20 22:58:10',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2650,'2026-01-20 22:58:10','2026-01-20 22:58:10',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2651,'2026-01-20 22:58:16','2026-01-20 22:58:16',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2652,'2026-01-20 22:58:17','2026-01-20 22:58:17',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2653,'2026-01-20 22:58:18','2026-01-20 22:58:18',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2654,'2026-01-20 22:58:18','2026-01-20 22:58:18',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2655,'2026-01-20 22:58:20','2026-01-20 22:58:20',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2656,'2026-01-20 22:58:20','2026-01-20 22:58:20',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2657,'2026-01-20 22:58:21','2026-01-20 22:58:21',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2658,'2026-01-20 22:58:26','2026-01-20 22:58:26',1,'/admin/nongchuang/user/delete','127.0.0.1','{\"ids\": [13, 12, 11, 10, 9, 8], \"userId\": 1}'),(2659,'2026-01-20 22:58:26','2026-01-20 22:58:26',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2660,'2026-01-20 22:58:27','2026-01-20 22:58:27',1,'/admin/nongchuang/gift-card/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2661,'2026-01-20 22:58:28','2026-01-20 22:58:28',1,'/admin/nongchuang/user-seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2662,'2026-01-20 22:58:29','2026-01-20 22:58:29',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2663,'2026-01-20 22:58:31','2026-01-20 22:58:31',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2664,'2026-01-20 22:58:31','2026-01-20 22:58:31',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2665,'2026-01-20 22:58:33','2026-01-20 22:58:33',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2666,'2026-01-20 22:58:33','2026-01-20 22:58:33',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2667,'2026-01-20 22:58:33','2026-01-20 22:58:33',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2668,'2026-01-20 22:58:33','2026-01-20 22:58:33',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2669,'2026-01-20 22:58:33','2026-01-20 22:58:33',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2670,'2026-01-20 22:58:34','2026-01-20 22:58:34',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2671,'2026-01-20 23:00:15','2026-01-20 23:00:15',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0c3WBfGa15Ra2L0m1JFa1arKmk2WBfGO\"}'),(2672,'2026-01-20 23:21:20','2026-01-20 23:21:20',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2673,'2026-01-20 23:21:20','2026-01-20 23:21:20',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2674,'2026-01-20 23:21:20','2026-01-20 23:21:20',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2675,'2026-01-20 23:28:51','2026-01-20 23:28:51',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2676,'2026-01-20 23:28:51','2026-01-20 23:28:51',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2677,'2026-01-20 23:28:55','2026-01-20 23:28:55',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2678,'2026-01-20 23:28:55','2026-01-20 23:28:55',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2679,'2026-01-20 23:29:28','2026-01-20 23:29:28',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2680,'2026-01-20 23:29:28','2026-01-20 23:29:28',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2681,'2026-01-20 23:29:32','2026-01-20 23:29:32',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2682,'2026-01-20 23:29:32','2026-01-20 23:29:32',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2683,'2026-01-20 23:29:32','2026-01-20 23:29:32',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2684,'2026-01-20 23:29:33','2026-01-20 23:29:33',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2685,'2026-01-20 23:29:34','2026-01-20 23:29:34',NULL,'/admin/base/open/captcha','127.0.0.1','{\"color\": \"#2c3142\", \"width\": \"150\", \"height\": \"45\"}'),(2686,'2026-01-20 23:29:41','2026-01-20 23:29:41',NULL,'/admin/base/open/login','127.0.0.1','{\"password\": \"123456\", \"username\": \"admin\", \"captchaId\": \"f0e45cbe-6a31-4d48-afe2-21ad3d0e1d4a\", \"verifyCode\": \"Mmgc\"}'),(2687,'2026-01-20 23:29:41','2026-01-20 23:29:41',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2688,'2026-01-20 23:29:41','2026-01-20 23:29:41',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2689,'2026-01-20 23:29:41','2026-01-20 23:29:41',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2690,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2691,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/adoption-project/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2692,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2693,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/device/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2694,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2695,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"userId\": 1}'),(2696,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 10, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2697,'2026-01-20 23:29:42','2026-01-20 23:29:42',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2698,'2026-01-20 23:29:46','2026-01-20 23:29:46',1,'/admin/nongchuang/product/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2699,'2026-01-20 23:29:47','2026-01-20 23:29:47',1,'/admin/nongchuang/farm/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2700,'2026-01-20 23:29:48','2026-01-20 23:29:48',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2701,'2026-01-20 23:29:49','2026-01-20 23:29:49',1,'/admin/nongchuang/gift-card/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2702,'2026-01-20 23:29:50','2026-01-20 23:29:50',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2703,'2026-01-20 23:29:52','2026-01-20 23:29:52',1,'/admin/nongchuang/user/delete','127.0.0.1','{\"ids\": [14], \"userId\": 1}'),(2704,'2026-01-20 23:29:52','2026-01-20 23:29:52',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2705,'2026-01-20 23:29:54','2026-01-20 23:29:54',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2706,'2026-01-20 23:29:55','2026-01-20 23:29:55',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2707,'2026-01-20 23:29:56','2026-01-20 23:29:56',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2708,'2026-01-20 23:29:57','2026-01-20 23:29:57',1,'/admin/nongchuang/stats/dashboard','127.0.0.1','{\"userId\": 1}'),(2709,'2026-01-20 23:29:57','2026-01-20 23:29:57',1,'/admin/nongchuang/seed/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"salesCount\", \"userId\": 1}'),(2710,'2026-01-20 23:29:57','2026-01-20 23:29:57',1,'/admin/nongchuang/order/page','127.0.0.1','{\"page\": 1, \"size\": 5, \"sort\": \"desc\", \"order\": \"createTime\", \"userId\": 1}'),(2711,'2026-01-20 23:29:57','2026-01-20 23:29:57',1,'/admin/nongchuang/stats/order-trend','127.0.0.1','{\"userId\": 1}'),(2712,'2026-01-20 23:29:57','2026-01-20 23:29:57',1,'/admin/nongchuang/stats/user-growth','127.0.0.1','{\"userId\": 1}'),(2713,'2026-01-20 23:29:58','2026-01-20 23:29:58',1,'/admin/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2714,'2026-01-20 23:29:59','2026-01-20 23:29:59',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2715,'2026-01-20 23:32:04','2026-01-20 23:32:04',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2716,'2026-01-20 23:32:04','2026-01-20 23:32:04',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2717,'2026-01-20 23:32:09','2026-01-20 23:32:09',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2718,'2026-01-20 23:32:09','2026-01-20 23:32:09',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2719,'2026-01-20 23:32:10','2026-01-20 23:32:10',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2720,'2026-01-20 23:32:10','2026-01-20 23:32:10',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2721,'2026-01-20 23:32:17','2026-01-20 23:32:17',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2722,'2026-01-20 23:32:17','2026-01-20 23:32:17',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2723,'2026-01-20 23:32:17','2026-01-20 23:32:17',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2724,'2026-01-20 23:32:19','2026-01-20 23:32:19',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2725,'2026-01-20 23:38:15','2026-01-20 23:38:15',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2726,'2026-01-20 23:38:54','2026-01-20 23:38:54',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2727,'2026-01-20 23:38:57','2026-01-20 23:38:57',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2728,'2026-01-20 23:39:10','2026-01-20 23:39:10',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2729,'2026-01-20 23:39:10','2026-01-20 23:39:10',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2730,'2026-01-20 23:39:11','2026-01-20 23:39:11',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2731,'2026-01-20 23:39:12','2026-01-20 23:39:12',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2732,'2026-01-20 23:39:32','2026-01-20 23:39:32',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2733,'2026-01-20 23:39:32','2026-01-20 23:39:32',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2734,'2026-01-20 23:39:32','2026-01-20 23:39:32',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2735,'2026-01-20 23:39:59','2026-01-20 23:39:59',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0f36xm0w3Vn8n63x2P0w3kqX4126xm04\"}'),(2736,'2026-01-20 23:55:05','2026-01-20 23:55:05',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e38OtFa1BwN2L09yZGa14cPLx48OtFY\"}'),(2737,'2026-01-21 00:04:44','2026-01-21 00:04:44',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2738,'2026-01-21 00:05:19','2026-01-21 00:05:19',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2739,'2026-01-21 00:05:22','2026-01-21 00:05:22',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2740,'2026-01-21 00:05:33','2026-01-21 00:05:33',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2741,'2026-01-21 00:05:33','2026-01-21 00:05:33',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2742,'2026-01-21 00:05:33','2026-01-21 00:05:33',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2743,'2026-01-21 00:05:33','2026-01-21 00:05:33',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2744,'2026-01-21 00:05:34','2026-01-21 00:05:34',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2745,'2026-01-21 00:05:34','2026-01-21 00:05:34',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2746,'2026-01-21 00:05:34','2026-01-21 00:05:34',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2747,'2026-01-21 00:05:36','2026-01-21 00:05:36',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2748,'2026-01-21 00:05:41','2026-01-21 00:05:41',1,'/admin/nongchuang/user-seed/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2749,'2026-01-21 00:05:41','2026-01-21 00:05:41',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2750,'2026-01-21 00:05:47','2026-01-21 00:05:47',1,'/admin/nongchuang/category/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2751,'2026-01-21 00:05:48','2026-01-21 00:05:48',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2752,'2026-01-21 00:06:02','2026-01-21 00:06:02',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2753,'2026-01-21 00:06:02','2026-01-21 00:06:02',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2754,'2026-01-21 00:06:02','2026-01-21 00:06:02',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2755,'2026-01-21 00:07:06','2026-01-21 00:07:06',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0f3AALFa1aMs2L0JQbGa1kkNqN1AALFf\"}'),(2756,'2026-01-21 00:40:23','2026-01-21 00:40:23',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2757,'2026-01-21 00:40:23','2026-01-21 00:40:23',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2758,'2026-01-21 00:40:23','2026-01-21 00:40:23',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2759,'2026-01-21 00:42:27','2026-01-21 00:42:27',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3N5oll2KDf2h4Wf0nl2ZxHRB3N5oly\"}'),(2760,'2026-01-21 00:50:39','2026-01-21 00:50:39',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2761,'2026-01-21 00:50:39','2026-01-21 00:50:39',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2762,'2026-01-21 00:50:39','2026-01-21 00:50:39',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2763,'2026-01-21 00:50:56','2026-01-21 00:50:56',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2764,'2026-01-21 00:50:56','2026-01-21 00:50:56',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2765,'2026-01-21 00:50:56','2026-01-21 00:50:56',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2766,'2026-01-21 00:51:02','2026-01-21 00:51:02',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3EO90w30Zsn63UWYZv30OFXA1EO901\"}'),(2767,'2026-01-21 00:53:49','2026-01-21 00:53:49',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2768,'2026-01-21 00:53:49','2026-01-21 00:53:49',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2769,'2026-01-21 00:53:49','2026-01-21 00:53:49',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2770,'2026-01-21 00:53:58','2026-01-21 00:53:58',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2771,'2026-01-21 00:53:58','2026-01-21 00:53:58',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2772,'2026-01-21 00:53:58','2026-01-21 00:53:58',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2773,'2026-01-21 00:54:04','2026-01-21 00:54:04',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2774,'2026-01-21 00:54:04','2026-01-21 00:54:04',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2775,'2026-01-21 00:54:04','2026-01-21 00:54:04',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2776,'2026-01-21 00:55:47','2026-01-21 00:55:47',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2777,'2026-01-21 00:58:06','2026-01-21 00:58:06',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3jExFa1wnQ2L0nt4Ia1RtZS21jExF2\"}'),(2778,'2026-01-21 00:58:22','2026-01-21 00:58:22',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3SXQkl2kjM2h4SEhml2uJhPz1SXQkq\"}'),(2779,'2026-01-21 00:58:33','2026-01-21 00:58:33',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3yYQkl2TiM2h4fE6ll2WOv1U3yYQkh\"}'),(2780,'2026-01-21 00:58:39','2026-01-21 00:58:39',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3tM5Ga13Si2L0OEsJa1Ljy2K1tM5Gw\"}'),(2781,'2026-01-21 00:59:20','2026-01-21 00:59:20',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2782,'2026-01-21 00:59:21','2026-01-21 00:59:21',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2783,'2026-01-21 00:59:27','2026-01-21 00:59:27',NULL,'/admin/base/open/refreshToken','127.0.0.1','{}'),(2784,'2026-01-21 00:59:28','2026-01-21 00:59:28',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2785,'2026-01-21 00:59:28','2026-01-21 00:59:28',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2786,'2026-01-21 00:59:28','2026-01-21 00:59:28',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2787,'2026-01-21 00:59:29','2026-01-21 00:59:29',1,'/admin/nongchuang/app-menu/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2788,'2026-01-21 00:59:32','2026-01-21 00:59:32',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2789,'2026-01-21 00:59:36','2026-01-21 00:59:36',1,'/admin/nongchuang/user/delete','127.0.0.1','{\"ids\": [23, 22, 21, 20, 19, 18, 17, 16, 15], \"userId\": 1}'),(2790,'2026-01-21 00:59:36','2026-01-21 00:59:36',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2791,'2026-01-21 01:02:55','2026-01-21 01:02:55',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2792,'2026-01-21 01:02:55','2026-01-21 01:02:55',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2793,'2026-01-21 01:02:55','2026-01-21 01:02:55',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2794,'2026-01-21 01:02:59','2026-01-21 01:02:59',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3NWxFa1n8R2L0lvaJa1Fu57d1NWxFv\"}'),(2795,'2026-01-21 01:05:37','2026-01-21 01:05:37',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2796,'2026-01-21 01:05:37','2026-01-21 01:05:37',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2797,'2026-01-21 01:05:37','2026-01-21 01:05:37',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2798,'2026-01-21 01:05:54','2026-01-21 01:05:54',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3O7yFa1lUQ2L0gHfJa1KliZC3O7yFw\"}'),(2799,'2026-01-21 01:05:56','2026-01-21 01:05:56',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{}'),(2800,'2026-01-21 01:05:56','2026-01-21 01:05:56',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2801,'2026-01-21 01:05:56','2026-01-21 01:05:56',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": 1, \"size\": 1, \"status\": 1}'),(2802,'2026-01-21 01:11:09','2026-01-21 01:11:09',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2803,'2026-01-21 01:11:09','2026-01-21 01:11:09',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2804,'2026-01-21 01:11:09','2026-01-21 01:11:09',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2805,'2026-01-21 01:11:15','2026-01-21 01:11:15',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0c33syFa1YoP2L0y5ZFa1LC6g903syFE\"}'),(2806,'2026-01-21 01:11:17','2026-01-21 01:11:17',26,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 26}'),(2807,'2026-01-21 01:11:17','2026-01-21 01:11:17',26,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 26}'),(2808,'2026-01-21 01:11:17','2026-01-21 01:11:17',26,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 26}'),(2809,'2026-01-21 01:11:20','2026-01-21 01:11:20',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0f3QKRkl2jiL2h4Pnsnl2Iqhib2QKRkt\"}'),(2810,'2026-01-21 01:11:21','2026-01-21 01:11:21',27,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 27}'),(2811,'2026-01-21 01:11:21','2026-01-21 01:11:21',27,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 27}'),(2812,'2026-01-21 01:11:21','2026-01-21 01:11:21',27,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 27}'),(2813,'2026-01-21 01:16:30','2026-01-21 01:16:30',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2814,'2026-01-21 01:16:30','2026-01-21 01:16:30',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2815,'2026-01-21 01:16:30','2026-01-21 01:16:30',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2816,'2026-01-21 01:16:37','2026-01-21 01:16:37',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0b3Taqll25Tc2h4LBknl2rMqU94TaqlC\"}'),(2817,'2026-01-21 01:16:38','2026-01-21 01:16:38',28,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 28}'),(2818,'2026-01-21 01:16:38','2026-01-21 01:16:38',28,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 28}'),(2819,'2026-01-21 01:16:38','2026-01-21 01:16:38',28,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 28}'),(2820,'2026-01-21 01:16:41','2026-01-21 01:16:41',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0e3bbqll22Xc2h4QCvml2t0wn03bbqlZ\"}'),(2821,'2026-01-21 01:16:43','2026-01-21 01:16:43',29,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 29}'),(2822,'2026-01-21 01:16:43','2026-01-21 01:16:43',29,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 29}'),(2823,'2026-01-21 01:16:43','2026-01-21 01:16:43',29,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 29}'),(2824,'2026-01-21 01:18:37','2026-01-21 01:18:37',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2825,'2026-01-21 01:18:37','2026-01-21 01:18:37',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2826,'2026-01-21 01:18:37','2026-01-21 01:18:37',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2827,'2026-01-21 01:18:41','2026-01-21 01:18:41',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0b39UyFa1sgP2L0ud4Ga19QQ5x09UyFO\"}'),(2828,'2026-01-21 01:18:43','2026-01-21 01:18:43',30,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 30}'),(2829,'2026-01-21 01:18:43','2026-01-21 01:18:43',30,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 30}'),(2830,'2026-01-21 01:18:43','2026-01-21 01:18:43',30,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 30}'),(2831,'2026-01-21 01:18:45','2026-01-21 01:18:45',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0b3Yf9ll2P6u2h42Gpml2MfkTS3Yf9la\"}'),(2832,'2026-01-21 01:18:47','2026-01-21 01:18:47',31,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 31}'),(2833,'2026-01-21 01:18:47','2026-01-21 01:18:47',31,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 31}'),(2834,'2026-01-21 01:18:47','2026-01-21 01:18:47',31,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 31}'),(2835,'2026-01-21 01:21:21','2026-01-21 01:21:21',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2836,'2026-01-21 01:21:21','2026-01-21 01:21:21',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2837,'2026-01-21 01:21:21','2026-01-21 01:21:21',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2838,'2026-01-21 01:21:25','2026-01-21 01:21:25',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0a3u7QFa1koy2L0M1VIa1CJXmJ2u7QFn\"}'),(2839,'2026-01-21 01:21:27','2026-01-21 01:21:27',32,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 32}'),(2840,'2026-01-21 01:21:27','2026-01-21 01:21:27',32,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 32}'),(2841,'2026-01-21 01:21:27','2026-01-21 01:21:27',32,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 32}'),(2842,'2026-01-21 01:21:30','2026-01-21 01:21:30',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0d3N4zFa13sP2L0sggGa1VMBYW2N4zFe\"}'),(2843,'2026-01-21 01:21:32','2026-01-21 01:21:32',33,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 33}'),(2844,'2026-01-21 01:21:32','2026-01-21 01:21:32',33,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 33}'),(2845,'2026-01-21 01:21:32','2026-01-21 01:21:32',33,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 33}'),(2846,'2026-01-21 01:23:54','2026-01-21 01:23:54',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2847,'2026-01-21 01:23:54','2026-01-21 01:23:54',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2848,'2026-01-21 01:23:54','2026-01-21 01:23:54',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2849,'2026-01-21 01:23:58','2026-01-21 01:23:58',NULL,'/api/nongchuang/auth/wechat-login','127.0.0.1','{\"code\": \"0c37Pb0w3a1sn63RcH2w3nNamY07Pb0c\"}'),(2850,'2026-01-21 01:23:59','2026-01-21 01:23:59',34,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\", \"userId\": 34}'),(2851,'2026-01-21 01:23:59','2026-01-21 01:23:59',34,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\", \"userId\": 34}'),(2852,'2026-01-21 01:23:59','2026-01-21 01:23:59',34,'/api/nongchuang/device/list','127.0.0.1','{\"userId\": 34}'),(2853,'2026-01-21 01:24:48','2026-01-21 01:24:48',NULL,'/admin/base/comm/program','127.0.0.1','{}'),(2854,'2026-01-21 01:24:51','2026-01-21 01:24:51',NULL,'/admin/dict/info/types','127.0.0.1','{}'),(2855,'2026-01-21 01:24:58','2026-01-21 01:24:58',1,'/admin/base/comm/person','127.0.0.1','{\"userId\": 1}'),(2856,'2026-01-21 01:24:58','2026-01-21 01:24:58',1,'/admin/base/comm/permmenu','127.0.0.1','{\"userId\": 1}'),(2857,'2026-01-21 01:24:58','2026-01-21 01:24:58',1,'/admin/dict/info/data','127.0.0.1','{\"userId\": 1}'),(2858,'2026-01-21 01:25:01','2026-01-21 01:25:01',1,'/admin/nongchuang/user/page','127.0.0.1','{\"page\": 1, \"size\": 20, \"userId\": 1}'),(2859,'2026-01-21 01:33:52','2026-01-21 01:33:52',NULL,'/api/nongchuang/user-adoption/page','127.0.0.1','{\"page\": \"1\", \"size\": \"1\", \"status\": \"1\"}'),(2860,'2026-01-21 01:33:52','2026-01-21 01:33:52',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2861,'2026-01-21 01:33:52','2026-01-21 01:33:52',NULL,'/api/nongchuang/app-menu/list-by-type','127.0.0.1','{\"type\": \"home\"}'),(2862,'2026-01-21 01:33:56','2026-01-21 01:33:56',NULL,'/api/nongchuang/product/list','127.0.0.1','{}'),(2863,'2026-01-21 01:33:56','2026-01-21 01:33:56',NULL,'/api/nongchuang/category/list','127.0.0.1','{}'),(2864,'2026-01-21 01:33:58','2026-01-21 01:33:58',NULL,'/api/nongchuang/device/list','127.0.0.1','{}'),(2865,'2026-01-21 01:34:04','2026-01-21 01:34:04',NULL,'/api/nongchuang/seed/store','127.0.0.1','{}'); /*!40000 ALTER TABLE `base_sys_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `base_sys_menu` -- DROP TABLE IF EXISTS `base_sys_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `base_sys_menu` ( `id` bigint NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `parent_id` bigint DEFAULT NULL COMMENT '父菜单ID', `name` varchar(255) DEFAULT NULL COMMENT '菜单名称', `perms` text COMMENT '权限', `type` int DEFAULT '0' COMMENT '类型 0:目录 1:菜单 2:按钮', `icon` varchar(255) DEFAULT NULL COMMENT '图标', `order_num` int DEFAULT '0' COMMENT '排序', `router` varchar(255) DEFAULT NULL COMMENT '菜单地址', `view_path` varchar(255) DEFAULT NULL COMMENT '视图地址', `keep_alive` bit(1) DEFAULT b'1' COMMENT '路由缓存', `is_show` bit(1) DEFAULT b'1' COMMENT '是否显示', PRIMARY KEY (`id`), KEY `auto_idx_base_sys_menu_parent_id` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统菜单表'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `base_sys_menu` -- LOCK TABLES `base_sys_menu` WRITE; /*!40000 ALTER TABLE `base_sys_menu` DISABLE KEYS */; INSERT INTO `base_sys_menu` (`id`, `create_time`, `update_time`, `parent_id`, `name`, `perms`, `type`, `icon`, `order_num`, `router`, `view_path`, `keep_alive`, `is_show`) VALUES (1,'2025-11-19 02:45:00','2025-11-19 02:45:00',NULL,'系统管理',NULL,0,'icon-set',2,'/sys',NULL,_binary '',_binary ''),(2,'2025-11-19 02:45:00','2025-11-19 02:45:00',1,'权限管理',NULL,0,'icon-auth',1,NULL,NULL,_binary '\0',_binary ''),(3,'2025-11-19 02:45:00','2025-11-19 02:45:00',2,'菜单列表',NULL,1,'icon-menu',2,'/sys/menu','modules/base/views/menu/index.vue',_binary '',_binary ''),(4,'2025-11-19 02:45:00','2025-11-19 02:45:00',3,'新增','base:sys:menu:add',2,NULL,1,NULL,NULL,_binary '\0',_binary ''),(5,'2025-11-19 02:45:00','2025-11-19 02:45:00',3,'删除','base:sys:menu:delete',2,NULL,2,NULL,NULL,_binary '\0',_binary ''),(6,'2025-11-19 02:45:00','2025-11-19 02:45:00',3,'查询','base:sys:menu:page,base:sys:menu:list,base:sys:menu:info',2,NULL,4,NULL,NULL,_binary '\0',_binary ''),(7,'2025-11-19 02:45:00','2025-11-19 02:45:00',3,'参数',NULL,1,'icon-goods',0,'/test/aa','modules/base/views/info.vue',_binary '',_binary ''),(8,'2025-11-19 02:45:00','2025-11-19 02:45:00',3,'编辑','base:sys:menu:info,base:sys:menu:update',2,NULL,0,NULL,NULL,_binary '',_binary ''),(9,'2025-11-19 02:45:00','2025-11-19 02:45:00',2,'角色列表',NULL,1,'icon-dept',3,'/sys/role','cool/modules/base/views/role.vue',_binary '',_binary ''),(10,'2025-11-19 02:45:00','2025-11-19 02:45:00',9,'新增','base:sys:role:add',2,NULL,1,NULL,NULL,_binary '\0',_binary ''),(11,'2025-11-19 02:45:00','2025-11-19 02:45:00',9,'删除','base:sys:role:delete',2,NULL,2,NULL,NULL,_binary '\0',_binary ''),(12,'2025-11-19 02:45:00','2025-11-19 02:45:00',9,'修改','base:sys:role:update',2,NULL,3,NULL,NULL,_binary '\0',_binary ''),(13,'2025-11-19 02:45:00','2025-11-19 02:45:00',9,'查询','base:sys:role:page,base:sys:role:list,base:sys:role:info',2,NULL,4,NULL,NULL,_binary '\0',_binary ''),(14,'2025-11-19 02:45:00','2025-11-19 02:45:00',2,'用户列表',NULL,1,'icon-user',0,'/sys/user','modules/base/views/user/index.vue',_binary '',_binary ''),(15,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'部门列表','base:sys:department:list',2,NULL,0,NULL,NULL,_binary '',_binary ''),(16,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'新增部门','base:sys:department:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(17,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'更新部门','base:sys:department:update',2,NULL,0,NULL,NULL,_binary '',_binary ''),(18,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'删除部门','base:sys:department:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(19,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'部门排序','base:sys:department:order',2,NULL,0,NULL,NULL,_binary '',_binary ''),(20,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'用户转移','base:sys:user:move',2,NULL,0,NULL,NULL,_binary '',_binary ''),(21,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'新增','base:sys:user:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(22,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'删除','base:sys:user:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(23,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'修改','base:sys:user:delete,base:sys:user:update',2,NULL,0,NULL,NULL,_binary '',_binary ''),(24,'2025-11-19 02:45:00','2025-11-19 02:45:00',14,'查询','base:sys:user:page,base:sys:user:list,base:sys:user:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(25,'2025-11-19 02:45:00','2025-11-19 02:45:00',1,'参数配置',NULL,0,'icon-params',3,NULL,NULL,_binary '',_binary ''),(26,'2025-11-19 02:45:00','2025-11-19 02:45:00',25,'参数列表',NULL,1,'icon-menu',0,'/sys/param','cool/modules/base/views/param.vue',_binary '',_binary ''),(27,'2025-11-19 02:45:00','2025-11-19 02:45:00',26,'新增','base:sys:param:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(28,'2025-11-19 02:45:00','2025-11-19 02:45:00',26,'修改','base:sys:param:info,base:sys:param:update',2,NULL,0,NULL,NULL,_binary '',_binary ''),(29,'2025-11-19 02:45:00','2025-11-19 02:45:00',26,'删除','base:sys:param:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(30,'2025-11-19 02:45:00','2025-11-19 02:45:00',26,'查看','base:sys:param:page,base:sys:param:list,base:sys:param:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(31,'2025-11-19 02:45:00','2025-11-19 02:45:00',1,'监控管理',NULL,0,'icon-monitor',9,NULL,NULL,_binary '',_binary ''),(32,'2025-11-19 02:45:00','2025-11-19 02:45:00',31,'请求日志',NULL,1,'icon-log',1,'/sys/log','cool/modules/base/views/log.vue',_binary '',_binary ''),(33,'2025-11-19 02:45:00','2025-11-19 02:45:00',32,'权限','base:sys:log:page,base:sys:log:clear,base:sys:log:getKeep,base:sys:log:setKeep',2,NULL,1,NULL,NULL,_binary '\0',_binary ''),(34,'2025-11-19 02:45:00','2025-11-19 02:45:00',1,'任务管理',NULL,0,'icon-activity',9,NULL,NULL,_binary '',_binary ''),(35,'2025-11-19 02:45:00','2025-11-19 02:45:00',34,'任务列表',NULL,1,'icon-menu',0,'/task/list','modules/task/views/list.vue',_binary '',_binary ''),(36,'2025-11-19 02:45:00','2025-11-19 02:45:00',35,'权限','task:info:page,task:info:list,task:info:info,task:info:add,task:info:delete,task:info:update,task:info:stop,task:info:start,task:info:once,task:info:log',2,NULL,0,NULL,NULL,_binary '',_binary ''),(37,'2025-11-19 02:45:00','2026-01-19 12:38:49',NULL,'框架教程',NULL,0,'icon-task',98,'/tutorial',NULL,_binary '',_binary '\0'),(38,'2025-11-19 02:45:00','2025-11-27 16:25:17',37,'教程文档',NULL,1,'icon-log',0,'/tutorial/doc','https://vue.cool-admin.com/src/guide/quick.html',_binary '',_binary ''),(39,'2025-11-19 02:45:00','2025-11-19 02:45:00',37,'crud 示例',NULL,1,'icon-favor',1,'/demo/crud','modules/demo/views/crud/index.vue',_binary '',_binary ''),(40,'2025-11-19 02:45:00','2025-11-19 02:45:00',NULL,'通用',NULL,0,'icon-radioboxfill',99,NULL,NULL,_binary '',_binary '\0'),(41,'2025-11-19 02:45:00','2025-11-19 02:45:00',40,'图片上传','space:info:page,space:info:list,space:info:info,space:info:add,space:info:delete,space:info:update,space:type:page,space:type:list,space:type:info,space:type:add,space:type:delete,space:type:update',2,NULL,1,NULL,NULL,_binary '',_binary ''),(42,'2025-11-19 02:45:00','2025-11-27 16:51:33',NULL,'首页',NULL,1,'icon-vue',0,'/','modules/demo/views/home/index.vue',_binary '',_binary ''),(43,'2025-11-19 02:45:00','2025-11-19 02:45:00',NULL,'数据管理',NULL,0,'icon-data',7,NULL,NULL,_binary '',_binary ''),(44,'2025-11-19 02:45:00','2025-11-19 02:45:00',43,'字典管理',NULL,1,'icon-dict',3,'/dict/list','modules/dict/views/list.vue',_binary '',_binary ''),(45,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'删除','dict:info:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(46,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'修改','dict:info:update,dict:info:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(47,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'获得字典数据','dict:info:data',2,NULL,0,NULL,NULL,_binary '',_binary ''),(48,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'单个信息','dict:info:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(49,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'列表查询','dict:info:list',2,NULL,0,NULL,NULL,_binary '',_binary ''),(50,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'分页查询','dict:info:page',2,NULL,0,NULL,NULL,_binary '',_binary ''),(51,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'新增','dict:info:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(52,'2025-11-19 02:45:00','2025-11-19 02:45:00',44,'组权限','dict:type:list,dict:type:update,dict:type:delete,dict:type:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(53,'2025-11-19 02:45:00','2025-11-19 02:45:00',43,'数据回收站',NULL,1,'icon-delete',6,'/recycle/data','modules/recycle/views/data.vue',_binary '',_binary ''),(54,'2025-11-19 02:45:00','2025-11-19 02:45:00',53,'恢复数据','recycle:data:restore',2,NULL,0,NULL,NULL,_binary '',_binary ''),(55,'2025-11-19 02:45:00','2025-11-19 02:45:00',53,'单个信息','recycle:data:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(56,'2025-11-19 02:45:00','2025-11-19 02:45:00',53,'分页查询','recycle:data:page',2,NULL,0,NULL,NULL,_binary '',_binary ''),(57,'2025-11-19 02:45:00','2025-11-19 02:45:00',43,'文件管理',NULL,1,'icon-log',5,'/upload/list','modules/space/views/list.vue',_binary '',_binary ''),(58,'2025-11-19 02:45:00','2025-11-19 02:45:00',57,'权限','space:type:delete,space:type:update,space:type:info,space:type:list,space:type:page,space:type:add,space:info:getConfig,space:info:delete,space:info:update,space:info:info,space:info:list,space:info:page,space:info:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(59,'2025-11-19 02:45:00','2026-01-19 18:20:49',NULL,'用户管理',NULL,0,'icon-user',11,NULL,NULL,_binary '',_binary '\0'),(60,'2025-11-19 02:45:00','2025-11-19 02:45:00',59,'用户列表',NULL,1,'icon-menu',1,'/user/list','modules/user/views/list.vue',_binary '',_binary ''),(61,'2025-11-19 02:45:00','2025-11-19 02:45:00',60,'删除','user:info:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(62,'2025-11-19 02:45:00','2025-11-19 02:45:00',60,'修改','user:info:update,user:info:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(63,'2025-11-19 02:45:00','2025-11-19 02:45:00',60,'单个信息','user:info:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(64,'2025-11-19 02:45:01','2025-11-19 02:45:01',60,'列表查询','user:info:list',2,NULL,0,NULL,NULL,_binary '',_binary ''),(65,'2025-11-19 02:45:01','2025-11-19 02:45:01',60,'分页查询','user:info:page',2,NULL,0,NULL,NULL,_binary '',_binary ''),(66,'2025-11-19 02:45:01','2025-11-19 02:45:01',60,'新增','user:info:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(67,'2025-11-19 02:45:01','2025-11-19 02:45:01',44,'字典类型','dict:type:delete,dict:type:update,dict:type:info,dict:type:list,dict:type:page,dict:type:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(68,'2025-11-19 02:45:01','2026-01-19 18:21:26',NULL,'扩展管理',NULL,0,'icon-favor',8,NULL,NULL,_binary '',_binary '\0'),(69,'2025-11-19 02:45:01','2025-11-19 02:45:01',68,'插件列表',NULL,1,'icon-list',1,'/helper/plugins','modules/helper/views/plugins.vue',_binary '',_binary ''),(70,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'删除','plugin:info:delete',2,NULL,0,NULL,NULL,_binary '',_binary ''),(71,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'分页查询','plugin:info:page',2,NULL,0,NULL,NULL,_binary '',_binary ''),(72,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'单个信息','plugin:info:info',2,NULL,0,NULL,NULL,_binary '',_binary ''),(73,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'安装插件','plugin:info:install',2,NULL,0,NULL,NULL,_binary '',_binary ''),(74,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'修改','plugin:info:update',2,NULL,0,NULL,NULL,_binary '',_binary ''),(75,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'列表查询','plugin:info:list',2,NULL,0,NULL,NULL,_binary '',_binary ''),(76,'2025-11-19 02:45:01','2025-11-19 02:45:01',69,'新增','plugin:info:add',2,NULL,0,NULL,NULL,_binary '',_binary ''),(96,'2025-11-27 16:45:58','2025-11-27 16:47:25',37,'Unix教程文档',NULL,1,'icon-log',0,'/tutorial/doc2','https://unix.cool-js.com/src/introduce/quick.html',_binary '',_binary ''),(97,NULL,'2026-01-19 12:39:20',NULL,'农创管理',NULL,0,'icon-menu',10,NULL,NULL,_binary '',_binary ''),(98,NULL,'2026-01-19 12:37:30',97,'种子管理',NULL,1,'icon-menu',1,'/nongchuang/seed/list','nongchuang/views/seed.vue',_binary '',_binary ''),(99,NULL,NULL,97,'商品管理',NULL,1,'icon-goods',2,'/nongchuang/product/list','nongchuang/views/product.vue',_binary '',_binary ''),(100,NULL,'2026-01-19 12:38:01',97,'订单管理',NULL,1,'icon-file',3,'/nongchuang/order/list','nongchuang/views/order.vue',_binary '',_binary ''),(101,NULL,NULL,97,'认养管理',NULL,1,'icon-favor',4,'/nongchuang/adoption/list','nongchuang/views/adoption.vue',_binary '',_binary ''),(102,NULL,'2026-01-19 12:38:10',97,'设备管理',NULL,1,'icon-monitor',5,'/nongchuang/device/list','nongchuang/views/device.vue',_binary '',_binary ''),(103,NULL,NULL,97,'农场管理',NULL,1,'icon-dept',6,'/nongchuang/farm/list','nongchuang/views/farm.vue',_binary '',_binary ''),(104,NULL,NULL,97,'用户管理',NULL,1,'icon-user',7,'/nongchuang/user/list','nongchuang/views/user.vue',_binary '',_binary ''),(105,NULL,'2026-01-19 12:38:24',97,'礼品卡管理',NULL,1,'icon-vip',8,'/nongchuang/giftCard/list','nongchuang/views/giftCard.vue',_binary '',_binary ''),(106,NULL,NULL,97,'用户种子记录',NULL,1,'icon-log',9,'/nongchuang/userSeed/list','nongchuang/views/userSeed.vue',_binary '',_binary ''),(107,NULL,'2026-01-19 12:38:31',97,'用户认养记录',NULL,1,'icon-folder',10,'/nongchuang/userAdoption/list','nongchuang/views/userAdoption.vue',_binary '',_binary ''),(108,NULL,'2026-01-19 12:38:39',97,'数据统计',NULL,1,'icon-count',11,'/nongchuang/stats/dashboard','nongchuang/views/stats.vue',_binary '',_binary ''),(121,'2026-01-20 15:04:37','2026-01-20 15:10:23',97,'菜单管理',NULL,1,'icon-list',10,'/nongchuang/app-menu/list','nongchuang/views/app-menu',_binary '',_binary ''),(122,'2026-01-20 15:04:37','2026-01-20 15:10:53',97,'分类管理',NULL,1,'icon-app',11,'/nongchuang/category/list','nongchuang/views/category',_binary '',_binary ''); /*!40000 ALTER TABLE `base_sys_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `base_sys_param` -- DROP TABLE IF EXISTS `base_sys_param`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `base_sys_param` ( `id` bigint NOT NULL AUTO_INCREMENT, `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `key_name` varchar(255) NOT NULL COMMENT '键', `name` varchar(255) DEFAULT NULL COMMENT '名称', `data` text COMMENT '数据', `data_type` int DEFAULT '0' COMMENT '数据类型 0:字符串 1:数组 2:键值对', `remark` varchar(255) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `auto_idx_base_sys_param_key_name` (`key_name`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统参数配置'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `base_sys_param` -- LOCK TABLES `base_sys_param` WRITE; /*!40000 ALTER TABLE `base_sys_param` DISABLE KEYS */; INSERT INTO `base_sys_param` (`id`, `create_time`, `update_time`, `key_name`, `name`, `data`, `data_type`, `remark`) VALUES (1,'2025-11-19 02:45:00','2025-11-19 02:45:00','rich','富文本参数','
xxx
xxxxxxxxxx