更新sql脚本
parent
5577a54684
commit
43c4b4c954
|
@ -11,7 +11,7 @@
|
||||||
Target Server Version : 50735
|
Target Server Version : 50735
|
||||||
File Encoding : 65001
|
File Encoding : 65001
|
||||||
|
|
||||||
Date: 08/10/2023 21:09:46
|
Date: 09/10/2023 16:04:46
|
||||||
*/
|
*/
|
||||||
|
|
||||||
SET NAMES utf8mb4;
|
SET NAMES utf8mb4;
|
||||||
|
@ -25,17 +25,18 @@ CREATE TABLE `book_info` (
|
||||||
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
|
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
|
||||||
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名称',
|
`name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名称',
|
||||||
`price` decimal(10, 2) NOT NULL COMMENT '价格',
|
`price` decimal(10, 2) NOT NULL COMMENT '价格',
|
||||||
`create_by` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '创建人',
|
`create_by` bigint(20) NOT NULL COMMENT '创建人',
|
||||||
`create_time` datetime(0) NOT NULL COMMENT '创建时间',
|
`create_time` datetime(0) NOT NULL COMMENT '创建时间',
|
||||||
|
`update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
||||||
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '书籍信息' ROW_FORMAT = Dynamic;
|
) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '书籍信息' ROW_FORMAT = Dynamic;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Records of book_info
|
-- Records of book_info
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
INSERT INTO `book_info` VALUES (1, '水浒传', 65.36, 'zhangsan', '2023-10-08 19:50:50');
|
INSERT INTO `book_info` VALUES (11, '1213', 1231.00, 1, '2023-10-09 14:55:25', NULL, NULL);
|
||||||
INSERT INTO `book_info` VALUES (2, '三国演义', 65.36, 'zhangsan', '2023-10-08 19:52:18');
|
INSERT INTO `book_info` VALUES (12, '水浒站', 11.00, 1, '2023-10-09 15:01:39', NULL, NULL);
|
||||||
INSERT INTO `book_info` VALUES (3, '1', 2.00, 'admin', '2023-10-08 20:41:54');
|
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Table structure for gen_table
|
-- Table structure for gen_table
|
||||||
|
@ -542,7 +543,7 @@ CREATE TABLE `sys_logininfor` (
|
||||||
PRIMARY KEY (`info_id`) USING BTREE,
|
PRIMARY KEY (`info_id`) USING BTREE,
|
||||||
INDEX `idx_sys_logininfor_s`(`status`) USING BTREE,
|
INDEX `idx_sys_logininfor_s`(`status`) USING BTREE,
|
||||||
INDEX `idx_sys_logininfor_lt`(`login_time`) USING BTREE
|
INDEX `idx_sys_logininfor_lt`(`login_time`) USING BTREE
|
||||||
) ENGINE = InnoDB AUTO_INCREMENT = 109 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统访问记录' ROW_FORMAT = Dynamic;
|
) ENGINE = InnoDB AUTO_INCREMENT = 113 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统访问记录' ROW_FORMAT = Dynamic;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Records of sys_logininfor
|
-- Records of sys_logininfor
|
||||||
|
@ -556,6 +557,10 @@ INSERT INTO `sys_logininfor` VALUES (105, 'admin', '127.0.0.1', '内网IP', 'Chr
|
||||||
INSERT INTO `sys_logininfor` VALUES (106, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 15:59:58');
|
INSERT INTO `sys_logininfor` VALUES (106, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 15:59:58');
|
||||||
INSERT INTO `sys_logininfor` VALUES (107, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 19:55:39');
|
INSERT INTO `sys_logininfor` VALUES (107, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 19:55:39');
|
||||||
INSERT INTO `sys_logininfor` VALUES (108, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 20:26:12');
|
INSERT INTO `sys_logininfor` VALUES (108, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-08 20:26:12');
|
||||||
|
INSERT INTO `sys_logininfor` VALUES (109, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-09 08:19:31');
|
||||||
|
INSERT INTO `sys_logininfor` VALUES (110, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-09 10:54:20');
|
||||||
|
INSERT INTO `sys_logininfor` VALUES (111, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-09 14:54:43');
|
||||||
|
INSERT INTO `sys_logininfor` VALUES (112, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-09 15:47:17');
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Table structure for sys_menu
|
-- Table structure for sys_menu
|
||||||
|
@ -728,7 +733,7 @@ CREATE TABLE `sys_oper_log` (
|
||||||
INDEX `idx_sys_oper_log_bt`(`business_type`) USING BTREE,
|
INDEX `idx_sys_oper_log_bt`(`business_type`) USING BTREE,
|
||||||
INDEX `idx_sys_oper_log_s`(`status`) USING BTREE,
|
INDEX `idx_sys_oper_log_s`(`status`) USING BTREE,
|
||||||
INDEX `idx_sys_oper_log_ot`(`oper_time`) USING BTREE
|
INDEX `idx_sys_oper_log_ot`(`oper_time`) USING BTREE
|
||||||
) ENGINE = InnoDB AUTO_INCREMENT = 119 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '操作日志记录' ROW_FORMAT = Dynamic;
|
) ENGINE = InnoDB AUTO_INCREMENT = 132 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '操作日志记录' ROW_FORMAT = Dynamic;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Records of sys_oper_log
|
-- Records of sys_oper_log
|
||||||
|
@ -752,6 +757,19 @@ INSERT INTO `sys_oper_log` VALUES (115, '书籍信息', 1, 'com.ruoyi.book.contr
|
||||||
INSERT INTO `sys_oper_log` VALUES (116, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:38:40\",\"name\":\"1\",\"params\":{},\"price\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2023-10-08 20:38:40', 14);
|
INSERT INTO `sys_oper_log` VALUES (116, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:38:40\",\"name\":\"1\",\"params\":{},\"price\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2023-10-08 20:38:40', 14);
|
||||||
INSERT INTO `sys_oper_log` VALUES (117, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:39:59\",\"name\":\"1\",\"params\":{},\"price\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2023-10-08 20:39:59', 17);
|
INSERT INTO `sys_oper_log` VALUES (117, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:39:59\",\"name\":\"1\",\"params\":{},\"price\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2023-10-08 20:39:59', 17);
|
||||||
INSERT INTO `sys_oper_log` VALUES (118, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:41:54\",\"id\":3,\"name\":\"1\",\"params\":{},\"price\":2}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-08 20:41:54', 37);
|
INSERT INTO `sys_oper_log` VALUES (118, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-08 20:41:54\",\"id\":3,\"name\":\"1\",\"params\":{},\"price\":2}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-08 20:41:54', 37);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (119, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 11:24:34\",\"name\":\"2\",\"params\":{},\"price\":3}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO book_info ( name, price, create_by, create_date ) VALUES ( ?, ?, ?, ? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'', '2023-10-09 11:24:34', 31);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (120, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 11:24:38\",\"name\":\"2\",\"params\":{},\"price\":3}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO book_info ( name, price, create_by, create_date ) VALUES ( ?, ?, ?, ? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'', '2023-10-09 11:24:39', 3);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (121, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 11:25:16\",\"name\":\"2\",\"params\":{},\"price\":3}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\r\n### The error may exist in com/ruoyi/book/mapper/BookInfoMapper.java (best guess)\r\n### The error may involve com.ruoyi.book.mapper.BookInfoMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO book_info ( name, price, create_by, create_date ) VALUES ( ?, ?, ?, ? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'create_date\' in \'field list\'', '2023-10-09 11:25:16', 3);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (122, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 11:27:04\",\"id\":4,\"name\":\"2\",\"params\":{},\"price\":3}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 11:27:05', 40);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (123, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:01\",\"id\":5,\"name\":\"3\",\"params\":{},\"price\":4}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:01', 32);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (124, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:04\",\"id\":6,\"name\":\"5\",\"params\":{},\"price\":6}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:04', 6);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (125, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:08\",\"id\":7,\"name\":\"7\",\"params\":{},\"price\":8}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:08', 6);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (126, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:12\",\"id\":8,\"name\":\"9\",\"params\":{},\"price\":9}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:12', 5);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (127, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:17\",\"id\":9,\"name\":\"11\",\"params\":{},\"price\":22}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:17', 5);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (128, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:20\",\"id\":10,\"name\":\"33\",\"params\":{},\"price\":22}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:20', 6);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (129, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 14:55:25\",\"id\":11,\"name\":\"1213\",\"params\":{},\"price\":1231}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:55:25', 5);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (130, '书籍信息', 3, 'com.ruoyi.book.controller.BookInfoController.remove()', 'DELETE', 1, 'admin', NULL, '/book/info/1,2,3,4,5,6,7,8,9,10', '127.0.0.1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 14:56:32', 23);
|
||||||
|
INSERT INTO `sys_oper_log` VALUES (131, '书籍信息', 1, 'com.ruoyi.book.controller.BookInfoController.add()', 'POST', 1, 'admin', NULL, '/book/info', '127.0.0.1', '内网IP', '{\"createBy\":1,\"createTime\":\"2023-10-09 15:01:39\",\"id\":12,\"name\":\"水浒站\",\"params\":{},\"price\":11}', '{\"code\":200,\"msg\":\"操作成功\"}', 0, NULL, '2023-10-09 15:01:39', 36);
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Table structure for sys_post
|
-- Table structure for sys_post
|
||||||
|
@ -952,7 +970,7 @@ CREATE TABLE `sys_user` (
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Records of sys_user
|
-- Records of sys_user
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
INSERT INTO `sys_user` VALUES (1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2023-10-08 20:26:13', 1, '2023-09-29 11:47:27', NULL, '2023-10-08 20:26:12', '管理员');
|
INSERT INTO `sys_user` VALUES (1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2023-10-09 15:47:17', 1, '2023-09-29 11:47:27', NULL, '2023-10-09 15:47:17', '管理员');
|
||||||
INSERT INTO `sys_user` VALUES (2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2023-09-29 11:47:27', 1, '2023-09-29 11:47:27', 1, '2023-09-29 15:50:31', '测试员');
|
INSERT INTO `sys_user` VALUES (2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2023-09-29 11:47:27', 1, '2023-09-29 11:47:27', 1, '2023-09-29 15:50:31', '测试员');
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
|
|
Loading…
Reference in New Issue