khyznh20240221.sql 115 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : localhost
  4. Source Server Type : MySQL
  5. Source Server Version : 80200 (8.2.0)
  6. Source Host : localhost:3306
  7. Source Schema : khyznh
  8. Target Server Type : MySQL
  9. Target Server Version : 80200 (8.2.0)
  10. File Encoding : 65001
  11. Date: 21/02/2024 18:14:14
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for gen_table
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `gen_table`;
  19. CREATE TABLE `gen_table` (
  20. `table_id` bigint NOT NULL COMMENT '编号',
  21. `data_name` varchar(200) DEFAULT '' COMMENT '数据源名称',
  22. `table_name` varchar(200) DEFAULT '' COMMENT '表名称',
  23. `table_comment` varchar(500) DEFAULT '' COMMENT '表描述',
  24. `sub_table_name` varchar(64) DEFAULT NULL COMMENT '关联子表的表名',
  25. `sub_table_fk_name` varchar(64) DEFAULT NULL COMMENT '子表关联的外键名',
  26. `class_name` varchar(100) DEFAULT '' COMMENT '实体类名称',
  27. `tpl_category` varchar(200) DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
  28. `package_name` varchar(100) DEFAULT NULL COMMENT '生成包路径',
  29. `module_name` varchar(30) DEFAULT NULL COMMENT '生成模块名',
  30. `business_name` varchar(30) DEFAULT NULL COMMENT '生成业务名',
  31. `function_name` varchar(50) DEFAULT NULL COMMENT '生成功能名',
  32. `function_author` varchar(50) DEFAULT NULL COMMENT '生成功能作者',
  33. `gen_type` char(1) DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
  34. `gen_path` varchar(200) DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
  35. `options` varchar(1000) DEFAULT NULL COMMENT '其它生成选项',
  36. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  37. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  38. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  39. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  40. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  41. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  42. PRIMARY KEY (`table_id`)
  43. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表';
  44. -- ----------------------------
  45. -- Records of gen_table
  46. -- ----------------------------
  47. BEGIN;
  48. COMMIT;
  49. -- ----------------------------
  50. -- Table structure for gen_table_column
  51. -- ----------------------------
  52. DROP TABLE IF EXISTS `gen_table_column`;
  53. CREATE TABLE `gen_table_column` (
  54. `column_id` bigint NOT NULL COMMENT '编号',
  55. `table_id` bigint DEFAULT NULL COMMENT '归属表编号',
  56. `column_name` varchar(200) DEFAULT NULL COMMENT '列名称',
  57. `column_comment` varchar(500) DEFAULT NULL COMMENT '列描述',
  58. `column_type` varchar(100) DEFAULT NULL COMMENT '列类型',
  59. `java_type` varchar(500) DEFAULT NULL COMMENT 'JAVA类型',
  60. `java_field` varchar(200) DEFAULT NULL COMMENT 'JAVA字段名',
  61. `is_pk` char(1) DEFAULT NULL COMMENT '是否主键(1是)',
  62. `is_increment` char(1) DEFAULT NULL COMMENT '是否自增(1是)',
  63. `is_required` char(1) DEFAULT NULL COMMENT '是否必填(1是)',
  64. `is_insert` char(1) DEFAULT NULL COMMENT '是否为插入字段(1是)',
  65. `is_edit` char(1) DEFAULT NULL COMMENT '是否编辑字段(1是)',
  66. `is_list` char(1) DEFAULT NULL COMMENT '是否列表字段(1是)',
  67. `is_query` char(1) DEFAULT NULL COMMENT '是否查询字段(1是)',
  68. `query_type` varchar(200) DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
  69. `html_type` varchar(200) DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
  70. `dict_type` varchar(200) DEFAULT '' COMMENT '字典类型',
  71. `sort` int DEFAULT NULL COMMENT '排序',
  72. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  73. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  74. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  75. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  76. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  77. PRIMARY KEY (`column_id`)
  78. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表字段';
  79. -- ----------------------------
  80. -- Records of gen_table_column
  81. -- ----------------------------
  82. BEGIN;
  83. COMMIT;
  84. -- ----------------------------
  85. -- Table structure for sys_client
  86. -- ----------------------------
  87. DROP TABLE IF EXISTS `sys_client`;
  88. CREATE TABLE `sys_client` (
  89. `id` bigint NOT NULL COMMENT 'id',
  90. `client_id` varchar(64) DEFAULT NULL COMMENT '客户端id',
  91. `client_key` varchar(32) DEFAULT NULL COMMENT '客户端key',
  92. `client_secret` varchar(255) DEFAULT NULL COMMENT '客户端秘钥',
  93. `grant_type` varchar(255) DEFAULT NULL COMMENT '授权类型',
  94. `device_type` varchar(32) DEFAULT NULL COMMENT '设备类型',
  95. `active_timeout` int DEFAULT '1800' COMMENT 'token活跃超时时间',
  96. `timeout` int DEFAULT '604800' COMMENT 'token固定超时',
  97. `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
  98. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  99. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  100. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  101. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  102. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  103. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  104. PRIMARY KEY (`id`)
  105. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统授权表';
  106. -- ----------------------------
  107. -- Records of sys_client
  108. -- ----------------------------
  109. BEGIN;
  110. INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, '0', '0', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40');
  111. INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, '0', '0', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40');
  112. COMMIT;
  113. -- ----------------------------
  114. -- Table structure for sys_config
  115. -- ----------------------------
  116. DROP TABLE IF EXISTS `sys_config`;
  117. CREATE TABLE `sys_config` (
  118. `config_id` bigint NOT NULL COMMENT '参数主键',
  119. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  120. `config_name` varchar(100) DEFAULT '' COMMENT '参数名称',
  121. `config_key` varchar(100) DEFAULT '' COMMENT '参数键名',
  122. `config_value` varchar(500) DEFAULT '' COMMENT '参数键值',
  123. `config_type` char(1) DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
  124. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  125. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  126. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  127. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  128. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  129. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  130. PRIMARY KEY (`config_id`)
  131. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='参数配置表';
  132. -- ----------------------------
  133. -- Records of sys_config
  134. -- ----------------------------
  135. BEGIN;
  136. INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
  137. INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '初始化密码 123456');
  138. INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '深色主题theme-dark,浅色主题theme-light');
  139. INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '是否开启注册用户功能(true开启,false关闭)');
  140. INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'true:开启, false:关闭');
  141. COMMIT;
  142. -- ----------------------------
  143. -- Table structure for sys_dept
  144. -- ----------------------------
  145. DROP TABLE IF EXISTS `sys_dept`;
  146. CREATE TABLE `sys_dept` (
  147. `dept_id` bigint NOT NULL COMMENT '部门id',
  148. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  149. `parent_id` bigint DEFAULT '0' COMMENT '父部门id',
  150. `ancestors` varchar(500) DEFAULT '' COMMENT '祖级列表',
  151. `dept_name` varchar(30) DEFAULT '' COMMENT '部门名称',
  152. `order_num` int DEFAULT '0' COMMENT '显示顺序',
  153. `leader` bigint DEFAULT NULL COMMENT '负责人',
  154. `phone` varchar(11) DEFAULT NULL COMMENT '联系电话',
  155. `email` varchar(50) DEFAULT NULL COMMENT '邮箱',
  156. `status` char(1) DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
  157. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  158. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  159. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  160. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  161. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  162. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  163. PRIMARY KEY (`dept_id`)
  164. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='部门表';
  165. -- ----------------------------
  166. -- Records of sys_dept
  167. -- ----------------------------
  168. BEGIN;
  169. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, '000000', 0, '0', 'XXX科技', 0, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  170. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, '000000', 100, '0,100', '深圳总公司', 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  171. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, '000000', 100, '0,100', '长沙分公司', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  172. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, '000000', 101, '0,100,101', '研发部门', 1, 1, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  173. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, '000000', 101, '0,100,101', '市场部门', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  174. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, '000000', 101, '0,100,101', '测试部门', 3, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  175. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, '000000', 101, '0,100,101', '财务部门', 4, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  176. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, '000000', 101, '0,100,101', '运维部门', 5, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  177. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, '000000', 102, '0,100,102', '市场部门', 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  178. INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, '000000', 102, '0,100,102', '财务部门', 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  179. COMMIT;
  180. -- ----------------------------
  181. -- Table structure for sys_dict_data
  182. -- ----------------------------
  183. DROP TABLE IF EXISTS `sys_dict_data`;
  184. CREATE TABLE `sys_dict_data` (
  185. `dict_code` bigint NOT NULL COMMENT '字典编码',
  186. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  187. `dict_sort` int DEFAULT '0' COMMENT '字典排序',
  188. `dict_label` varchar(100) DEFAULT '' COMMENT '字典标签',
  189. `dict_value` varchar(100) DEFAULT '' COMMENT '字典键值',
  190. `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
  191. `css_class` varchar(100) DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
  192. `list_class` varchar(100) DEFAULT NULL COMMENT '表格回显样式',
  193. `is_default` char(1) DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
  194. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  195. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  196. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  197. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  198. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  199. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  200. PRIMARY KEY (`dict_code`)
  201. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典数据表';
  202. -- ----------------------------
  203. -- Records of sys_dict_data
  204. -- ----------------------------
  205. BEGIN;
  206. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 1, '男', '0', 'sys_user_sex', '', '', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别男');
  207. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 2, '女', '1', 'sys_user_sex', '', '', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别女');
  208. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 3, '未知', '2', 'sys_user_sex', '', '', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '性别未知');
  209. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '显示菜单');
  210. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '隐藏菜单');
  211. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
  212. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '停用状态');
  213. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统默认是');
  214. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, '000000', 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统默认否');
  215. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, '000000', 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知');
  216. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, '000000', 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '公告');
  217. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, '000000', 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
  218. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, '000000', 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '关闭状态');
  219. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, '000000', 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '新增操作');
  220. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, '000000', 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '修改操作');
  221. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, '000000', 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '删除操作');
  222. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '000000', 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '授权操作');
  223. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '000000', 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '导出操作');
  224. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, '000000', 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '导入操作');
  225. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, '000000', 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '强退操作');
  226. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, '000000', 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '生成操作');
  227. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, '000000', 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '清空操作');
  228. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, '000000', 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '正常状态');
  229. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, '000000', 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '停用状态');
  230. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, '000000', 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '其他操作');
  231. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (30, '000000', 0, '密码认证', 'password', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '密码认证');
  232. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '000000', 0, '短信认证', 'sms', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '短信认证');
  233. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '000000', 0, '邮件认证', 'email', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '邮件认证');
  234. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (33, '000000', 0, '小程序认证', 'xcx', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '小程序认证');
  235. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (34, '000000', 0, '三方登录认证', 'social', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '三方登录认证');
  236. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'PC');
  237. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (36, '000000', 0, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '安卓');
  238. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'iOS');
  239. INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (38, '000000', 0, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '小程序');
  240. COMMIT;
  241. -- ----------------------------
  242. -- Table structure for sys_dict_type
  243. -- ----------------------------
  244. DROP TABLE IF EXISTS `sys_dict_type`;
  245. CREATE TABLE `sys_dict_type` (
  246. `dict_id` bigint NOT NULL COMMENT '字典主键',
  247. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  248. `dict_name` varchar(100) DEFAULT '' COMMENT '字典名称',
  249. `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型',
  250. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  251. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  252. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  253. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  254. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  255. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  256. PRIMARY KEY (`dict_id`),
  257. UNIQUE KEY `tenant_id` (`tenant_id`,`dict_type`)
  258. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典类型表';
  259. -- ----------------------------
  260. -- Records of sys_dict_type
  261. -- ----------------------------
  262. BEGIN;
  263. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '用户性别', 'sys_user_sex', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '用户性别列表');
  264. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '菜单状态', 'sys_show_hide', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '菜单状态列表');
  265. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '系统开关', 'sys_normal_disable', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统开关列表');
  266. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', '系统是否', 'sys_yes_no', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统是否列表');
  267. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', '通知类型', 'sys_notice_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知类型列表');
  268. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '000000', '通知状态', 'sys_notice_status', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知状态列表');
  269. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '000000', '操作类型', 'sys_oper_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '操作类型列表');
  270. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '000000', '系统状态', 'sys_common_status', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '登录状态列表');
  271. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', '授权类型', 'sys_grant_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '认证授权类型');
  272. INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', '设备类型', 'sys_device_type', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '客户端设备类型');
  273. COMMIT;
  274. -- ----------------------------
  275. -- Table structure for sys_logininfor
  276. -- ----------------------------
  277. DROP TABLE IF EXISTS `sys_logininfor`;
  278. CREATE TABLE `sys_logininfor` (
  279. `info_id` bigint NOT NULL COMMENT '访问ID',
  280. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  281. `user_name` varchar(50) DEFAULT '' COMMENT '用户账号',
  282. `client_key` varchar(32) DEFAULT '' COMMENT '客户端',
  283. `device_type` varchar(32) DEFAULT '' COMMENT '设备类型',
  284. `ipaddr` varchar(128) DEFAULT '' COMMENT '登录IP地址',
  285. `login_location` varchar(255) DEFAULT '' COMMENT '登录地点',
  286. `browser` varchar(50) DEFAULT '' COMMENT '浏览器类型',
  287. `os` varchar(50) DEFAULT '' COMMENT '操作系统',
  288. `status` char(1) DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
  289. `msg` varchar(255) DEFAULT '' COMMENT '提示消息',
  290. `login_time` datetime DEFAULT NULL COMMENT '访问时间',
  291. PRIMARY KEY (`info_id`),
  292. KEY `idx_sys_logininfor_s` (`status`),
  293. KEY `idx_sys_logininfor_lt` (`login_time`)
  294. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统访问记录';
  295. -- ----------------------------
  296. -- Records of sys_logininfor
  297. -- ----------------------------
  298. BEGIN;
  299. INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760153872342417409, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-02-21 12:06:00');
  300. INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760182679975723009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-02-21 14:00:28');
  301. INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1760194434982445057, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', 'Login successful', '2024-02-21 14:47:11');
  302. COMMIT;
  303. -- ----------------------------
  304. -- Table structure for sys_menu
  305. -- ----------------------------
  306. DROP TABLE IF EXISTS `sys_menu`;
  307. CREATE TABLE `sys_menu` (
  308. `menu_id` bigint NOT NULL COMMENT '菜单ID',
  309. `menu_name` varchar(50) NOT NULL COMMENT '菜单名称',
  310. `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID',
  311. `order_num` int DEFAULT '0' COMMENT '显示顺序',
  312. `path` varchar(200) DEFAULT '' COMMENT '路由地址',
  313. `component` varchar(255) DEFAULT NULL COMMENT '组件路径',
  314. `query_param` varchar(255) DEFAULT NULL COMMENT '路由参数',
  315. `is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)',
  316. `is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)',
  317. `menu_type` char(1) DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
  318. `visible` char(1) DEFAULT '0' COMMENT '显示状态(0显示 1隐藏)',
  319. `status` char(1) DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
  320. `perms` varchar(100) DEFAULT NULL COMMENT '权限标识',
  321. `icon` varchar(100) DEFAULT '#' COMMENT '菜单图标',
  322. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  323. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  324. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  325. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  326. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  327. `remark` varchar(500) DEFAULT '' COMMENT '备注',
  328. PRIMARY KEY (`menu_id`)
  329. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='菜单权限表';
  330. -- ----------------------------
  331. -- Records of sys_menu
  332. -- ----------------------------
  333. BEGIN;
  334. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统管理', 0, 1, 'system', NULL, '', 1, 0, 'M', '0', '0', '', 'system', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统管理目录');
  335. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统监控', 0, 3, 'monitor', NULL, '', 1, 0, 'M', '0', '0', '', 'monitor', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统监控目录');
  336. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统工具', 0, 4, 'tool', NULL, '', 1, 0, 'M', '0', '0', '', 'tool', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '系统工具目录');
  337. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'PLUS官网', 0, 5, 'https://gitee.com/dromara/RuoYi-Vue-Plus', NULL, '', 0, 0, 'M', '0', '0', '', 'guide', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'RuoYi-Vue-Plus官网地址');
  338. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '租户管理', 0, 2, 'tenant', NULL, '', 1, 0, 'M', '0', '0', '', 'chart', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户管理目录');
  339. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '用户管理菜单');
  340. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '角色管理菜单');
  341. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '菜单管理菜单');
  342. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '部门管理菜单');
  343. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '岗位管理菜单');
  344. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '字典管理菜单');
  345. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '参数设置菜单');
  346. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '通知公告菜单');
  347. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '日志管理菜单');
  348. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '在线用户菜单');
  349. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, '缓存监控', 2, 5, 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '缓存监控菜单');
  350. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (114, '表单构建', 3, 1, 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '表单构建菜单');
  351. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '代码生成菜单');
  352. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'Admin监控', 2, 5, 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'Admin监控菜单');
  353. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '文件管理', 1, 10, 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '文件管理菜单');
  354. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, '任务调度中心', 2, 5, 'powerjob', 'monitor/powerjob/index', '', 1, 0, 'C', '0', '0', 'monitor:powerjob:list', 'job', 103, 1, '2024-02-21 12:02:40', NULL, NULL, 'PowerJob控制台菜单');
  355. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, '租户管理', 6, 1, 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户管理菜单');
  356. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (122, '租户套餐管理', 6, 2, 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '租户套餐管理菜单');
  357. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, '客户端管理', 1, 11, 'client', 'system/client/index', '', 1, 0, 'C', '0', '0', 'system:client:list', 'international', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '客户端管理菜单');
  358. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '操作日志', 108, 1, 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '操作日志菜单');
  359. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '登录日志', 108, 2, 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '登录日志菜单');
  360. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  361. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  362. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  363. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  364. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  365. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  366. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  367. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  368. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  369. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  370. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  371. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  372. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  373. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  374. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  375. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  376. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  377. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  378. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  379. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  380. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  381. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  382. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  383. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  384. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  385. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  386. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  387. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  388. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  389. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  390. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  391. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  392. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  393. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  394. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  395. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  396. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  397. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  398. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  399. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  400. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  401. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '日志导出', 500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  402. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  403. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  404. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  405. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  406. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  407. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  408. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  409. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  410. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  411. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  412. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  413. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  414. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  415. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1061, '客户端管理查询', 123, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  416. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1062, '客户端管理新增', 123, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  417. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1063, '客户端管理修改', 123, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  418. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1064, '客户端管理删除', 123, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  419. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1065, '客户端管理导出', 123, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  420. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1600, '文件查询', 118, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  421. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1601, '文件上传', 118, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  422. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1602, '文件下载', 118, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  423. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1603, '文件删除', 118, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  424. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1606, '租户查询', 121, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  425. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1607, '租户新增', 121, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  426. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1608, '租户修改', 121, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  427. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1609, '租户删除', 121, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  428. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1610, '租户导出', 121, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  429. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1611, '租户套餐查询', 122, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:query', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  430. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1612, '租户套餐新增', 122, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  431. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1613, '租户套餐修改', 122, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  432. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1614, '租户套餐删除', 122, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  433. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1615, '租户套餐导出', 122, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:export', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  434. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1620, '配置列表', 118, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:list', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  435. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1621, '配置添加', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:add', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  436. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1622, '配置编辑', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:edit', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  437. INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1623, '配置删除', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:remove', '#', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  438. COMMIT;
  439. -- ----------------------------
  440. -- Table structure for sys_notice
  441. -- ----------------------------
  442. DROP TABLE IF EXISTS `sys_notice`;
  443. CREATE TABLE `sys_notice` (
  444. `notice_id` bigint NOT NULL COMMENT '公告ID',
  445. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  446. `notice_title` varchar(50) NOT NULL COMMENT '公告标题',
  447. `notice_type` char(1) NOT NULL COMMENT '公告类型(1通知 2公告)',
  448. `notice_content` longblob COMMENT '公告内容',
  449. `status` char(1) DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
  450. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  451. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  452. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  453. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  454. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  455. `remark` varchar(255) DEFAULT NULL COMMENT '备注',
  456. PRIMARY KEY (`notice_id`)
  457. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告表';
  458. -- ----------------------------
  459. -- Records of sys_notice
  460. -- ----------------------------
  461. BEGIN;
  462. INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '温馨提醒:2018-07-01 新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '管理员');
  463. INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '维护通知:2018-07-01 系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '管理员');
  464. COMMIT;
  465. -- ----------------------------
  466. -- Table structure for sys_oper_log
  467. -- ----------------------------
  468. DROP TABLE IF EXISTS `sys_oper_log`;
  469. CREATE TABLE `sys_oper_log` (
  470. `oper_id` bigint NOT NULL COMMENT '日志主键',
  471. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  472. `title` varchar(50) DEFAULT '' COMMENT '模块标题',
  473. `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)',
  474. `method` varchar(100) DEFAULT '' COMMENT '方法名称',
  475. `request_method` varchar(10) DEFAULT '' COMMENT '请求方式',
  476. `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
  477. `oper_name` varchar(50) DEFAULT '' COMMENT '操作人员',
  478. `dept_name` varchar(50) DEFAULT '' COMMENT '部门名称',
  479. `oper_url` varchar(255) DEFAULT '' COMMENT '请求URL',
  480. `oper_ip` varchar(128) DEFAULT '' COMMENT '主机地址',
  481. `oper_location` varchar(255) DEFAULT '' COMMENT '操作地点',
  482. `oper_param` varchar(2000) DEFAULT '' COMMENT '请求参数',
  483. `json_result` varchar(2000) DEFAULT '' COMMENT '返回参数',
  484. `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)',
  485. `error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息',
  486. `oper_time` datetime DEFAULT NULL COMMENT '操作时间',
  487. `cost_time` bigint DEFAULT '0' COMMENT '消耗时间',
  488. PRIMARY KEY (`oper_id`),
  489. KEY `idx_sys_oper_log_bt` (`business_type`),
  490. KEY `idx_sys_oper_log_s` (`status`),
  491. KEY `idx_sys_oper_log_ot` (`oper_time`)
  492. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='操作日志记录';
  493. -- ----------------------------
  494. -- Records of sys_oper_log
  495. -- ----------------------------
  496. BEGIN;
  497. INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1760195588978081794, '000000', '租户', 2, 'org.dromara.system.controller.system.SysTenantController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/system/tenant/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":1,\"tenantId\":\"000000\",\"contactUserName\":null,\"contactPhone\":null,\"companyName\":null,\"username\":null,\"licenseNumber\":null,\"address\":null,\"domain\":null,\"intro\":null,\"remark\":null,\"packageId\":null,\"expireTime\":null,\"accountCount\":null,\"status\":\"1\"}', '', 1, '不允许操作管理租户', '2024-02-21 14:51:46', 20);
  498. COMMIT;
  499. -- ----------------------------
  500. -- Table structure for sys_oss
  501. -- ----------------------------
  502. DROP TABLE IF EXISTS `sys_oss`;
  503. CREATE TABLE `sys_oss` (
  504. `oss_id` bigint NOT NULL COMMENT '对象存储主键',
  505. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  506. `file_name` varchar(255) NOT NULL DEFAULT '' COMMENT '文件名',
  507. `original_name` varchar(255) NOT NULL DEFAULT '' COMMENT '原名',
  508. `file_suffix` varchar(10) NOT NULL DEFAULT '' COMMENT '文件后缀名',
  509. `url` varchar(500) NOT NULL COMMENT 'URL地址',
  510. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  511. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  512. `create_by` bigint DEFAULT NULL COMMENT '上传人',
  513. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  514. `update_by` bigint DEFAULT NULL COMMENT '更新人',
  515. `service` varchar(20) NOT NULL DEFAULT 'minio' COMMENT '服务商',
  516. PRIMARY KEY (`oss_id`)
  517. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='OSS对象存储表';
  518. -- ----------------------------
  519. -- Records of sys_oss
  520. -- ----------------------------
  521. BEGIN;
  522. COMMIT;
  523. -- ----------------------------
  524. -- Table structure for sys_oss_config
  525. -- ----------------------------
  526. DROP TABLE IF EXISTS `sys_oss_config`;
  527. CREATE TABLE `sys_oss_config` (
  528. `oss_config_id` bigint NOT NULL COMMENT '主建',
  529. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  530. `config_key` varchar(20) NOT NULL DEFAULT '' COMMENT '配置key',
  531. `access_key` varchar(255) DEFAULT '' COMMENT 'accessKey',
  532. `secret_key` varchar(255) DEFAULT '' COMMENT '秘钥',
  533. `bucket_name` varchar(255) DEFAULT '' COMMENT '桶名称',
  534. `prefix` varchar(255) DEFAULT '' COMMENT '前缀',
  535. `endpoint` varchar(255) DEFAULT '' COMMENT '访问站点',
  536. `domain` varchar(255) DEFAULT '' COMMENT '自定义域名',
  537. `is_https` char(1) DEFAULT 'N' COMMENT '是否https(Y=是,N=否)',
  538. `region` varchar(255) DEFAULT '' COMMENT '域',
  539. `access_policy` char(1) NOT NULL DEFAULT '1' COMMENT '桶权限类型(0=private 1=public 2=custom)',
  540. `status` char(1) DEFAULT '1' COMMENT '是否默认(0=是,1=否)',
  541. `ext1` varchar(255) DEFAULT '' COMMENT '扩展字段',
  542. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  543. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  544. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  545. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  546. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  547. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  548. PRIMARY KEY (`oss_config_id`)
  549. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='对象存储配置表';
  550. -- ----------------------------
  551. -- Records of sys_oss_config
  552. -- ----------------------------
  553. BEGIN;
  554. INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
  555. INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
  556. INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
  557. INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1250000000', '', 'cos.ap-beijing.myqcloud.com', '', 'N', 'ap-beijing', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
  558. INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '', 'N', '', '1', '1', '', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 12:02:40', NULL);
  559. COMMIT;
  560. -- ----------------------------
  561. -- Table structure for sys_post
  562. -- ----------------------------
  563. DROP TABLE IF EXISTS `sys_post`;
  564. CREATE TABLE `sys_post` (
  565. `post_id` bigint NOT NULL COMMENT '岗位ID',
  566. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  567. `post_code` varchar(64) NOT NULL COMMENT '岗位编码',
  568. `post_name` varchar(50) NOT NULL COMMENT '岗位名称',
  569. `post_sort` int NOT NULL COMMENT '显示顺序',
  570. `status` char(1) NOT NULL COMMENT '状态(0正常 1停用)',
  571. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  572. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  573. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  574. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  575. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  576. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  577. PRIMARY KEY (`post_id`)
  578. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='岗位信息表';
  579. -- ----------------------------
  580. -- Records of sys_post
  581. -- ----------------------------
  582. BEGIN;
  583. INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'ceo', '董事长', 1, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  584. INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'se', '项目经理', 2, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  585. INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'hr', '人力资源', 3, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  586. INSERT INTO `sys_post` (`post_id`, `tenant_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'user', '普通员工', 4, '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '');
  587. COMMIT;
  588. -- ----------------------------
  589. -- Table structure for sys_role
  590. -- ----------------------------
  591. DROP TABLE IF EXISTS `sys_role`;
  592. CREATE TABLE `sys_role` (
  593. `role_id` bigint NOT NULL COMMENT '角色ID',
  594. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  595. `role_name` varchar(30) NOT NULL COMMENT '角色名称',
  596. `role_key` varchar(100) NOT NULL COMMENT '角色权限字符串',
  597. `role_sort` int NOT NULL COMMENT '显示顺序',
  598. `data_scope` char(1) DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
  599. `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
  600. `dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示',
  601. `status` char(1) NOT NULL COMMENT '角色状态(0正常 1停用)',
  602. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  603. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  604. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  605. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  606. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  607. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  608. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  609. PRIMARY KEY (`role_id`)
  610. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色信息表';
  611. -- ----------------------------
  612. -- Records of sys_role
  613. -- ----------------------------
  614. BEGIN;
  615. INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '超级管理员', 'superadmin', 1, '1', 1, 1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '超级管理员');
  616. INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '普通角色', 'common', 2, '2', 1, 1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '普通角色');
  617. COMMIT;
  618. -- ----------------------------
  619. -- Table structure for sys_role_dept
  620. -- ----------------------------
  621. DROP TABLE IF EXISTS `sys_role_dept`;
  622. CREATE TABLE `sys_role_dept` (
  623. `role_id` bigint NOT NULL COMMENT '角色ID',
  624. `dept_id` bigint NOT NULL COMMENT '部门ID',
  625. PRIMARY KEY (`role_id`,`dept_id`)
  626. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和部门关联表';
  627. -- ----------------------------
  628. -- Records of sys_role_dept
  629. -- ----------------------------
  630. BEGIN;
  631. INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 100);
  632. INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 101);
  633. INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 105);
  634. COMMIT;
  635. -- ----------------------------
  636. -- Table structure for sys_role_menu
  637. -- ----------------------------
  638. DROP TABLE IF EXISTS `sys_role_menu`;
  639. CREATE TABLE `sys_role_menu` (
  640. `role_id` bigint NOT NULL COMMENT '角色ID',
  641. `menu_id` bigint NOT NULL COMMENT '菜单ID',
  642. PRIMARY KEY (`role_id`,`menu_id`)
  643. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和菜单关联表';
  644. -- ----------------------------
  645. -- Records of sys_role_menu
  646. -- ----------------------------
  647. BEGIN;
  648. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1);
  649. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2);
  650. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 3);
  651. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 4);
  652. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 100);
  653. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 101);
  654. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 102);
  655. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 103);
  656. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 104);
  657. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 105);
  658. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 106);
  659. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 107);
  660. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 108);
  661. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 109);
  662. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 110);
  663. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 111);
  664. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 112);
  665. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 113);
  666. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 114);
  667. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 115);
  668. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 116);
  669. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 500);
  670. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 501);
  671. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1000);
  672. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1001);
  673. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1002);
  674. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1003);
  675. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1004);
  676. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1005);
  677. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1006);
  678. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1007);
  679. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1008);
  680. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1009);
  681. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1010);
  682. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1011);
  683. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1012);
  684. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1013);
  685. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1014);
  686. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1015);
  687. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1016);
  688. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1017);
  689. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1018);
  690. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1019);
  691. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1020);
  692. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1021);
  693. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1022);
  694. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1023);
  695. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1024);
  696. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1025);
  697. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1026);
  698. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1027);
  699. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1028);
  700. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1029);
  701. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1030);
  702. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1031);
  703. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1032);
  704. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1033);
  705. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1034);
  706. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1035);
  707. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1036);
  708. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1037);
  709. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1038);
  710. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1039);
  711. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1040);
  712. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1041);
  713. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1042);
  714. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1043);
  715. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1044);
  716. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1045);
  717. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1046);
  718. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1047);
  719. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1048);
  720. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1050);
  721. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1055);
  722. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1056);
  723. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1057);
  724. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1058);
  725. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1059);
  726. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1060);
  727. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1061);
  728. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1062);
  729. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1063);
  730. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1064);
  731. INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1065);
  732. COMMIT;
  733. -- ----------------------------
  734. -- Table structure for sys_social
  735. -- ----------------------------
  736. DROP TABLE IF EXISTS `sys_social`;
  737. CREATE TABLE `sys_social` (
  738. `id` bigint NOT NULL COMMENT '主键',
  739. `user_id` bigint NOT NULL COMMENT '用户ID',
  740. `tenant_id` varchar(20) DEFAULT NULL COMMENT '租户id',
  741. `auth_id` varchar(255) NOT NULL COMMENT '平台+平台唯一id',
  742. `source` varchar(255) NOT NULL COMMENT '用户来源',
  743. `open_id` varchar(255) DEFAULT NULL COMMENT '平台编号唯一id',
  744. `user_name` varchar(30) NOT NULL COMMENT '登录账号',
  745. `nick_name` varchar(30) DEFAULT '' COMMENT '用户昵称',
  746. `email` varchar(255) DEFAULT '' COMMENT '用户邮箱',
  747. `avatar` varchar(500) DEFAULT '' COMMENT '头像地址',
  748. `access_token` varchar(255) NOT NULL COMMENT '用户的授权令牌',
  749. `expire_in` int DEFAULT NULL COMMENT '用户的授权令牌的有效期,部分平台可能没有',
  750. `refresh_token` varchar(255) DEFAULT NULL COMMENT '刷新令牌,部分平台可能没有',
  751. `access_code` varchar(255) DEFAULT NULL COMMENT '平台的授权信息,部分平台可能没有',
  752. `union_id` varchar(255) DEFAULT NULL COMMENT '用户的 unionid',
  753. `scope` varchar(255) DEFAULT NULL COMMENT '授予的权限,部分平台可能没有',
  754. `token_type` varchar(255) DEFAULT NULL COMMENT '个别平台的授权信息,部分平台可能没有',
  755. `id_token` varchar(255) DEFAULT NULL COMMENT 'id token,部分平台可能没有',
  756. `mac_algorithm` varchar(255) DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
  757. `mac_key` varchar(255) DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
  758. `code` varchar(255) DEFAULT NULL COMMENT '用户的授权code,部分平台可能没有',
  759. `oauth_token` varchar(255) DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
  760. `oauth_token_secret` varchar(255) DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
  761. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  762. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  763. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  764. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  765. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  766. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  767. PRIMARY KEY (`id`)
  768. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='社会化关系表';
  769. -- ----------------------------
  770. -- Records of sys_social
  771. -- ----------------------------
  772. BEGIN;
  773. COMMIT;
  774. -- ----------------------------
  775. -- Table structure for sys_tenant
  776. -- ----------------------------
  777. DROP TABLE IF EXISTS `sys_tenant`;
  778. CREATE TABLE `sys_tenant` (
  779. `id` bigint NOT NULL COMMENT 'id',
  780. `tenant_id` varchar(20) NOT NULL COMMENT '租户编号',
  781. `contact_user_name` varchar(20) DEFAULT NULL COMMENT '联系人',
  782. `contact_phone` varchar(20) DEFAULT NULL COMMENT '联系电话',
  783. `company_name` varchar(50) DEFAULT NULL COMMENT '企业名称',
  784. `license_number` varchar(30) DEFAULT NULL COMMENT '统一社会信用代码',
  785. `address` varchar(200) DEFAULT NULL COMMENT '地址',
  786. `intro` varchar(200) DEFAULT NULL COMMENT '企业简介',
  787. `domain` varchar(200) DEFAULT NULL COMMENT '域名',
  788. `remark` varchar(200) DEFAULT NULL COMMENT '备注',
  789. `package_id` bigint DEFAULT NULL COMMENT '租户套餐编号',
  790. `expire_time` datetime DEFAULT NULL COMMENT '过期时间',
  791. `account_count` int DEFAULT '-1' COMMENT '用户数量(-1不限制)',
  792. `status` char(1) DEFAULT '0' COMMENT '租户状态(0正常 1停用)',
  793. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  794. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  795. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  796. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  797. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  798. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  799. PRIMARY KEY (`id`)
  800. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='租户表';
  801. -- ----------------------------
  802. -- Records of sys_tenant
  803. -- ----------------------------
  804. BEGIN;
  805. INSERT INTO `sys_tenant` (`id`, `tenant_id`, `contact_user_name`, `contact_phone`, `company_name`, `license_number`, `address`, `intro`, `domain`, `remark`, `package_id`, `expire_time`, `account_count`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '000000', '管理组', '15888888888', 'XXX有限公司', NULL, NULL, '多租户通用后台管理管理系统', NULL, NULL, NULL, NULL, -1, '0', '0', 103, 1, '2024-02-21 12:02:40', NULL, NULL);
  806. COMMIT;
  807. -- ----------------------------
  808. -- Table structure for sys_tenant_package
  809. -- ----------------------------
  810. DROP TABLE IF EXISTS `sys_tenant_package`;
  811. CREATE TABLE `sys_tenant_package` (
  812. `package_id` bigint NOT NULL COMMENT '租户套餐id',
  813. `package_name` varchar(20) DEFAULT NULL COMMENT '套餐名称',
  814. `menu_ids` varchar(3000) DEFAULT NULL COMMENT '关联菜单id',
  815. `remark` varchar(200) DEFAULT NULL COMMENT '备注',
  816. `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
  817. `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)',
  818. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  819. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  820. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  821. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  822. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  823. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  824. PRIMARY KEY (`package_id`)
  825. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='租户套餐表';
  826. -- ----------------------------
  827. -- Records of sys_tenant_package
  828. -- ----------------------------
  829. BEGIN;
  830. COMMIT;
  831. -- ----------------------------
  832. -- Table structure for sys_user
  833. -- ----------------------------
  834. DROP TABLE IF EXISTS `sys_user`;
  835. CREATE TABLE `sys_user` (
  836. `user_id` bigint NOT NULL COMMENT '用户ID',
  837. `tenant_id` varchar(20) DEFAULT '000000' COMMENT '租户编号',
  838. `dept_id` bigint DEFAULT NULL COMMENT '部门ID',
  839. `user_name` varchar(30) NOT NULL COMMENT '用户账号',
  840. `nick_name` varchar(30) NOT NULL COMMENT '用户昵称',
  841. `user_type` varchar(10) DEFAULT 'sys_user' COMMENT '用户类型(sys_user系统用户)',
  842. `email` varchar(50) DEFAULT '' COMMENT '用户邮箱',
  843. `phonenumber` varchar(11) DEFAULT '' COMMENT '手机号码',
  844. `sex` char(1) DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
  845. `avatar` bigint DEFAULT NULL COMMENT '头像地址',
  846. `password` varchar(100) DEFAULT '' COMMENT '密码',
  847. `status` char(1) DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
  848. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  849. `login_ip` varchar(128) DEFAULT '' COMMENT '最后登录IP',
  850. `login_date` datetime DEFAULT NULL COMMENT '最后登录时间',
  851. `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
  852. `create_by` bigint DEFAULT NULL COMMENT '创建者',
  853. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  854. `update_by` bigint DEFAULT NULL COMMENT '更新者',
  855. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  856. `remark` varchar(500) DEFAULT NULL COMMENT '备注',
  857. PRIMARY KEY (`user_id`)
  858. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户信息表';
  859. -- ----------------------------
  860. -- Records of sys_user
  861. -- ----------------------------
  862. BEGIN;
  863. INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'admin', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '0:0:0:0:0:0:0:1', '2024-02-21 14:47:11', 103, 1, '2024-02-21 12:02:40', 1, '2024-02-21 14:47:11', '管理员');
  864. INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 105, 'lionli', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@qq.com', '15666666666', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2024-02-21 12:02:40', 103, 1, '2024-02-21 12:02:40', NULL, NULL, '测试员');
  865. COMMIT;
  866. -- ----------------------------
  867. -- Table structure for sys_user_post
  868. -- ----------------------------
  869. DROP TABLE IF EXISTS `sys_user_post`;
  870. CREATE TABLE `sys_user_post` (
  871. `user_id` bigint NOT NULL COMMENT '用户ID',
  872. `post_id` bigint NOT NULL COMMENT '岗位ID',
  873. PRIMARY KEY (`user_id`,`post_id`)
  874. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户与岗位关联表';
  875. -- ----------------------------
  876. -- Records of sys_user_post
  877. -- ----------------------------
  878. BEGIN;
  879. INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1);
  880. INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (2, 2);
  881. COMMIT;
  882. -- ----------------------------
  883. -- Table structure for sys_user_role
  884. -- ----------------------------
  885. DROP TABLE IF EXISTS `sys_user_role`;
  886. CREATE TABLE `sys_user_role` (
  887. `user_id` bigint NOT NULL COMMENT '用户ID',
  888. `role_id` bigint NOT NULL COMMENT '角色ID',
  889. PRIMARY KEY (`user_id`,`role_id`)
  890. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户和角色关联表';
  891. -- ----------------------------
  892. -- Records of sys_user_role
  893. -- ----------------------------
  894. BEGIN;
  895. INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1, 1);
  896. INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (2, 2);
  897. COMMIT;
  898. -- ----------------------------
  899. -- Table structure for tbl_car_drive_warning
  900. -- ----------------------------
  901. DROP TABLE IF EXISTS `tbl_car_drive_warning`;
  902. CREATE TABLE `tbl_car_drive_warning` (
  903. `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
  904. `c_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
  905. `content` text COMMENT '告警内容',
  906. `ext1` json DEFAULT NULL COMMENT '扩展1',
  907. `ext2` json DEFAULT NULL COMMENT '扩展2',
  908. PRIMARY KEY (`id`)
  909. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='驾驶监管';
  910. -- ----------------------------
  911. -- Records of tbl_car_drive_warning
  912. -- ----------------------------
  913. BEGIN;
  914. COMMIT;
  915. -- ----------------------------
  916. -- Table structure for tbl_car_info
  917. -- ----------------------------
  918. DROP TABLE IF EXISTS `tbl_car_info`;
  919. CREATE TABLE `tbl_car_info` (
  920. `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
  921. `car_num` varchar(200) DEFAULT NULL COMMENT '车牌号',
  922. `car_type` varchar(100) DEFAULT NULL COMMENT '车类型(5座、19座)',
  923. `device_infos` json DEFAULT NULL COMMENT '所有车载设备信息',
  924. `repair_info` json DEFAULT NULL COMMENT '维修信息',
  925. `maintenance_info` json DEFAULT NULL COMMENT '保养信息',
  926. `insurance_info` json DEFAULT NULL COMMENT '保险信息',
  927. `inspection_info` json DEFAULT NULL COMMENT '年检信息',
  928. `traffic_accident_info` json DEFAULT NULL COMMENT '交通事故信息',
  929. `violation_info` json DEFAULT NULL COMMENT '违章信息',
  930. `change_info` json DEFAULT NULL COMMENT '车辆变更信息',
  931. `ext1` json DEFAULT NULL COMMENT '扩展1',
  932. `ext2` json DEFAULT NULL COMMENT '扩展2',
  933. PRIMARY KEY (`id`)
  934. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车辆信息表';
  935. -- ----------------------------
  936. -- Records of tbl_car_info
  937. -- ----------------------------
  938. BEGIN;
  939. COMMIT;
  940. -- ----------------------------
  941. -- Table structure for tbl_car_path
  942. -- ----------------------------
  943. DROP TABLE IF EXISTS `tbl_car_path`;
  944. CREATE TABLE `tbl_car_path` (
  945. `id` int NOT NULL AUTO_INCREMENT,
  946. `name` varchar(200) DEFAULT NULL COMMENT '路线名称',
  947. `station_list` json DEFAULT NULL COMMENT '起止及经过站点信息(包括场站编号及路过场站的时间)',
  948. `car_id` int DEFAULT NULL COMMENT '车辆信息',
  949. `driver_info` int DEFAULT NULL COMMENT '司机',
  950. `attendant_info` int DEFAULT NULL COMMENT '随车人员',
  951. `remark` text COMMENT '备注',
  952. `ext1` json DEFAULT NULL COMMENT '扩展',
  953. `ext2` json DEFAULT NULL COMMENT '扩展2',
  954. PRIMARY KEY (`id`)
  955. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车辆路线';
  956. -- ----------------------------
  957. -- Records of tbl_car_path
  958. -- ----------------------------
  959. BEGIN;
  960. COMMIT;
  961. -- ----------------------------
  962. -- Table structure for tbl_car_schedule
  963. -- ----------------------------
  964. DROP TABLE IF EXISTS `tbl_car_schedule`;
  965. CREATE TABLE `tbl_car_schedule` (
  966. `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
  967. `path_info` json DEFAULT NULL COMMENT '路线信息',
  968. `schedule_date` date DEFAULT NULL COMMENT '日期',
  969. `c_time` datetime DEFAULT (now()) COMMENT '创建时间',
  970. `u_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '跟新时间',
  971. PRIMARY KEY (`id`)
  972. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车及人员排班';
  973. -- ----------------------------
  974. -- Records of tbl_car_schedule
  975. -- ----------------------------
  976. BEGIN;
  977. COMMIT;
  978. -- ----------------------------
  979. -- Table structure for tbl_car_service
  980. -- ----------------------------
  981. DROP TABLE IF EXISTS `tbl_car_service`;
  982. CREATE TABLE `tbl_car_service` (
  983. `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
  984. `car_id` int DEFAULT NULL COMMENT '车辆编号',
  985. `mileage_info` json DEFAULT NULL COMMENT '行驶里程',
  986. `oil_info` json DEFAULT NULL COMMENT '加油信息',
  987. `repair_info` int DEFAULT NULL COMMENT '维修信息',
  988. `check_info` json DEFAULT NULL COMMENT '检查信息',
  989. `ext1` json DEFAULT NULL COMMENT '扩展1',
  990. `ext2` json DEFAULT NULL COMMENT '扩展2',
  991. PRIMARY KEY (`id`)
  992. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车务信息';
  993. -- ----------------------------
  994. -- Records of tbl_car_service
  995. -- ----------------------------
  996. BEGIN;
  997. COMMIT;
  998. -- ----------------------------
  999. -- Table structure for tbl_goods_loss
  1000. -- ----------------------------
  1001. DROP TABLE IF EXISTS `tbl_goods_loss`;
  1002. CREATE TABLE `tbl_goods_loss` (
  1003. `id` int NOT NULL AUTO_INCREMENT,
  1004. `title` text COMMENT '主题',
  1005. `content` longtext COMMENT '内容',
  1006. `ext1` json DEFAULT NULL COMMENT '扩展1',
  1007. `ext2` json DEFAULT NULL COMMENT '扩展2',
  1008. PRIMARY KEY (`id`)
  1009. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='丢失货物表';
  1010. -- ----------------------------
  1011. -- Records of tbl_goods_loss
  1012. -- ----------------------------
  1013. BEGIN;
  1014. COMMIT;
  1015. -- ----------------------------
  1016. -- Table structure for tbl_user_vacate
  1017. -- ----------------------------
  1018. DROP TABLE IF EXISTS `tbl_user_vacate`;
  1019. CREATE TABLE `tbl_user_vacate` (
  1020. `id` int NOT NULL AUTO_INCREMENT COMMENT '编号',
  1021. `user_info` json DEFAULT NULL COMMENT '用户信息',
  1022. `start_date` date DEFAULT NULL COMMENT '请假开始日期',
  1023. `end_date` date DEFAULT NULL COMMENT '结束日期',
  1024. `desc` text COMMENT '内容描述',
  1025. `status` int DEFAULT '0' COMMENT '状态( 1-通过 2-拒绝 0-待处理)',
  1026. `c_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
  1027. `u_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '跟新时间',
  1028. `ext1` json DEFAULT NULL COMMENT '扩展1',
  1029. `ext2` json DEFAULT NULL COMMENT '扩展2',
  1030. PRIMARY KEY (`id`)
  1031. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='人员请假表';
  1032. -- ----------------------------
  1033. -- Records of tbl_user_vacate
  1034. -- ----------------------------
  1035. BEGIN;
  1036. COMMIT;
  1037. SET FOREIGN_KEY_CHECKS = 1;