/* Navicat Premium Data Transfer Source Server : 远程 Source Server Type : MySQL Source Server Version : 50744 (5.7.44) Source Host : 8.137.112.156:3307 Source Schema : crm Target Server Type : MySQL Target Server Version : 50744 (5.7.44) File Encoding : 65001 Date: 18/09/2024 15:04:46 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for sys_roles_depts -- ---------------------------- DROP TABLE IF EXISTS `sys_roles_depts`; CREATE TABLE `sys_roles_depts` ( `role_id` bigint(20) NOT NULL, `dept_id` bigint(20) NOT NULL, PRIMARY KEY (`role_id`, `dept_id`) USING BTREE, INDEX `FK7qg6itn5ajdoa9h9o78v9ksur`(`dept_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin COMMENT = '角色部门关联' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_roles_depts -- ---------------------------- INSERT INTO `sys_roles_depts` VALUES (3, 2); INSERT INTO `sys_roles_depts` VALUES (3, 5); INSERT INTO `sys_roles_depts` VALUES (3, 6); INSERT INTO `sys_roles_depts` VALUES (3, 7); SET FOREIGN_KEY_CHECKS = 1;