diff --git a/lis-system/pom.xml b/lis-system/pom.xml index d0d4dc3..1cfc801 100644 --- a/lis-system/pom.xml +++ b/lis-system/pom.xml @@ -37,12 +37,6 @@ - - - mysql - mysql-connector-java - - com.czlis diff --git a/lis-system/src/main/resources/application-prod.yml b/lis-system/src/main/resources/application-prod.yml new file mode 100644 index 0000000..c329b97 --- /dev/null +++ b/lis-system/src/main/resources/application-prod.yml @@ -0,0 +1,61 @@ +# 数据源配置 +spring: + datasource: + type: com.alibaba.druid.pool.DruidDataSource + driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver + druid: + # 主库数据源 + master: + url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=lisnet + username: lis + password: lisp@ssw0rd + # 从库数据源 + slave: + # 从数据源开关/默认关闭 + enabled: false + url: + username: + password: + # 初始连接数 + initialSize: 5 + # 最小连接池数量 + minIdle: 10 + # 最大连接池数量 + maxActive: 20 + # 配置获取连接等待超时的时间 + maxWait: 60000 + # 配置连接超时时间 + connectTimeout: 30000 + # 配置网络超时时间 + socketTimeout: 60000 + # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 + timeBetweenEvictionRunsMillis: 60000 + # 配置一个连接在池中最小生存的时间,单位是毫秒 + minEvictableIdleTimeMillis: 300000 + # 配置一个连接在池中最大生存的时间,单位是毫秒 + maxEvictableIdleTimeMillis: 900000 + # 配置检测连接是否有效 + validationQuery: SELECT 1 + testWhileIdle: true + testOnBorrow: false + testOnReturn: false + webStatFilter: + enabled: true + statViewServlet: + enabled: true + # 设置白名单,不填则允许所有访问 + allow: + url-pattern: /druid/* + # 控制台管理用户名和密码 + login-username: czlis + login-password: 123456 + filter: + stat: + enabled: true + # 慢SQL记录 + log-slow-sql: true + slow-sql-millis: 1000 + merge-sql: true + wall: + config: + multi-statement-allow: true \ No newline at end of file diff --git a/lis-system/src/main/resources/application.yml b/lis-system/src/main/resources/application.yml index 5b88b9d..8728feb 100644 --- a/lis-system/src/main/resources/application.yml +++ b/lis-system/src/main/resources/application.yml @@ -55,7 +55,7 @@ spring: # 国际化资源文件路径 basename: i18n/messages profiles: - active: druid + active: prod # 文件上传 servlet: multipart: diff --git a/sql/ruoyi_lis8.0_sqlserver.sql b/sql/ruoyi_lis8.0_sqlserver.sql index fafda9f..cd6a104 100644 --- a/sql/ruoyi_lis8.0_sqlserver.sql +++ b/sql/ruoyi_lis8.0_sqlserver.sql @@ -3,7 +3,7 @@ if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_menu') begin create table sys_menu ( - menu_id bigint not null , --菜单ID + menu_id bigint identity (2000,1) not null , --菜单ID menu_name varchar(50) not null , --菜单名称 parent_id bigint default 0 , --父菜单ID order_num int default 0 , --显示顺序 @@ -31,115 +31,432 @@ end -- ---------------------------- -- 初始化-菜单信息表数据 -- ---------------------------- --- 一级菜单 -insert into sys_menu values('1', '系统管理', '0', '1', 'system', null, '', '', 1, 0, 'M', '0', '0', '', 'system', 'admin', getdate(), '', null, '系统管理目录'); -insert into sys_menu values('2', '系统监控', '0', '2', 'monitor', null, '', '', 1, 0, 'M', '0', '0', '', 'monitor', 'admin', getdate(), '', null, '系统监控目录'); -insert into sys_menu values('3', '系统工具', '0', '3', 'tool', null, '', '', 1, 0, 'M', '0', '0', '', 'tool', 'admin', getdate(), '', null, '系统工具目录'); -insert into sys_menu values('4', '若依官网', '0', '4', 'http://ruoyi.vip', null, '', '', 0, 0, 'M', '0', '0', '', 'guide', 'admin', getdate(), '', null, '若依官网地址'); --- 二级菜单 -insert into sys_menu values('100', '用户管理', '1', '1', 'user', 'system/user/index', '', '', 1, 0, 'C', '0', '0', 'system:user:list', 'user', 'admin', getdate(), '', null, '用户管理菜单'); -insert into sys_menu values('101', '角色管理', '1', '2', 'role', 'system/role/index', '', '', 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', 'admin', getdate(), '', null, '角色管理菜单'); -insert into sys_menu values('102', '菜单管理', '1', '3', 'menu', 'system/menu/index', '', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', 'admin', getdate(), '', null, '菜单管理菜单'); -insert into sys_menu values('103', '部门管理', '1', '4', 'dept', 'system/dept/index', '', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', 'admin', getdate(), '', null, '部门管理菜单'); -insert into sys_menu values('104', '岗位管理', '1', '5', 'post', 'system/post/index', '', '', 1, 0, 'C', '0', '0', 'system:post:list', 'post', 'admin', getdate(), '', null, '岗位管理菜单'); -insert into sys_menu values('105', '字典管理', '1', '6', 'dict', 'system/dict/index', '', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', 'admin', getdate(), '', null, '字典管理菜单'); -insert into sys_menu values('106', '参数设置', '1', '7', 'config', 'system/config/index', '', '', 1, 0, 'C', '0', '0', 'system:config:list', 'edit', 'admin', getdate(), '', null, '参数设置菜单'); -insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 'admin', getdate(), '', null, '通知公告菜单'); -insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', getdate(), '', null, '日志管理菜单'); -insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 'admin', getdate(), '', null, '在线用户菜单'); -insert into sys_menu values('110', '定时任务', '2', '2', 'job', 'monitor/job/index', '', '', 1, 0, 'C', '0', '0', 'monitor:job:list', 'job', 'admin', getdate(), '', null, '定时任务菜单'); -insert into sys_menu values('111', '数据监控', '2', '3', 'druid', 'monitor/druid/index', '', '', 1, 0, 'C', '0', '0', 'monitor:druid:list', 'druid', 'admin', getdate(), '', null, '数据监控菜单'); -insert into sys_menu values('112', '服务监控', '2', '4', 'server', 'monitor/server/index', '', '', 1, 0, 'C', '0', '0', 'monitor:server:list', 'server', 'admin', getdate(), '', null, '服务监控菜单'); -insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 'admin', getdate(), '', null, '缓存监控菜单'); -insert into sys_menu values('114', '缓存列表', '2', '6', 'cacheList', 'monitor/cache/list', '', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis-list', 'admin', getdate(), '', null, '缓存列表菜单'); -insert into sys_menu values('115', '表单构建', '3', '1', 'build', 'tool/build/index', '', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 'admin', getdate(), '', null, '表单构建菜单'); -insert into sys_menu values('116', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', getdate(), '', null, '代码生成菜单'); -insert into sys_menu values('117', '系统接口', '3', '3', 'swagger', 'tool/swagger/index', '', '', 1, 0, 'C', '0', '0', 'tool:swagger:list', 'swagger', 'admin', getdate(), '', null, '系统接口菜单'); --- 三级菜单 -insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 'admin', getdate(), '', null, '操作日志菜单'); -insert into sys_menu values('501', '登录日志', '108', '2', 'logininfor', 'monitor/logininfor/index', '', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 'admin', getdate(), '', null, '登录日志菜单'); --- 用户管理按钮 -insert into sys_menu values('1000', '用户查询', '100', '1', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1001', '用户新增', '100', '2', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1002', '用户修改', '100', '3', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1003', '用户删除', '100', '4', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1004', '用户导出', '100', '5', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1005', '用户导入', '100', '6', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1006', '重置密码', '100', '7', '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', getdate(), '', null, ''); --- 角色管理按钮 -insert into sys_menu values('1007', '角色查询', '101', '1', '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1008', '角色新增', '101', '2', '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1009', '角色修改', '101', '3', '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1010', '角色删除', '101', '4', '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1011', '角色导出', '101', '5', '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', getdate(), '', null, ''); --- 菜单管理按钮 -insert into sys_menu values('1012', '菜单查询', '102', '1', '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1013', '菜单新增', '102', '2', '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1014', '菜单修改', '102', '3', '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1015', '菜单删除', '102', '4', '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', getdate(), '', null, ''); --- 部门管理按钮 -insert into sys_menu values('1016', '部门查询', '103', '1', '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1017', '部门新增', '103', '2', '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1018', '部门修改', '103', '3', '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1019', '部门删除', '103', '4', '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', getdate(), '', null, ''); --- 岗位管理按钮 -insert into sys_menu values('1020', '岗位查询', '104', '1', '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1021', '岗位新增', '104', '2', '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1022', '岗位修改', '104', '3', '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1023', '岗位删除', '104', '4', '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1024', '岗位导出', '104', '5', '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', getdate(), '', null, ''); --- 字典管理按钮 -insert into sys_menu values('1025', '字典查询', '105', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1026', '字典新增', '105', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1027', '字典修改', '105', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1028', '字典删除', '105', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1029', '字典导出', '105', '5', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', getdate(), '', null, ''); --- 参数设置按钮 -insert into sys_menu values('1030', '参数查询', '106', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1031', '参数新增', '106', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1032', '参数修改', '106', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1033', '参数删除', '106', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1034', '参数导出', '106', '5', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', getdate(), '', null, ''); --- 通知公告按钮 -insert into sys_menu values('1035', '公告查询', '107', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1036', '公告新增', '107', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1037', '公告修改', '107', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1038', '公告删除', '107', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', getdate(), '', null, ''); --- 操作日志按钮 -insert into sys_menu values('1039', '操作查询', '500', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1040', '操作删除', '500', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1041', '日志导出', '500', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 'admin', getdate(), '', null, ''); --- 登录日志按钮 -insert into sys_menu values('1042', '登录查询', '501', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1043', '登录删除', '501', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1044', '日志导出', '501', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1045', '账户解锁', '501', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 'admin', getdate(), '', null, ''); --- 在线用户按钮 -insert into sys_menu values('1046', '在线查询', '109', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1047', '批量强退', '109', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1048', '单条强退', '109', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', getdate(), '', null, ''); --- 定时任务按钮 -insert into sys_menu values('1049', '任务查询', '110', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1050', '任务新增', '110', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:add', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1051', '任务修改', '110', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1052', '任务删除', '110', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1053', '状态修改', '110', '5', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:changeStatus', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1054', '任务导出', '110', '6', '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:export', '#', 'admin', getdate(), '', null, ''); --- 代码生成按钮 -insert into sys_menu values('1055', '生成查询', '116', '1', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1056', '生成修改', '116', '2', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1057', '生成删除', '116', '3', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1058', '导入代码', '116', '4', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1059', '预览代码', '116', '5', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', getdate(), '', null, ''); -insert into sys_menu values('1060', '生成代码', '116', '6', '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', getdate(), '', null, ''); + +SET IDENTITY_INSERT dbo.sys_menu ON +if not exists(select 1 from dbo.sys_menu where menu_id = '1') +begin + INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) + VALUES (1, '系统管理', 0, 1, 'system', NULL, '', '', 1, 0, 'M', '0', '0', '', 'system', 'admin', '2025-05-05 11:40:48.75', '', NULL, '系统管理目录') +end +if not exists(select 1 from dbo.sys_menu where menu_id = '2') +begin + INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) + VALUES (2, '系统监控', 0, 2, 'monitor', NULL, '', '', 1, 0, 'M', '0', '0', '', 'monitor', 'admin', '2025-05-05 11:40:48.75', '', NULL, '系统监控目录') +end + +if not exists(select 1 from dbo.sys_menu where menu_id = '3') +begin + INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) + VALUES (3, '系统工具', 0, 3, 'tool', NULL, '', '', 1, 0, 'M', '0', '0', '', 'tool', 'admin', '2025-05-05 11:40:48.75', '', NULL, '系统工具目录') +end + +if not exists(select 1 from dbo.sys_menu where menu_id = '4') +begin + INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) + VALUES (4, '若依官网', 0, 4, 'http://ruoyi.vip', NULL, '', '', 0, 0, 'M', '1', '0', '', 'guide', 'admin', '2025-05-05 11:40:48.75', '', NULL, '若依官网地址') +end + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '用户管理菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '角色管理菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '菜单管理菜单') + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '部门管理菜单') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '岗位管理菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '字典管理菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '参数设置菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '通知公告菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (108, '日志管理', 1, 9, 'log', '', '', '', 1, 0, 'M', '0', '0', '', 'log', 'admin', '2025-05-05 11:40:48.75', '', NULL, '日志管理菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '在线用户菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (110, '定时任务', 2, 2, 'job', 'monitor/job/index', '', '', 1, 0, 'C', '0', '0', 'monitor:job:list', 'job', 'admin', '2025-05-05 11:40:48.75', '', NULL, '定时任务菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (111, '数据监控', 2, 3, 'druid', 'monitor/druid/index', '', '', 1, 0, 'C', '0', '0', 'monitor:druid:list', 'druid', 'admin', '2025-05-05 11:40:48.75', '', NULL, '数据监控菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (112, '服务监控', 2, 4, 'server', 'monitor/server/index', '', '', 1, 0, 'C', '0', '0', 'monitor:server:list', 'server', 'admin', '2025-05-05 11:40:48.75', '', NULL, '服务监控菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '缓存监控菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (114, '缓存列表', 2, 6, 'cacheList', 'monitor/cache/list', '', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis-list', 'admin', '2025-05-05 11:40:48.75', '', NULL, '缓存列表菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (115, '表单构建', 3, 1, 'build', 'tool/build/index', '', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 'admin', '2025-05-05 11:40:48.75', '', NULL, '表单构建菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (116, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', '2025-05-05 11:40:48.75', '', NULL, '代码生成菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (117, '系统接口', 3, 3, 'swagger', 'tool/swagger/index', '', '', 1, 0, 'C', '0', '0', 'tool:swagger:list', 'swagger', 'admin', '2025-05-05 11:40:48.75', '', NULL, '系统接口菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.75', '', NULL, '操作日志菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, 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', 'admin', '2025-05-05 11:40:48.753', '', NULL, '登录日志菜单') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1000, '用户查询', 100, 1, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1001, '用户新增', 100, 2, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1002, '用户修改', 100, 3, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1003, '用户删除', 100, 4, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1004, '用户导出', 100, 5, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1005, '用户导入', 100, 6, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1006, '重置密码', 100, 7, '', '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1007, '角色查询', 101, 1, '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1008, '角色新增', 101, 2, '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1009, '角色修改', 101, 3, '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1010, '角色删除', 101, 4, '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1011, '角色导出', 101, 5, '', '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1012, '菜单查询', 102, 1, '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1013, '菜单新增', 102, 2, '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1014, '菜单修改', 102, 3, '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1015, '菜单删除', 102, 4, '', '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1016, '部门查询', 103, 1, '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1017, '部门新增', 103, 2, '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1018, '部门修改', 103, 3, '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1019, '部门删除', 103, 4, '', '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1020, '岗位查询', 104, 1, '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1021, '岗位新增', 104, 2, '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1022, '岗位修改', 104, 3, '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1023, '岗位删除', 104, 4, '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1024, '岗位导出', 104, 5, '', '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1025, '字典查询', 105, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1026, '字典新增', 105, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1027, '字典修改', 105, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1028, '字典删除', 105, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1029, '字典导出', 105, 5, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1030, '参数查询', 106, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1031, '参数新增', 106, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1032, '参数修改', 106, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1033, '参数删除', 106, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1034, '参数导出', 106, 5, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1035, '公告查询', 107, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1036, '公告新增', 107, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1037, '公告修改', 107, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1038, '公告删除', 107, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1039, '操作查询', 500, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1040, '操作删除', 500, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1041, '日志导出', 500, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1042, '登录查询', 501, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1043, '登录删除', 501, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1044, '日志导出', 501, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1045, '账户解锁', 501, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1046, '在线查询', 109, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1047, '批量强退', 109, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', '2025-05-05 11:40:48.753', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1048, '单条强退', 109, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1049, '任务查询', 110, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:query', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1050, '任务新增', 110, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:add', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1051, '任务修改', 110, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:edit', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1052, '任务删除', 110, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:remove', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1053, '状态修改', 110, 5, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:changeStatus', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1054, '任务导出', 110, 6, '#', '', '', '', 1, 0, 'F', '0', '0', 'monitor:job:export', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1055, '生成查询', 116, 1, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1056, '生成修改', 116, 2, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1057, '生成删除', 116, 3, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1058, '导入代码', 116, 4, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1059, '预览代码', 116, 5, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (1060, '生成代码', 116, 6, '#', '', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 'admin', '2025-05-05 11:40:48.757', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (2000, '住院采血', 0, 5, 'zycx', NULL, NULL, '', 1, 0, 'M', '0', '0', NULL, 'table', 'admin', '2025-05-08 17:31:10.647', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (2001, '护士条码工作站', 2000, 1, 'barcode', NULL, NULL, '', 1, 0, 'C', '0', '0', NULL, 'tree-table', 'lis', '2025-05-08 17:38:53.69', '', NULL, '') + + +INSERT INTO dbo.sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark) +VALUES (2002, '字典管理(lis)', 1, 10, 'comdict', 'liswork/dict/index', NULL, '', 1, 0, 'C', '0', '0', 'liswork:dict:list', 'dict', 'admin', '2025-05-09 11:01:23.03', 'admin', '2025-05-09 17:38:19.337', '') + + +SET IDENTITY_INSERT dbo.sys_menu OFF --角色表 - if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_role') +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_role') begin create table sys_role ( - role_id bigint not null , --角色ID + role_id bigint identity(100,1) not null , --角色ID role_name varchar(30) not null , --角色名称 role_key varchar(100) not null , --角色权限字符串 role_sort int not null , --显示顺序 @@ -157,12 +474,17 @@ create table sys_role ( ) end + -- ---------------------------- -- 初始化-角色信息表数据 -- ---------------------------- -insert into sys_role values('1', '超级管理员', 'admin', 1, 1, 1, 1, '0', '0', 'admin', getdate(), '', null, '超级管理员'); -insert into sys_role values('2', '普通角色', 'common', 2, 2, 1, 1, '0', '0', 'admin', getdate(), '', null, '普通角色'); +SET IDENTITY_INSERT dbo.sys_role ON; +INSERT INTO dbo.sys_role (role_id, role_name, role_key, role_sort, data_scope, menu_check_strictly, dept_check_strictly, status, del_flag, create_by, create_time, update_by, update_time, remark) +VALUES (1, '超级管理员', 'admin', 1, '1', 1, 1, '0', '0', 'admin', '2025-05-06 16:58:59.893', '', NULL, '超级管理员') +INSERT INTO dbo.sys_role (role_id, role_name, role_key, role_sort, data_scope, menu_check_strictly, dept_check_strictly, status, del_flag, create_by, create_time, update_by, update_time, remark) +VALUES (2, '普通角色', 'common', 2, '2', 1, 1, '0', '0', 'admin', '2025-05-06 16:58:59.893', 'admin', '2025-05-08 17:46:08.567', '普通角色') +SET IDENTITY_INSERT dbo.sys_role OFF; --角色和菜单关联表 @@ -179,91 +501,351 @@ end -- ---------------------------- -- 初始化-角色和菜单关联表数据 -- ---------------------------- -insert into sys_role_menu values ('2', '1'); -insert into sys_role_menu values ('2', '2'); -insert into sys_role_menu values ('2', '3'); -insert into sys_role_menu values ('2', '4'); -insert into sys_role_menu values ('2', '100'); -insert into sys_role_menu values ('2', '101'); -insert into sys_role_menu values ('2', '102'); -insert into sys_role_menu values ('2', '103'); -insert into sys_role_menu values ('2', '104'); -insert into sys_role_menu values ('2', '105'); -insert into sys_role_menu values ('2', '106'); -insert into sys_role_menu values ('2', '107'); -insert into sys_role_menu values ('2', '108'); -insert into sys_role_menu values ('2', '109'); -insert into sys_role_menu values ('2', '110'); -insert into sys_role_menu values ('2', '111'); -insert into sys_role_menu values ('2', '112'); -insert into sys_role_menu values ('2', '113'); -insert into sys_role_menu values ('2', '114'); -insert into sys_role_menu values ('2', '115'); -insert into sys_role_menu values ('2', '116'); -insert into sys_role_menu values ('2', '117'); -insert into sys_role_menu values ('2', '500'); -insert into sys_role_menu values ('2', '501'); -insert into sys_role_menu values ('2', '1000'); -insert into sys_role_menu values ('2', '1001'); -insert into sys_role_menu values ('2', '1002'); -insert into sys_role_menu values ('2', '1003'); -insert into sys_role_menu values ('2', '1004'); -insert into sys_role_menu values ('2', '1005'); -insert into sys_role_menu values ('2', '1006'); -insert into sys_role_menu values ('2', '1007'); -insert into sys_role_menu values ('2', '1008'); -insert into sys_role_menu values ('2', '1009'); -insert into sys_role_menu values ('2', '1010'); -insert into sys_role_menu values ('2', '1011'); -insert into sys_role_menu values ('2', '1012'); -insert into sys_role_menu values ('2', '1013'); -insert into sys_role_menu values ('2', '1014'); -insert into sys_role_menu values ('2', '1015'); -insert into sys_role_menu values ('2', '1016'); -insert into sys_role_menu values ('2', '1017'); -insert into sys_role_menu values ('2', '1018'); -insert into sys_role_menu values ('2', '1019'); -insert into sys_role_menu values ('2', '1020'); -insert into sys_role_menu values ('2', '1021'); -insert into sys_role_menu values ('2', '1022'); -insert into sys_role_menu values ('2', '1023'); -insert into sys_role_menu values ('2', '1024'); -insert into sys_role_menu values ('2', '1025'); -insert into sys_role_menu values ('2', '1026'); -insert into sys_role_menu values ('2', '1027'); -insert into sys_role_menu values ('2', '1028'); -insert into sys_role_menu values ('2', '1029'); -insert into sys_role_menu values ('2', '1030'); -insert into sys_role_menu values ('2', '1031'); -insert into sys_role_menu values ('2', '1032'); -insert into sys_role_menu values ('2', '1033'); -insert into sys_role_menu values ('2', '1034'); -insert into sys_role_menu values ('2', '1035'); -insert into sys_role_menu values ('2', '1036'); -insert into sys_role_menu values ('2', '1037'); -insert into sys_role_menu values ('2', '1038'); -insert into sys_role_menu values ('2', '1039'); -insert into sys_role_menu values ('2', '1040'); -insert into sys_role_menu values ('2', '1041'); -insert into sys_role_menu values ('2', '1042'); -insert into sys_role_menu values ('2', '1043'); -insert into sys_role_menu values ('2', '1044'); -insert into sys_role_menu values ('2', '1045'); -insert into sys_role_menu values ('2', '1046'); -insert into sys_role_menu values ('2', '1047'); -insert into sys_role_menu values ('2', '1048'); -insert into sys_role_menu values ('2', '1049'); -insert into sys_role_menu values ('2', '1050'); -insert into sys_role_menu values ('2', '1051'); -insert into sys_role_menu values ('2', '1052'); -insert into sys_role_menu values ('2', '1053'); -insert into sys_role_menu values ('2', '1054'); -insert into sys_role_menu values ('2', '1055'); -insert into sys_role_menu values ('2', '1056'); -insert into sys_role_menu values ('2', '1057'); -insert into sys_role_menu values ('2', '1058'); -insert into sys_role_menu values ('2', '1059'); -insert into sys_role_menu values ('2', '1060'); + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 2) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 3) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 100) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 101) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 102) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 103) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 104) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 105) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 106) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 107) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 108) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 109) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 110) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 111) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 112) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 113) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 114) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 115) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 116) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 117) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 500) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 501) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1000) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1001) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1002) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1003) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1004) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1005) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1006) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1007) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1008) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1009) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1010) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1011) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1012) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1013) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1014) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1015) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1016) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1017) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1018) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1019) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1020) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1021) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1022) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1023) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1024) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1025) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1026) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1027) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1028) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1029) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1030) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1031) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1032) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1033) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1034) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1035) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1036) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1037) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1038) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1039) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1040) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1041) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1042) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1043) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1044) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1045) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1046) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1047) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1048) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1049) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1050) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1051) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1052) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1053) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1054) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1055) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1056) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1057) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1058) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1059) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 1060) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 2000) +GO + +INSERT INTO dbo.sys_role_menu (role_id, menu_id) +VALUES (2, 2001) +GO + --用户和角色关联表 @@ -280,8 +862,41 @@ end -- ---------------------------- -- 初始化-用户和角色关联表数据 -- ---------------------------- -insert into sys_user_role values ('1', '1'); -insert into sys_user_role values ('2', '2'); + INSERT INTO dbo.sys_user_role (user_id, role_id) + VALUES (1, 1) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (2, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (100, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (101, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (102, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (103, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (104, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (106, 2) +GO + +INSERT INTO dbo.sys_user_role (user_id, role_id) +VALUES (108, 2) +GO @@ -289,7 +904,7 @@ insert into sys_user_role values ('2', '2'); if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_oper_log') begin create table sys_oper_log ( - oper_id bigint not null , --comment '日志主键', + oper_id bigint identity(100,1) not null , --comment '日志主键', title varchar(50) default '' , --comment '模块标题', business_type int default 0 , --comment '业务类型(0其它 1新增 2修改 3删除)', method varchar(200) default '' , --comment '方法名称', @@ -314,7 +929,7 @@ end if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_dept') begin create table sys_dept ( - dept_id bigint not null, --comment '部门id', + dept_id bigint identity(200,1) not null, --comment '部门id', parent_id bigint default 0, --comment '父部门id', ancestors varchar(50) default '', --comment '祖级列表', dept_name varchar(30) default '' , --comment '部门名称', @@ -332,20 +947,52 @@ begin ) end - +SET IDENTITY_INSERT dbo.sys_dept ON; -- ---------------------------- -- 初始化-部门表数据 -- ---------------------------- -insert into sys_dept values(100, 0, '0', '若依科技', 0, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(101, 100, '0,100', '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); -insert into sys_dept values(109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', getdate(), '', null); +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (100, 0, '0', '若依科技', 0, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (101, 100, '0,100', '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + +INSERT INTO dbo.sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader, phone, email, status, del_flag, create_by, create_time, update_by, update_time) +VALUES (109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2025-05-05 11:09:44.197', '', NULL) + + + +SET IDENTITY_INSERT dbo.sys_dept OFF; -- ---------------------------- -- 2、用户信息表 @@ -353,7 +1000,7 @@ insert into sys_dept values(109, 102, '0,100,102', '财务部门', 2, '若 if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_user') begin create table sys_user ( - user_id bigint not null , --comment '用户ID', + user_id bigint identity(100,1) not null , --comment '用户ID', dept_id bigint default null, --comment '部门ID', user_name varchar(30) not null , --comment '用户账号', nick_name varchar(30) not null , --comment '用户昵称', @@ -379,16 +1026,61 @@ end -- ---------------------------- -- 初始化-用户信息表数据 -- ---------------------------- -insert into sys_user values(1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', getdate(), 'admin', getdate(), '', null, '管理员'); -insert into sys_user values(2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', getdate(), 'admin', getdate(), '', null, '测试员'); +SET IDENTITY_INSERT dbo.sys_user ON; +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2025-05-13 10:12:26.137', 'admin', '2025-05-05 11:37:08.19', '', '2025-05-13 10:12:26.137', '管理员') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', '2025-05-05 11:37:08.193', 'admin', '2025-05-05 11:37:08.193', '', NULL, '测试员') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (100, 103, '宝宝', 'bao', '00', '37329795@qq.com', '15555555555', '0', '', '$2a$10$35se0Qh90dUGFhVgemwGA.hEvLac0yDJtpUvkKGdfyKq.IMmgFd5.', '0', '0', '', NULL, 'admin', '2025-05-07 09:37:17.367', '', NULL, '测试角色') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (101, 103, 'cs', '测试', '00', '373297395@qq.com', '15555555556', '1', '', '$2a$10$hS8IwhMco9Emx9JWBpuTuOjCVwMohFxDRvkpDKTn3bhyzyRJEdCBq', '0', '0', '', NULL, 'admin', '2025-05-07 09:41:28.163', '', NULL, '54654654654') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (102, 108, 'cs22', '测试22', '00', '', '15222222252', '0', '', '$2a$10$3GTDWR1BWzgXZhzOGO4zRu7qK61RrLGjU3EUfXof3TK00c5i1my.a', '0', '0', '', NULL, 'admin', '2025-05-07 11:55:35.373', 'admin', '2025-05-07 11:55:49.853', '工地刚发的刚发的') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (103, 103, 'lis', 'lis测试用户', '00', '', '15454525252', '0', '', '$2a$10$HLi6sS7EJbfa5IYi34jFKezn0r1YIu7IMuFewCqh2esF/OKGRP29O', '0', '0', '127.0.0.1', '2025-05-08 17:46:54.04', 'admin', '2025-05-08 17:36:25.92', '', '2025-05-08 17:46:54.04', '231321') + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (104, 103, 'ce222', 'ce222', '00', '', '', '0', '', '$2a$10$5XORjvxJ7kyEo6H06A.67.apcYE.JDLyCxkpP53KMQLybA57ds3VW', '0', '0', '', NULL, 'admin', '2025-05-10 23:13:06.837', '', NULL, NULL) + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (105, 103, 'ce3333', 'ce3333', '00', '', '', '0', '', '$2a$10$htze51lx.BLjy0y4l.I/qeyUlAG3LKzAr.phVG/IeUqFxLV4RtgrO', '0', '0', '', NULL, 'admin', '2025-05-10 23:13:23.367', '', NULL, NULL) + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (106, 103, 'ce4444', 'ce4444', '00', '', '', '0', '', '$2a$10$mstvUb6LBnJVYEM4MJ35RuNWLVKfGtDbvadKVwH3p7UlGFMMYEWke', '0', '0', '', NULL, 'admin', '2025-05-10 23:13:43.107', '', NULL, NULL) + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (107, 103, 'ce5555', 'ce5555', '00', '', '', '0', '', '$2a$10$/yyadSzKUwvodHlqXKAL5.bYfse/6QsLBZefEzqX...9CrV44ABO6', '0', '0', '', NULL, 'admin', '2025-05-10 23:13:57.887', '', NULL, NULL) + + +INSERT INTO dbo.sys_user (user_id, dept_id, user_name, nick_name, user_type, email, phonenumber, sex, avatar, password, status, del_flag, login_ip, login_date, create_by, create_time, update_by, update_time, remark) +VALUES (108, 103, 'ce6666', 'ce6666', '00', '', '', '0', '', '$2a$10$6Mpd3opDnFjyG73w/0SK7uy5Q8lHGU4dtLdyKgHGGR8PQ5d5a3St.', '0', '0', '', NULL, 'admin', '2025-05-10 23:14:15.293', '', NULL, NULL) + +SET IDENTITY_INSERT dbo.sys_user OFF; -- ---------------------------- -- 3、岗位信息表 -- ---------------------------- +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_post') +begin create table sys_post ( - post_id bigint not null , --comment '岗位ID', + post_id bigint identity(1,1) not null , --comment '岗位ID', post_code varchar(64) not null , --comment '岗位编码', post_name varchar(50) not null , --comment '岗位名称', post_sort int not null , --comment '显示顺序', @@ -400,14 +1092,30 @@ create table sys_post remark varchar(500) default null, --comment '备注', primary key (post_id) ) +end + -- ---------------------------- -- 初始化-岗位信息表数据 -- ---------------------------- -insert into sys_post values(1, 'ceo', '董事长', 1, '0', 'admin', getdate(), '', null, ''); -insert into sys_post values(2, 'se', '项目经理', 2, '0', 'admin', getdate(), '', null, ''); -insert into sys_post values(3, 'hr', '人力资源', 3, '0', 'admin', getdate(), '', null, ''); -insert into sys_post values(4, 'user', '普通员工', 4, '0', 'admin', getdate(), '', null, ''); +SET IDENTITY_INSERT dbo.sys_post ON; + +INSERT INTO dbo.sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) +VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2025-05-05 11:38:34.437', '', NULL, '') + + +INSERT INTO dbo.sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) +VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2025-05-05 11:38:34.437', '', NULL, '') + + +INSERT INTO dbo.sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) +VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2025-05-05 11:38:34.44', '', NULL, '') + + +INSERT INTO dbo.sys_post (post_id, post_code, post_name, post_sort, status, create_by, create_time, update_by, update_time, remark) +VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2025-05-05 11:38:34.44', '', NULL, '') + +SET IDENTITY_INSERT dbo.sys_post OFF; -- ---------------------------- -- 8、角色和部门关联表 角色1-N部门 -- ---------------------------- @@ -431,172 +1139,337 @@ insert into sys_role_dept values ('2', '105'); -- ---------------------------- -- 11、字典类型表 -- ---------------------------- -create table sys_dict_type -( - dict_id bigint not null , --comment '字典主键', - dict_name varchar(100) default '' , --comment '字典名称', - dict_type varchar(100) default '' , --comment '字典类型', - status varchar(1) default '0', --comment '状态(0正常 1停用)', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(500) default null, --comment '备注', - primary key (dict_id), - unique (dict_type) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_dict_type') +begin + create table sys_dict_type + ( + dict_id bigint identity(100,1) not null , --comment '字典主键', + dict_name varchar(100) default '' , --comment '字典名称', + dict_type varchar(100) default '' , --comment '字典类型', + status varchar(1) default '0', --comment '状态(0正常 1停用)', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(500) default null, --comment '备注', + primary key (dict_id), + unique (dict_type) + ) +end -insert into sys_dict_type values(1, '用户性别', 'sys_user_sex', '0', 'admin', getdate(), '', null, '用户性别列表'); -insert into sys_dict_type values(2, '菜单状态', 'sys_show_hide', '0', 'admin', getdate(), '', null, '菜单状态列表'); -insert into sys_dict_type values(3, '系统开关', 'sys_normal_disable', '0', 'admin', getdate(), '', null, '系统开关列表'); -insert into sys_dict_type values(4, '任务状态', 'sys_job_status', '0', 'admin', getdate(), '', null, '任务状态列表'); -insert into sys_dict_type values(5, '任务分组', 'sys_job_group', '0', 'admin', getdate(), '', null, '任务分组列表'); -insert into sys_dict_type values(6, '系统是否', 'sys_yes_no', '0', 'admin', getdate(), '', null, '系统是否列表'); -insert into sys_dict_type values(7, '通知类型', 'sys_notice_type', '0', 'admin', getdate(), '', null, '通知类型列表'); -insert into sys_dict_type values(8, '通知状态', 'sys_notice_status', '0', 'admin', getdate(), '', null, '通知状态列表'); -insert into sys_dict_type values(9, '操作类型', 'sys_oper_type', '0', 'admin', getdate(), '', null, '操作类型列表'); -insert into sys_dict_type values(10, '系统状态', 'sys_common_status', '0', 'admin', getdate(), '', null, '登录状态列表'); +SET IDENTITY_INSERT dbo.sys_dict_type ON; + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2025-05-06 09:06:43.143', '', NULL, '用户性别列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2025-05-06 09:06:43.143', '', NULL, '菜单状态列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2025-05-06 09:06:43.143', '', NULL, '系统开关列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (4, '任务状态', 'sys_job_status', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '任务状态列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (5, '任务分组', 'sys_job_group', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '任务分组列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '系统是否列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '通知类型列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '通知状态列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '操作类型列表') + + +INSERT INTO dbo.sys_dict_type (dict_id, dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) +VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2025-05-06 09:06:43.147', '', NULL, '登录状态列表') + +SET IDENTITY_INSERT dbo.sys_dict_type OFF; -- ---------------------------- -- 12、字典数据表 -- ---------------------------- -create table sys_dict_data -( - dict_code bigint not null , --comment '字典编码', - dict_sort int default 0 , --comment '字典排序', - dict_label varchar(100) default '' , --comment '字典标签', - dict_value varchar(100) default '' , --comment '字典键值', - dict_type varchar(100) default '' , --comment '字典类型', - css_class varchar(100) default null, --comment '样式属性(其他样式扩展)', - list_class varchar(100) default null , --comment '表格回显样式', - is_default char(1) default 'N' , --comment '是否默认(Y是 N否)', - status char(1) default '0' , --comment '状态(0正常 1停用)', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(500) default null , --comment '备注', - primary key (dict_code) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_dict_data') +begin + create table sys_dict_data + ( + dict_code bigint identity(100,1) not null , --comment '字典编码', + dict_sort int default 0 , --comment '字典排序', + dict_label varchar(100) default '' , --comment '字典标签', + dict_value varchar(100) default '' , --comment '字典键值', + dict_type varchar(100) default '' , --comment '字典类型', + css_class varchar(100) default null, --comment '样式属性(其他样式扩展)', + list_class varchar(100) default null , --comment '表格回显样式', + is_default char(1) default 'N' , --comment '是否默认(Y是 N否)', + status char(1) default '0' , --comment '状态(0正常 1停用)', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(500) default null , --comment '备注', + primary key (dict_code) + ) +end -insert into sys_dict_data values(1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', getdate(), '', null, '性别男'); -insert into sys_dict_data values(2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', getdate(), '', null, '性别女'); -insert into sys_dict_data values(3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', getdate(), '', null, '性别未知'); -insert into sys_dict_data values(4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', getdate(), '', null, '显示菜单'); -insert into sys_dict_data values(5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '隐藏菜单'); -insert into sys_dict_data values(6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', getdate(), '', null, '正常状态'); -insert into sys_dict_data values(7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '停用状态'); -insert into sys_dict_data values(8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', getdate(), '', null, '正常状态'); -insert into sys_dict_data values(9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '停用状态'); -insert into sys_dict_data values(10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', getdate(), '', null, '默认分组'); -insert into sys_dict_data values(11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', getdate(), '', null, '系统分组'); -insert into sys_dict_data values(12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', getdate(), '', null, '系统默认是'); -insert into sys_dict_data values(13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '系统默认否'); -insert into sys_dict_data values(14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', getdate(), '', null, '通知'); -insert into sys_dict_data values(15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', getdate(), '', null, '公告'); -insert into sys_dict_data values(16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', getdate(), '', null, '正常状态'); -insert into sys_dict_data values(17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '关闭状态'); -insert into sys_dict_data values(18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', getdate(), '', null, '其他操作'); -insert into sys_dict_data values(19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', getdate(), '', null, '新增操作'); -insert into sys_dict_data values(20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', getdate(), '', null, '修改操作'); -insert into sys_dict_data values(21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '删除操作'); -insert into sys_dict_data values(22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', getdate(), '', null, '授权操作'); -insert into sys_dict_data values(23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', getdate(), '', null, '导出操作'); -insert into sys_dict_data values(24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', getdate(), '', null, '导入操作'); -insert into sys_dict_data values(25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '强退操作'); -insert into sys_dict_data values(26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', getdate(), '', null, '生成操作'); -insert into sys_dict_data values(27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '清空操作'); -insert into sys_dict_data values(28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', getdate(), '', null, '正常状态'); -insert into sys_dict_data values(29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', getdate(), '', null, '停用状态'); +SET IDENTITY_INSERT dbo.sys_dict_data ON; +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '性别男') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '性别女') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '性别未知') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '显示菜单') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '隐藏菜单') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '正常状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '停用状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '正常状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '停用状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '默认分组') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '系统分组') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '系统默认是') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '系统默认否') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '通知') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '公告') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '正常状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.913', '', NULL, '关闭状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '其他操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '新增操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '修改操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '删除操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '授权操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '导出操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '导入操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '强退操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '生成操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '清空操作') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '正常状态') + + +INSERT INTO dbo.sys_dict_data (dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) +VALUES (29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2025-05-06 09:09:04.917', '', NULL, '停用状态') + +SET IDENTITY_INSERT dbo.sys_dict_data OFF; -- ---------------------------- -- 13、参数配置表 -- ---------------------------- -create table sys_config ( - config_id int not null , --comment '参数主键', - config_name varchar(100) default '', --comment '参数名称', - config_key varchar(100) default '', --comment '参数键名', - config_value varchar(500) default '', --comment '参数键值', - config_type varchar(1) default 'N', --comment '系统内置(Y是 N否)', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(500) default null, --comment '备注', - primary key (config_id) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_config') +begin + create table sys_config ( + config_id int identity(100,1) not null , --comment '参数主键', + config_name varchar(100) default '', --comment '参数名称', + config_key varchar(100) default '', --comment '参数键名', + config_value varchar(500) default '', --comment '参数键值', + config_type varchar(1) default 'N', --comment '系统内置(Y是 N否)', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(500) default null, --comment '备注', + primary key (config_id) + ) +end + +SET IDENTITY_INSERT dbo.sys_config ON; +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow') -insert into sys_config values(1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', getdate(), '', null, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow' ); -insert into sys_config values(2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', getdate(), '', null, '初始化密码 123456' ); -insert into sys_config values(3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', getdate(), '', null, '深色主题theme-dark,浅色主题theme-light' ); -insert into sys_config values(4, '账号自助-验证码开关', 'sys.account.captchaEnabled', 'true', 'Y', 'admin', getdate(), '', null, '是否开启验证码功能(true开启,false关闭)'); -insert into sys_config values(5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', getdate(), '', null, '是否开启注册用户功能(true开启,false关闭)'); -insert into sys_config values(6, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', getdate(), '', null, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)'); +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '初始化密码 123456') +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '深色主题theme-dark,浅色主题theme-light') + +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (4, '账号自助-验证码开关', 'sys.account.captchaEnabled', 'true', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '是否开启验证码功能(true开启,false关闭)') + + +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '是否开启注册用户功能(true开启,false关闭)') + + +INSERT INTO dbo.sys_config (config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark) +VALUES (6, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', '2025-05-13 11:40:21.12', '', NULL, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)') + +SET IDENTITY_INSERT dbo.sys_config OFF; -- ---------------------------- -- 14、系统访问记录 -- ---------------------------- -create table sys_logininfor ( - info_id bigint not null , --comment '访问ID', - user_name varchar(50) default '', --comment '用户账号', - ipaddr varchar(128) default '', --comment '登录IP地址', - login_location varchar(255) default '', --comment '登录地点', - browser varchar(50) default '', --comment '浏览器类型', - os varchar(50) default '', --comment '操作系统', - status char(1) default '0', --comment '登录状态(0成功 1失败)', - msg varchar(255) default '' , --comment '提示消息', - login_time datetime , --comment '访问时间', - primary key (info_id) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_logininfor') +begin + create table sys_logininfor ( + info_id bigint identity(100,1) not null , --comment '访问ID', + user_name varchar(50) default '', --comment '用户账号', + ipaddr varchar(128) default '', --comment '登录IP地址', + login_location varchar(255) default '', --comment '登录地点', + browser varchar(50) default '', --comment '浏览器类型', + os varchar(50) default '', --comment '操作系统', + status char(1) default '0', --comment '登录状态(0成功 1失败)', + msg varchar(255) default '' , --comment '提示消息', + login_time datetime , --comment '访问时间', + primary key (info_id) + ) +end CREATE NONCLUSTERED INDEX idx_sys_logininfor_s ON sys_logininfor (status); CREATE NONCLUSTERED INDEX idx_sys_logininfor_lt ON sys_logininfor (login_time); -- ---------------------------- -- 15、定时任务调度表 -- ---------------------------- -create table sys_job ( - job_id bigint not null , --comment '任务ID', - job_name varchar(64) default '', --comment '任务名称', - job_group varchar(64) default 'DEFAULT', --comment '任务组名', - invoke_target varchar(500) not null , --comment '调用目标字符串', - cron_expression varchar(255) default '' , --comment 'cron执行表达式', - misfire_policy varchar(20) default '3', --comment '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', - concurrent varchar(1) default '1', --comment '是否并发执行(0允许 1禁止)', - status varchar(1) default '0', --comment '状态(0正常 1暂停)', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(500) default '' , --comment '备注信息', - primary key (job_id, job_name, job_group) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_job') +begin + create table sys_job ( + job_id bigint identity(100,1) not null , --comment '任务ID', + job_name varchar(64) default '', --comment '任务名称', + job_group varchar(64) default 'DEFAULT', --comment '任务组名', + invoke_target varchar(500) not null , --comment '调用目标字符串', + cron_expression varchar(255) default '' , --comment 'cron执行表达式', + misfire_policy varchar(20) default '3', --comment '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', + concurrent varchar(1) default '1', --comment '是否并发执行(0允许 1禁止)', + status varchar(1) default '0', --comment '状态(0正常 1暂停)', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(500) default '' , --comment '备注信息', + primary key (job_id, job_name, job_group) + ) +end -insert into sys_job values(1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', getdate(), '', null, ''); -insert into sys_job values(2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(''ry'')', '0/15 * * * * ?', '3', '1', '1', 'admin', getdate(), '', null, ''); -insert into sys_job values(3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(''ry'', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', getdate(), '', null, ''); +SET IDENTITY_INSERT dbo.sys_job ON; + +INSERT INTO dbo.sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, update_by, update_time, remark) +VALUES (1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', '2025-05-06 16:16:04.077', '', NULL, '') + + +INSERT INTO dbo.sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, update_by, update_time, remark) +VALUES (2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(''ry'')', '0/15 * * * * ?', '3', '1', '1', 'admin', '2025-05-06 16:16:04.077', '', NULL, '') + + +INSERT INTO dbo.sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, update_by, update_time, remark) +VALUES (3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(''ry'', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', '2025-05-06 16:16:04.08', '', NULL, '') + +SET IDENTITY_INSERT dbo.sys_job OFF; -- ---------------------------- -- 16、定时任务调度日志表 -- ---------------------------- -create table sys_job_log ( - job_log_id bigint identity(100,1) not null , --comment '任务日志ID', - job_name varchar(64) not null , --comment '任务名称', - job_group varchar(64) not null , --comment '任务组名', - invoke_target varchar(500) not null , --comment '调用目标字符串', - job_message varchar(500) , --comment '日志信息', - status varchar(1) default '0', --comment '执行状态(0正常 1失败)', - exception_info varchar(2000) default '' , --comment '异常信息', - create_time datetime --comment '创建时间', - primary key (job_log_id) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_job_log') +begin + create table sys_job_log ( + job_log_id bigint identity(100,1) not null , --comment '任务日志ID', + job_name varchar(64) not null , --comment '任务名称', + job_group varchar(64) not null , --comment '任务组名', + invoke_target varchar(500) not null , --comment '调用目标字符串', + job_message varchar(500) , --comment '日志信息', + status varchar(1) default '0', --comment '执行状态(0正常 1失败)', + exception_info varchar(2000) default '' , --comment '异常信息', + create_time datetime --comment '创建时间', + primary key (job_log_id) + ) +end + @@ -604,82 +1477,96 @@ create table sys_job_log ( -- ---------------------------- -- 17、通知公告表 -- ---------------------------- -create table sys_notice ( - notice_id int identity(10,1) not null, --comment '公告ID', - notice_title varchar(50) not null , --comment '公告标题', - notice_type varchar(1) not null, --comment '公告类型(1通知 2公告)', - notice_content text default null, --comment '公告内容', - status char(1) default '0' , --comment '公告状态(0正常 1关闭)', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(255) default null --comment '备注', - primary key (notice_id) -) +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'sys_notice') +begin + create table sys_notice ( + notice_id int identity(10,1) not null, --comment '公告ID', + notice_title varchar(50) not null , --comment '公告标题', + notice_type varchar(1) not null, --comment '公告类型(1通知 2公告)', + notice_content text default null, --comment '公告内容', + status char(1) default '0' , --comment '公告状态(0正常 1关闭)', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(255) default null --comment '备注', + primary key (notice_id) + ) +end + -- ---------------------------- -- 初始化-公告信息表数据 -- ---------------------------- -insert into sys_notice values('1', '温馨提醒:2018-07-01 若依新版本发布啦', '2', '新版本内容', '0', 'admin', getdate(), '', null, '管理员'); -insert into sys_notice values('2', '维护通知:2018-07-01 若依系统凌晨维护', '1', '维护内容', '0', 'admin', getdate(), '', null, '管理员'); +SET IDENTITY_INSERT dbo.sys_notice ON; +INSERT INTO dbo.sys_notice (notice_id, notice_title, notice_type, notice_content, status, create_by, create_time, update_by, update_time, remark) +VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '2', '新版本内容', '0', 'admin', '2025-05-06 17:29:36.113', '', NULL, '管理员') +INSERT INTO dbo.sys_notice (notice_id, notice_title, notice_type, notice_content, status, create_by, create_time, update_by, update_time, remark) +VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '1', '维护内容', '0', 'admin', '2025-05-06 17:29:36.117', '', NULL, '管理员') + +SET IDENTITY_INSERT dbo.sys_notice OFF; -- ---------------------------- -- 18、代码生成业务表 -- ---------------------------- -create table gen_table ( - table_id bigint identity(1,1) not null, --comment '编号', - table_name varchar(200) default '' , --comment '表名称', - table_comment varchar(500) default '' , --comment '表描述', - sub_table_name varchar(64) default null , --comment '关联子表的表名', - sub_table_fk_name varchar(64) default null , --comment '子表关联的外键名', - class_name varchar(100) default '' , --comment '实体类名称', - tpl_category varchar(200) default 'crud' , --comment '使用的模板(crud单表操作 tree树表操作)', - tpl_web_type varchar(30) default '' , --comment '前端模板类型(element-ui模版 element-plus模版)', - package_name varchar(100) , --comment '生成包路径', - module_name varchar(30) , --comment '生成模块名', - business_name varchar(30) , --comment '生成业务名', - function_name varchar(50) , --comment '生成功能名', - function_author varchar(50) , --comment '生成功能作者', - gen_type char(1) default '0' , --comment '生成代码方式(0zip压缩包 1自定义路径)', - gen_path varchar(200) default '/' , --comment '生成路径(不填默认项目路径)', - options varchar(1000) , --comment '其它生成选项', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - remark varchar(500) default null , --comment '备注', - primary key (table_id) -) - +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'gen_table') +begin + create table gen_table ( + table_id bigint identity(1,1) not null, --comment '编号', + table_name varchar(200) default '' , --comment '表名称', + table_comment varchar(500) default '' , --comment '表描述', + sub_table_name varchar(64) default null , --comment '关联子表的表名', + sub_table_fk_name varchar(64) default null , --comment '子表关联的外键名', + class_name varchar(100) default '' , --comment '实体类名称', + tpl_category varchar(200) default 'crud' , --comment '使用的模板(crud单表操作 tree树表操作)', + tpl_web_type varchar(30) default '' , --comment '前端模板类型(element-ui模版 element-plus模版)', + package_name varchar(100) , --comment '生成包路径', + module_name varchar(30) , --comment '生成模块名', + business_name varchar(30) , --comment '生成业务名', + function_name varchar(50) , --comment '生成功能名', + function_author varchar(50) , --comment '生成功能作者', + gen_type char(1) default '0' , --comment '生成代码方式(0zip压缩包 1自定义路径)', + gen_path varchar(200) default '/' , --comment '生成路径(不填默认项目路径)', + options varchar(1000) , --comment '其它生成选项', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + remark varchar(500) default null , --comment '备注', + primary key (table_id) + ) +end -- ---------------------------- -- 19、代码生成业务表字段 -- ---------------------------- -create table gen_table_column ( - column_id bigint identity(1,1) not null , --comment '编号', - table_id bigint , --comment '归属表编号', - column_name varchar(200) , --comment '列名称', - column_comment varchar(500) , --comment '列描述', - column_type varchar(100) , --comment '列类型', - java_type varchar(500) , --comment 'JAVA类型', - java_field varchar(200) , --comment 'JAVA字段名', - is_pk varchar(1) , --comment '是否主键(1是)', - is_increment varchar(1) , --comment '是否自增(1是)', - is_required varchar(1) , --comment '是否必填(1是)', - is_insert varchar(1) , --comment '是否为插入字段(1是)', - is_edit varchar(1) , --comment '是否编辑字段(1是)', - is_list varchar(1) , --comment '是否列表字段(1是)', - is_query varchar(1) , --comment '是否查询字段(1是)', - query_type varchar(200) default 'EQ' , --comment '查询方式(等于、不等于、大于、小于、范围)', - html_type varchar(200) , --comment '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', - dict_type varchar(200) default '' , --comment '字典类型', - sort int , --comment '排序', - create_by varchar(64) default '' , --comment '创建者', - create_time datetime , --comment '创建时间', - update_by varchar(64) default '' , --comment '更新者', - update_time datetime , --comment '更新时间', - primary key (column_id) -) \ No newline at end of file +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'gen_table_column') +begin + create table gen_table_column ( + column_id bigint identity(1,1) not null , --comment '编号', + table_id bigint , --comment '归属表编号', + column_name varchar(200) , --comment '列名称', + column_comment varchar(500) , --comment '列描述', + column_type varchar(100) , --comment '列类型', + java_type varchar(500) , --comment 'JAVA类型', + java_field varchar(200) , --comment 'JAVA字段名', + is_pk varchar(1) , --comment '是否主键(1是)', + is_increment varchar(1) , --comment '是否自增(1是)', + is_required varchar(1) , --comment '是否必填(1是)', + is_insert varchar(1) , --comment '是否为插入字段(1是)', + is_edit varchar(1) , --comment '是否编辑字段(1是)', + is_list varchar(1) , --comment '是否列表字段(1是)', + is_query varchar(1) , --comment '是否查询字段(1是)', + query_type varchar(200) default 'EQ' , --comment '查询方式(等于、不等于、大于、小于、范围)', + html_type varchar(200) , --comment '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', + dict_type varchar(200) default '' , --comment '字典类型', + sort int , --comment '排序', + create_by varchar(64) default '' , --comment '创建者', + create_time datetime , --comment '创建时间', + update_by varchar(64) default '' , --comment '更新者', + update_time datetime , --comment '更新时间', + primary key (column_id) + ) +end diff --git a/sql/updatedb_lis8.0.sql b/sql/updatedb_lis8.0.sql new file mode 100644 index 0000000..d69ea03 --- /dev/null +++ b/sql/updatedb_lis8.0.sql @@ -0,0 +1,4 @@ +if not exists(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'com_dict' AND COLUMN_NAME = 'userflag') +begin + alter table com_dict add userflag varchar(1) +end