roses/kernel-s-system/_sql/system.sql

927 lines
529 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 50732
Source Host : localhost:3306
Source Schema : guns
Target Server Type : MySQL
Target Server Version : 50732
File Encoding : 65001
Date: 08/01/2021 22:58:52
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for hr_organization
-- ----------------------------
DROP TABLE IF EXISTS `hr_organization`;
CREATE TABLE `hr_organization` (
`org_id` bigint(20) NOT NULL COMMENT '主键',
`org_parent_id` bigint(20) NOT NULL COMMENT '父id一级节点父id是0',
`org_pids` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父ids',
`org_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织名称',
`org_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织编码',
`org_sort` decimal(10, 2) NOT NULL COMMENT '排序',
`status_flag` tinyint(4) NOT NULL COMMENT '状态1-启用2-禁用',
`org_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`org_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '组织机构信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hr_organization
-- ----------------------------
INSERT INTO `hr_organization` VALUES (1339554696976781407, 0, '[0],', 'Guns总公司', 'guns_level_one', 1.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
INSERT INTO `hr_organization` VALUES (1339554696976781408, 1339554696976781407, '[0],[1339554696976781407],', '北京分公司', 'guns_beijing', 2.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
INSERT INTO `hr_organization` VALUES (1339554696976781409, 1339554696976781408, '[0],[1339554696976781407],[1339554696976781408],', '北京东直门分公司', 'guns_beijing_dongzhimen', 3.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for hr_position
-- ----------------------------
DROP TABLE IF EXISTS `hr_position`;
CREATE TABLE `hr_position` (
`position_id` bigint(20) NOT NULL COMMENT '主键',
`position_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位名称',
`position_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位编码',
`position_sort` decimal(10, 2) NOT NULL COMMENT '排序',
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态1-启用2-禁用',
`position_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`position_id`) USING BTREE,
UNIQUE INDEX `CODE_UNI`(`position_code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '职位信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hr_position
-- ----------------------------
INSERT INTO `hr_position` VALUES (1339554696976781332, '总监', 'zg', 1.00, 1, '', 'N', '2020-12-16 13:35:58', -1, NULL, NULL);
INSERT INTO `hr_position` VALUES (1339554696976781333, '总经理', 'zjl', 2.00, 1, '', 'N', '2020-12-17 19:21:47', -1, '2020-12-17 20:45:43', -1);
INSERT INTO `hr_position` VALUES (1339554696976781334, '董事长', 'dsz', 3.00, 1, '', 'N', '2020-12-17 20:02:16', -1, NULL, NULL);
-- ----------------------------
-- Table structure for sys_app
-- ----------------------------
DROP TABLE IF EXISTS `sys_app`;
CREATE TABLE `sys_app` (
`app_id` bigint(20) NOT NULL COMMENT '主键id',
`app_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用名称',
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '编码',
`active_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否默认激活Y-是N-否,激活的应用下的菜单会在首页默认展开',
`status_flag` tinyint(4) NOT NULL COMMENT '状态1-启用2-禁用',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`app_id`) USING BTREE,
UNIQUE INDEX `APP_CODE_UNIQUE`(`app_code`) USING BTREE COMMENT 'app编码唯一'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统应用' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_app
-- ----------------------------
INSERT INTO `sys_app` VALUES (1265476890672672821, '系统应用', 'system', 'Y', 1, 'N', '2020-03-25 19:07:00', 1265476890672672808, '2021-01-08 20:51:51', 1339550467939639299);
INSERT INTO `sys_app` VALUES (1265476890672672823, '业务应用', 'business', 'N', 1, 'N', '2020-03-26 08:40:33', 1265476890672672808, '2021-01-08 20:49:58', 1339550467939639299);
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS `sys_config`;
CREATE TABLE `sys_config` (
`config_id` bigint(20) NOT NULL COMMENT '主键',
`config_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
`config_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '编码',
`config_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '属性值',
`sys_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT 'Y' COMMENT '是否是系统参数Y-是N-否',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注',
`status_flag` tinyint(4) NULL DEFAULT 1 COMMENT '状态1-正常2-停用',
`group_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '常量所属分类的编码,来自于“常量的分类”字典',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`config_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '参数配置' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_config
-- ----------------------------
INSERT INTO `sys_config` VALUES (1, '会话过期时间', 'SYS_SESSION_EXPIRED_SECONDS', '3600', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (2, 'JWT安全码', 'SYS_JWT_SECRET', '1928374650abcdef', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (3, 'JWT过期时间', 'SYS_JWT_TIMEOUT_SECONDS', '259200', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (4, 'Linux本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_LINUX', '/data/home/rays/dev/tmp', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (5, 'Windows本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_WINDOWS', 'd:/tmp/file', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (6, '不需要过滤的url', 'SYS_NONE_SECURITY_URLS', '/assets/**,/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**,', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (7, '附件上传方式', 'ATTACHMENT_UPLOAD_METHOD', 'tencent_cloud_file_config', 'Y', '', 1, 'file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (8, 'session过期时间', 'SYS_SESSION_EXPIRED_SECONDS', '3600', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (9, '账号单端登录限制', 'SYS_SINGLE_ACCOUNT_LOGIN_FLAG', 'false', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (10, '携带token的header头的名称', 'SYS_AUTH_HEADER_NAME', 'Authorization', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (11, '携带token的param传参的名称', 'SYS_AUTH_PARAM_NAME', 'token', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (12, '系统默认密码', 'SYS_DEFAULT_PASSWORD', '123456', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (13, '会话信息是否增加保存在cookie中', 'SYS_SESSION_ADD_TO_COOKIE', 'true', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (14, '会话保存在cookie中时cooke的name', 'SYS_SESSION_COOKIE_NAME', 'Authorization', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (15, 'beetl自动检查资源', 'RESOURCE_AUTO_CHECK', 'true', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (21, '系统发布版本', 'SYS_RELEASE_VERSION', '20210101', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (22, '多租户开关', 'SYS_TENANT_OPEN', 'false', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (23, '验证码开关', 'SYS_CAPTCHA_OPEN', 'false', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (24, '系统名称', 'SYS_SYSTEM_NAME', 'Guns快速开发平台', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (25, 'Beetl默认边界符开始', 'DELIMITER_STATEMENT_START', '@', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (26, 'Beetl边界符的结束', 'DELIMITER_STATEMENT_END', 'null', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (27, '自定义标签文件Root目录', 'RESOURCE_TAG_ROOT', 'common/tags', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (28, '自定义标签文件后缀', 'RESOURCE_TAG_SUFFIX', 'tag', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (29, '获取文件生成auth url的失效时间', 'SYS_DEFAULT_FILE_TIMEOUT_SECONDS', '3600', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (30, '服务默认部署的环境地址', 'SYS_SERVER_DEPLOY_HOST', 'http://localhost:8080', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (31, '系统默认头像Base64', 'SYS_DEFAULT_AVATAR_BASE64', '/9j/4AAQSkZJRgABAQEAeAB4AAD/2wBDAFA3PEY8MlBGQUZaVVBfeMiCeG5uePWvuZHI////////////////////////////////////////////////////2wBDAVVaWnhpeOuCguv/////////////////////////////////////////////////////////////////////////wAARCAIcAhEDASEAAhEBAxEB/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF/8QAJRABAQACAgIBBQEBAQEAAAAAAAECESExAxJBBCIyUWETcRSB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAER/9oADAMBAAIRAxEAPwDxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAIAAAAAAAKAaNAaNAaNAaNAaNAaNAaNAaNAaNAaNAapqgetPWgetPWgetPWoL609aB609aB609aB609aB609aaHrQ0ZFBQAAAAAAAAEAAAAAUAAAUkQNICyba/zvwCXGzuIAAAACgAAACAAoAAAAAAAoA5jSCgAAAAAAAAAAAgACgDWOvkEk3eF9aglAPjg7BdT9tTOyaFanklmrGcsJreIM6v6QQAABQAAQAUUEAABQAAAAAHMaQUAAAAAAAAAAAWcpZoFmNy6TVnYOlwn+e52sxxyxnxQYv20kl7QPaziJ7X9qJsAlXYIAull18orUzny1PXL+AxljZWRAAAABQAAAAAAANgbNgbNgbAYFBQAAAEAAABQAFgJ1XSSUGsftykiZ/lYisXeNXLU5lVGLdgIAACgbWWAuy2WczlAkTfIrWOWu2rhMpvEHK8CoAAgAAAAbNgGwNmwNmwNmwNmwNgIKCgAAAIAAACgAGwKuN0Drr2w4vMc7lf/qCZXbKgAAAAAoC8Lx8oN+ks3jWbLPgVn/rWN10DXkxtx3pyVEAAAAAAAAAAAAAAAAAFAAAAQAAAABRABQaxysvBnZeUGBQAAAAAFBZpqaqC6s66WXXIq3GZf9Y9csQax8lnGSZ4/M6BzsRUAAAAAFAAAAAAAAAQAUAAABAAAFQBFAAAXYCAAAAAAAA1bCA3zOiVFaljUy9b+4gmcl50xrnXwoZYcbjnoAVAAAAAQAAAAVAUAAZFBQAAQAABQBFEAAAAAAAAAAAAAFBZbOnTGzLsFuOuD1s65ZVZuT+JvHLjqqG7izlJeYDGgRFAAAAAAAAAAAABkUFAABAAAFASooAAAAAAAAAAAAAACrsHTHKyc8xuXXMRW5zOY55eOZc43VBiZ3HjKcFk7x6BmxBAAAAAAAAAAAAABkUFAABAAVAUBEUAAAAAAAAAAAAAAAUGsctTVbl+Yit/6RMvuu5wgnfFmyY6vCjGXFZEAAAAAAAAAAAAAGRQUAAEABQBKCCgAAAAAAAAAAAAAACgEugWrM9IOkzla2Kzcd87250EBAAAAAAAAAAAAGRQUAQABQABFEAAAAAAAAAAAAAABQAEAUAl03MkVZlYa3zAYoIAAAAAAAAAAAAyKCgCAoAAAVlQAAAAAAAAAAFXQJZpAVAVAFAQFQBQXbWO98IqZdoIAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAABdAGgVSINa2zcdAIC6X1BmzRpQ0aEAEAVZQa40zYgAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAFAURV0ugNIK1GtbiDPqzcdKirKBcWNaoL2mgXXG2aICiKC9raggAAAAAAAAAAAMiigKIAAAAIigAAAAAKBpdIppdAuhFVLAWXTUoLYa2DOWGkgNT+mWIOd4awntNKjN44ZBFVEAWKAIAAAAAAAAAAAyKKAogAAAAyKAAAAACrICyLpFXTXqip0IGjWwLE5lUdMbuLALPhicXQLcVn6qDOePyxjxko15J8uSogqAAsBRAAAAAAAAAAAGRRQFEAAAEoIKAAAAACrEVqLEVqLEF0zYAsBUs3AZx4rpFUvTGXcEbn9LNdIHccrNVRrvHTllFiIioACwFEAAAAAAAAAAAZFFVAAAAASggoAAAAKC6WIrUWIrUXSKAJQFICZT5awu4o1lOHPOcSiN484xfjSDPVTKCsXitZY7xVHCzSNMgAoKIAAAAAAAAAAAyKKqAAAAAlBBQAAAAWAqxFajUZVqLBVNAaTQJZoAT8buA3LuGU3jYqM+PrTpUGdFgrGUan4g4+SarDUZqCoLAUQAAAAAAAAAABkUVUAAAABKCCgAAACkFai6RValQaioqqAgKmgTS63ATVjWN3FRmT1rp2CWIgzZyY9aFYzm3GxqM1BUFgKIAAAAAAAAAAAyKKqAoIAKAlBEUAAAAUgNRYjStTlBY1EFUUAABZBF1tPVQ1xyToDabAZs5RUscvJjqrErCNMiwFEAAAAAAAAAAAZFFVAUEUAAAZvaKAAAKACtRUVY1EGosQaBVQAgKbVEucjN8sA95UmQFrPILjlq8t9opYx5JuLEcKjTIsBRAQAAAAAAAAFAZFFVBQAAACAmUZUAAAUAFWNILK1KirtZUGtqACgIzlWblVGeU0C6WSg1IvqB6tSIDOX40HmvY2iLBFEEFBUAAAEAFABRBkUWKgoAAACwDLpzWAAAKAAptdoGzdA9q1MgblalZVraygqKrFZ0iLpZAamMa9VDQAIDOXVB5r3UbQVEEAFFEAAAAABAABFUFQUAAABYgvw53tYIKACgCAKKvqetQPWgNRqVFalalQaBUsTQIly0If6rPJuKLM2plKgoAlB5svyrLSNY47p8iIAgCqAgKAIAAIAAiqCoKAAAAsQVjLtYMigAoAANRFdMdNcILqJcIKxcdMgsreNB0ioIzaKxbpyyvKxDG6d/DzhVqLl4/mMyWIrpFQEoPP5JrKstI6Y8Y7YoiAIAoAAAAAAIAAiqCoKAAAAsQVjPtRkUAFAAUWXQHtV96g3Ll67WZ67RW7qzcc8oDDpiDri1UEYorGUZuG1QnitrvjJjNRUKSIq6VAqUHn8s+5idtI7ZTWDkCAiAKAIAoAAoIgACKoogoAACAsUWJlAcxQAUFAAEAG/HLbJ8O+eEuKK5YZet1W84iuNbwB2xbqDKWCsWEEWNRRo0CiCJQcfJOXPXKjp5LxI5qiAiKAAgoACoAAgACKoogoAAACxBYt5ijnYyoAKCggCjUkamMQdMdY9NbRUslMvxBxrWAO2LaCAJYxoVY1BGoKAglZoMWbqeqjPkYVmoAigAIKAAAogIAAiqLFQBAABQWINAJY52KIKKCjUQLE0DUjciK1IqCsZUHOrjeVHbFtAAXTNgJpYDUVQSglZqDN7akBw8n5MqygoigAIKAAAogIAAiqLFQBAABQWINQUGMoDAooKNRBrRpFakaiCgFc7RWKuPao74tooCLFBmxFFiwFQGalRWflq8YiPPe6jTKAIoACCgAAKICAAIqixUAQAAUFiDUFBL0DmigoDURW41EVVQUFZrnlVRhrHtR2xdPhkAFgAigoCAiVBJ2nkuppRwFZQBFAAQUABUBQQAAZVRYqAIAAKCxBqCgA55dsqCgLEVvFuJVaEFBWcunHK8rERrHtR2xdIyAAbAVQAEBGagThxzu8lRm3YqCAigAIKAAqCgIAAMqosVAABAAFgNQUARnKOaqKACt41uVmq1FQUFc/Jl8OTUQax7B1xdsWQqAICxQBQQEZvSDnnnxqObSAIgCKAAIoAAg0AgAAyqixUAAEAEFiq1AABL050AUAVY3jUqtytRkUvQPPnd1lpFJQdsK6SorVrNykQWXa6BFgKKIIIxnftoOE5q3hpEBEARQAAAQBQUAQABlVFEFABAAFijUUEAK55QERRQUalQblblRVTO6xB56NIANY5adcc2arc5S4yoNYzTQFhFAAEErn5PxUcZxVqogIgCKCgIAAACgFQABlVFEFABAAFijUUEAGbAYsFAFFgNStxlWoz5OiDiNIAN4YezpMJizVdJ0oKAqAAAgzXPy/CjF4ZVkAQBFBQAAARQAEoAAyqhFQUQAAAWKNRQQEEFSxigCgCrHSM0ai2biK5XBPVoa9T1RG8G8uhTG7jQKACAAICfLllzmombCsgCAIKKIAAAAAAAAMqosVAEAAAFijUUEBABGcoKwqgCrGolG5V2yqWoAA3g1l0BjNNKooibNoKAgCVwvOW1FuqzRlBRAEFAQFBAAAAFAAZVRYqAqCAAAsUaiggIAICudRRQBqVFa2bRQ2gbNqLMm5mC7Nip7L7gXNZURqKCIDOV1HLelRDYiCggAAAAAAAAACgMKoqoCoIAACwGoqiAgAgKzlGFBQFgrQyqsWkDZtUWbam0VqbrXqKep6g1MYukFgIJQYyscr2qVBUAAAAAAAAAAAABBhWhVQBAAABYDUVUQAQAFSsUEVQAajUjLSyM5YgzpcdKjrNLEVWoKGgURABEtByy5YVKCoCAKAAAAAAAAAgAMK0KqAIAAALAaiqiAIACKMZRRkUUBY3ilVrbGVRWVijcrW0VfZZkg1tQAQQBnK8A41FZoKAAAAAgAAAAAAAAwrQsVAEAAAFgNQUARBFABKozkyoAKsqK1tKiosVGo1pFNNSINRQFAAZrN6ByvaKzQUBAFAAEAAAAABQABzVoWKgCAACgsBqAAIgiooCW6UYtRRdIAoG1RRYDcbiKq6QWAKAJaDJZvG6BxRWaCgIAAAAAAAAKgKAAOatCxUAQAAUFgNQABEQUEFYt2oyKNdxARQAFjURWsW4yqrAagAAlrO9gNYXQOPkx9cmFZoAAAAAAAAAoAAAADmrQsVAEAAFQWCtQAQQQUAZyrKgA1CwVEEFBY0irG5UVqVUCVdgbNglQFS3UA883JXBWaAAAAAAAAAKAAAAA5q0KqAIAAALAagoIIgiolqjIoALGgSxBUBFWUGpWpWa01Ku0Da7A2bAUBnyfEgNeb7cMduOU+Y0jIiAAAqAACgAAAAAADmrQqoAgAAAsBqCggIAxeKigAACyg0iKlRUFAlblRV2bRV9lloNSftUBQF8ePtnv4iifVTiVwwy+KqLlEEEAEFARQAAAAAAAAc1aFVAABAAFgNQUZuTNyBZl+0v8AKoyAAAAAsqoCAIoqxFXYDrhjG+P0iggKCX9O2GPrjpUZ+ont4r/HhVHbC7nLVwlBm+O/DNxsBBAAAAAAAAAAAHNWhRBQAAAFiB7JeflRmiiAAAAAAAoG1QQUI1JtFX1NA1jdOm9sqKCgNePHd3XVUTKbwsfPs1aqGF1XeXcA3Ye37AuONZvj/QM3Gz4QAQAAAAAAAAc1aFEFAAAANgzsUQAAAAAAAAAWAqzG1B1w8FW4aFZsTSKumpEGlAJPa6B2k1FVB4PNNeSrEYdcMtxRvtm8IG1lBrZqUGbh+mLjYCCAAAAAAAOatCiCgAAWgzsUQAAAAAAABQQAdPHj7A7Y+B1x8ciDc4LjLBXHLCxjSKaaQFA/kdcMfWKNHXassXy4z5eXz2ZZbgOS43VUdZTLmIMb0ewLMmpRV2uwLjKzcL8CMa0ACAAAADmrQogoBtNggogAAAAAAAAAsBdICO/035A9cEAAsl7c8/HrmIrGhFDYOmGGua6Wqjj5PPMeJy8+Xlyy+VRjdTaiKDeN4a2gzlGANtSg1MmtgbamQpxUuE+BGbjYyAIAAA5q0LBA2AgogAAAAAAAAAALAaRFTTr9N+ao9ZtBm+TGd1m/UYQGf/Vj+mp9RhlxQXLGXnGsVGkb8eNv3UGs/Ljh88vNn5ss/wCRUcxUQkt6BAGsW4gVizQIKG2pkDUq7QJWpkK1tLjKIzcLGQBAAcxoVEAUQAAAAAAAAAAABvD9AZcVEUdPFlMc90RvP6jn7XHLyZZd1RkBFBrHyZY9V0vm3OuUVj/S721l58sproHLf7FQkVAdfp8d+3/FHLKaysZBZ22gF6BhFBQJWpUF2SitStSgu0slEZsRAAYRQFEAAAAAAAAAAAAAFnFBq3cRFEVEAAAAUA2AoAgjr9Pn656vVUPqMdeT/riA3OgVNoJkyoACguzaBtqZAsyalAZAAc9iiAAAAAAAAAAAAAAAAsoCoCAAAAAADUEABCcVR08nk98ZucxyAaxBUQEqiAAAALsF2u0F9jG7BQHIUAAAAAAAAAAAAAAAAFBUoIugNLoDRpBKKIoCoIoJsUJSgiwGkqCCiAAAAACgEvIN7EHMUAAAAAAAAAAAAAAAAAFKCKAqC6XQJpNAgoAACLJb0AAigvwiAigAAAAAAAC7AQAAAAAAAAAAAAAAAAAUABFBZGscbleEHfDw6u8nS+LGgXxTTln4rAccsWNAqKADp4/Dln/I9WPixwwvAPHlPurOgAFiAIAAAAAAAAAAAAAAAAAAAAAAAAAAAKAsTQo1jjb1BHbx+C38nfHCY9RBqqAA5eTx7nDzZ4WUGOgEd/p/FMvuynCj1ya6Zz/GoPDfyqAgoAIAAAAAAAAAAAAAAAAAAAAAAAAAAACgDphj79dorpj4pvl3xxknEEaUEvSzoAAYzwmUB5s/FZelx+nys5BvD6ea+52xxmOOoDTHl/Cg8eXbIqCoACAAAAAAAAAAAAAAAAAAAAAAAAAAACiA1hl65SivVbvVdMaI0AXpJ0CgACaUAAY8v4UHjrIqUVBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVUEFHbxZX109GHwg2oCYgoAAAAAx5fwoPGzRSooAiAAAAAAAAAAD/9k=', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (32, '用于auth模块权限校验的jwt失效时间', 'SYS_AUTH_JWT_TIMEOUT_SECONDS', '604800', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_database_info
-- ----------------------------
DROP TABLE IF EXISTS `sys_database_info`;
CREATE TABLE `sys_database_info` (
`db_id` bigint(20) NOT NULL COMMENT '主键',
`db_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库名称(英文名称)',
`jdbc_driver` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的驱动类型',
`jdbc_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的url',
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接的账号',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接密码',
`remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注,摘要',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`db_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '多数据源信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_dict
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict`;
CREATE TABLE `sys_dict` (
`dict_id` bigint(20) NOT NULL COMMENT '字典id',
`dict_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典编码',
`dict_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典名称',
`dict_name_pinyin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典名称首字母',
`dict_encode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典编码',
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典类型的编码',
`dict_short_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称',
`dict_short_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称的编码',
`dict_parent_id` bigint(20) NOT NULL COMMENT '上级字典的id(如果没有上级字典id则为-1)',
`status_flag` tinyint(4) NOT NULL COMMENT '状态:(1-启用,2-禁用),参考 StatusEnum',
`dict_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
`dict_pids` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '父id集合',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建用户id',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改用户id',
PRIMARY KEY (`dict_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_type`;
CREATE TABLE `sys_dict_type` (
`dict_type_id` bigint(20) NOT NULL COMMENT '字典类型id',
`dict_type_class` int(2) NULL DEFAULT NULL COMMENT '字典类型: 1-业务类型2-系统类型,参考 DictTypeClassEnum',
`dict_type_bus_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型业务编码',
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型编码',
`dict_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型名称',
`dict_type_name_pinyin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型名称首字母拼音',
`dict_type_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型描述',
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '字典类型的状态1-启用2-禁用,参考 StatusEnum',
`dict_type_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建用户id',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改用户id',
PRIMARY KEY (`dict_type_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_file_info
-- ----------------------------
DROP TABLE IF EXISTS `sys_file_info`;
CREATE TABLE `sys_file_info` (
`file_id` bigint(20) NOT NULL COMMENT '文件主键id',
`file_code` bigint(20) NOT NULL COMMENT '文件编码,本号升级的依据,解决一个文件多个版本问题,多次上传文件编码不变',
`file_version` int(11) NOT NULL DEFAULT 1 COMMENT '文件版本从1开始',
`file_status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '当前状态0-历史版,1-最新版',
`file_location` tinyint(4) NOT NULL COMMENT '文件存储位置1-阿里云2-腾讯云3-minio4-本地',
`file_bucket` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件仓库(文件夹)',
`file_origin_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件名称(上传时候的文件全名)',
`file_suffix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件后缀,例如.txt',
`file_size_kb` bigint(20) NULL DEFAULT NULL COMMENT '文件大小kb为单位',
`file_size_info` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件大小信息,计算后的',
`file_object_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储到bucket中的名称主键id+.后缀',
`file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储路径',
`secret_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '是否为机密文件Y-是机密N-不是机密',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`file_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_file_info
-- ----------------------------
INSERT INTO `sys_file_info` VALUES (10000, -1, 1, '1', 4, 'defaultBucket', 'defaultAvatar.png', '.png', 12, '11.56 kB', '10000.png', NULL, 'Y', 'N', '2020-12-29 20:07:14', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_log`;
CREATE TABLE `sys_log` (
`log_id` bigint(20) NOT NULL COMMENT '主键',
`log_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志的名称,一般为业务名称',
`log_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志记录的内容',
`app_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '服务名称一般为spring.application.name',
`request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前用户请求的url',
`request_params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求参数体',
`request_result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求结果',
`server_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前服务器的ip',
`client_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户端的ip',
`user_id` bigint(20) NULL DEFAULT NULL COMMENT '用户id',
`http_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '请求http方法',
`client_browser` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户浏览器标识',
`client_os` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户操作系统',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`log_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '日志记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_menu`;
CREATE TABLE `sys_menu` (
`menu_id` bigint(20) NOT NULL COMMENT '主键',
`menu_parent_id` bigint(20) NOT NULL COMMENT '父id顶级节点的父id是-1',
`menu_pids` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父id集合中括号包住逗号分隔',
`menu_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单的名称',
`menu_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单的编码',
`app_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用编码',
`visible` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'Y' COMMENT '是否可见Y-是N-否',
`menu_sort` decimal(10, 2) NOT NULL DEFAULT 100.00 COMMENT '排序',
`status_flag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态1-启用2-禁用',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`layui_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单的路径适用于layui-beetl版本',
`layui_icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单的图标适用于layui-beetl版本',
`antdv_router` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '路由地址浏览器显示的URL例如/menu适用于antdvue版本',
`antdv_icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'icon-default' COMMENT '图标适用于antdvue版本',
`antdv_component` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '前端组件名适用于antdvue版本',
`antdv_link_open_type` tinyint(4) NULL DEFAULT 0 COMMENT '外部链接打开方式1-内置打开外链2-新页面外链适用于antdvue版本',
`antdv_link_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外部链接地址适用于antdvue版本',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统菜单' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
INSERT INTO `sys_menu` VALUES (1339550467939639301, -1, '[-1],', '主控面板', 'blackboard', 'system', 'Y', 10.00, 1, NULL, '', 'layui-icon-theme', 'dashboard', 'dashboard', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 20:52:34', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639302, 1339550467939639301, '[-1],[1339550467939639301],', '工作台', 'board_platform', 'system', 'Y', 10.10, 1, NULL, '/view/dashboard/workplace', 'layui-icon-rate-solid', 'workplace', 'shop', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', 1339550467939639299, '2021-01-08 20:52:34', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639303, 1339550467939639301, '[-1],[1339550467939639301],', '分析页', 'board_analyse', 'system', 'Y', 10.20, 1, NULL, '/view/dashboard/analysis', NULL, 'analysis', 'rocket', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 20:52:34', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639304, -1, '[-1],', '组织架构', 'org', 'system', 'Y', 20.00, 1, NULL, '', 'layui-icon-template-1', 'orginfo', 'apartment', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:47:06', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639305, 1339550467939639304, '[-1],[1339550467939639304],', '用户管理', 'org_user', 'system', 'Y', 20.10, 1, NULL, NULL, NULL, 'user', 'user', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639306, 1339550467939639304, '[-1],[1339550467939639304],', '机构管理', 'org_main', 'system', 'Y', 20.20, 1, NULL, '/organization', NULL, 'organization', 'table', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639307, 1339550467939639304, '[-1],[1339550467939639304],', '职位管理', 'org_position', 'system', 'Y', 20.30, 1, NULL, '/position', NULL, 'position', 'solution', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639308, -1, '[-1],', '权限管理', 'auth', 'system', 'Y', 30.00, 1, NULL, '', 'layui-icon-vercode', 'authority', 'build', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 17:20:19', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639309, 1339550467939639308, '[-1],[1339550467939639308],', '应用管理', 'auth_app', 'system', 'Y', 30.10, 1, NULL, '/view/app', NULL, 'application', 'appstore', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:45:55', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639310, 1339550467939639308, '[-1],[1339550467939639308],', '菜单管理', 'auth_menu', 'system', 'Y', 30.20, 1, NULL, '/view/menu', NULL, 'menu', 'menu', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:45:55', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639311, 1339550467939639308, '[-1],[1339550467939639308],', '角色管理', 'auth_role', 'system', 'Y', 30.30, 1, NULL, '/view/role', NULL, 'role', 'slack', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:45:55', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639312, 1339550467939639308, '[-1],[1339550467939639308],', '资源管理', 'auth_resource', 'system', 'Y', 30.40, 1, NULL, '/view/resource', NULL, 'resource', 'bars', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:45:55', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639313, -1, '[-1],', '基础数据', 'base', 'system', 'Y', 40.00, 1, NULL, '', 'layui-icon-component', 'base', 'coffee', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:47:41', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639314, 1339550467939639313, '[-1],[1339550467939639313],', '系统配置', 'base_sysconfig', 'system', 'Y', 40.10, 1, NULL, NULL, NULL, 'sysconfig', 'file-done', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639315, 1339550467939639313, '[-1],[1339550467939639313],', '字典管理', 'base_dict', 'system', 'Y', 40.20, 1, NULL, NULL, NULL, 'dict', 'icon-default', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639316, 1339550467939639313, '[-1],[1339550467939639313],', '接口文档', 'base_apis', 'system', 'Y', 40.30, 1, NULL, NULL, NULL, 'api', 'api', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639317, -1, '[-1],', '系统功能', 'sys', 'system', 'Y', 50.00, 1, NULL, '', 'layui-icon-set', 'system', 'thunderbolt', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:47:49', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639318, 1339550467939639317, '[-1],[1339550467939639317],', '文件管理', 'sys_file', 'system', 'Y', 50.10, 1, NULL, NULL, NULL, 'file', 'tags', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639319, 1339550467939639317, '[-1],[1339550467939639317],', '日志管理', 'sys_log', 'system', 'Y', 50.20, 1, NULL, NULL, NULL, 'logs', 'global', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639320, 1339550467939639317, '[-1],[1339550467939639317],', '在线用户', 'sys_online', 'system', 'Y', 50.30, 1, NULL, NULL, NULL, 'online', 'laptop', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639321, 1339550467939639317, '[-1],[1339550467939639317],', '定时任务', 'sys_timer', 'system', 'Y', 50.40, 1, NULL, NULL, NULL, 'timer', 'inbox', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639322, -1, '[-1],', '通知管理', 'notice', 'system', 'Y', 60.00, 1, NULL, '', 'layui-icon-tips', 'notice', 'bell', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:47:56', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639323, 1339550467939639322, '[-1],[1339550467939639322],', '通知发布', 'notice_update', 'system', 'Y', 60.10, 1, NULL, NULL, NULL, 'noticePublish', 'cloud', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639324, 1339550467939639322, '[-1],[1339550467939639322],', '我的消息', 'notice_find', 'system', 'Y', 60.20, 1, NULL, NULL, NULL, 'noticeLook', 'sound', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639325, -1, '[-1],', '监控管理', 'monitor', 'system', 'Y', 70.00, 1, NULL, '', 'layui-icon-console', 'monitor', 'monitor', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, '2021-01-08 16:48:52', 1339550467939639299);
INSERT INTO `sys_menu` VALUES (1339550467939639326, 1339550467939639325, '[-1],[1339550467939639325],', 'SQL监控', 'monitor_druid', 'system', 'Y', 70.10, 1, NULL, NULL, NULL, 'druid', 'database', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639327, 1339550467939639325, '[-1],[1339550467939639325],', '性能监控', 'monitor_quality', 'system', 'Y', 70.20, 1, NULL, NULL, NULL, 'quality', 'fire', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639328, 1339550467939639325, '[-1],[1339550467939639325],', 'Redis监控', 'monitor_redis', 'system', 'Y', 70.30, 1, NULL, NULL, NULL, 'redis', 'lock', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639329, 1339550467939639325, '[-1],[1339550467939639325],', 'Tomcat信息', 'monitor_tomcat', 'system', 'Y', 70.40, 1, NULL, NULL, NULL, 'tomcat', 'pushpin', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639330, 1339550467939639325, '[-1],[1339550467939639325],', '服务器信息', 'monitor_server', 'system', 'Y', 70.50, 1, NULL, NULL, NULL, 'server', 'desktop', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639331, 1339550467939639325, '[-1],[1339550467939639325],', 'JVM信息', 'monitor_jvm', 'system', 'Y', 70.60, 1, NULL, NULL, NULL, 'jvm', 'rocket', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639332, 1339550467939639325, '[-1],[1339550467939639325],', '请求跟踪', 'monitor_trace', 'system', 'Y', 70.70, 1, NULL, NULL, NULL, 'trace', 'switcher', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639333, 1339550467939639325, '[-1],[1339550467939639325],', '磁盘监控', 'monitor_disk', 'system', 'Y', 70.80, 1, NULL, NULL, NULL, 'disk', 'hdd', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_menu_button
-- ----------------------------
DROP TABLE IF EXISTS `sys_menu_button`;
CREATE TABLE `sys_menu_button` (
`button_id` bigint(20) NOT NULL COMMENT '主键',
`menu_id` bigint(20) NOT NULL COMMENT '菜单id按钮需要挂在菜单下',
`button_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '按钮的名称',
`button_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '按钮的编码',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`button_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '菜单下的按钮' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_resource
-- ----------------------------
DROP TABLE IF EXISTS `sys_resource`;
CREATE TABLE `sys_resource` (
`resource_id` bigint(20) NOT NULL COMMENT '资源id',
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用编码',
`resource_code` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
`resource_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源名称',
`project_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目编码一般为spring.application.name',
`class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类名称',
`method_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '方法名称',
`modular_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块编码一般为控制器类名排除Controller',
`modular_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块名称,一般为控制器名称',
`ip_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源初始化的服务器ip地址',
`view_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否是视图类型Y-是N-否\r\n如果是视图类型url需要以 \'/view\' 开头,\r\n视图类型的接口会渲染出html界面而不是json数据\r\n视图层一般会在前后端不分离项目出现',
`url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源url',
`http_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'http请求方法',
`required_login_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要登录Y-是N-否',
`required_permission_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要鉴权Y-是N-否',
`validate_groups` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '需要进行参数校验的分组',
`param_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口参数的字段描述',
`response_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口返回结果的字段描述',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`resource_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_resource
-- ----------------------------
INSERT INTO `sys_resource` VALUES (1347530384245526530, 'guns', 'guns$dict_type$get_dict_type_page_list', '获取字典类型列表(分页)', 'guns', 'DictTypeController', 'getDictTypePageList', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/getDictTypePageList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ec419940496c4fd2ad7e58bd2760ba67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"7b1347564cdd4dec88653aa86eca220d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bdd6b7b6d4474230bc2f72a24fe73b7b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5cad39e15da74feb95dfd253533ed302\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"ab3d9a8826b14ca2848f260605f31f7f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"108902ce32b44fd7a7cb25bda1a97a86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"73ac899759e44036885de3747fdaa253\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"d9bb5761e5064fdf86b2c1a2abe18de9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"1abeb34250364a2091c202559b4a8406\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6560f1d7143347a1b0fb891926d44585\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9c96fd31723946dfb739a892538eee97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bc184cd9f7a642ca8ec282503869c172\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6a26f380796940f7986923988d6ca425\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384291663874, 'guns', 'guns$dict_type$delete_dict_type', '删除字典类型', 'guns', 'DictTypeController', 'deleteDictType', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/deleteDictType', 'POST', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3cdc08531a7b4c05ac633ee6620990e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"2b9a620d76e84d1b8da92a3e12e1afa1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5d856d361a9d4675b0db1a87b5d939d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1d4a0c8588ef487e88d39561e9e4625a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"d7ec225b010e4130ad3087efbedd7d25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"4203c101f12b4d67b8e48bee1816cfc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"24908f703c3d412c93a531d8cda63192\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d7e3fca86bbd4055bf95cc68b0a8d0be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"f26a1070ae014733ba04bb11fceb764e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b56170d92f2e48cfa17bb3a65ed40eb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a3efd132be4a4e4d86325e81f6f86f57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a82aebf656624d00ab1550b4bddc7ba7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e77398afecc544d49960f05a18c42278\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384295858178, 'guns', 'guns$dict_type$update_status', '修改字典类型状态', 'guns', 'DictTypeController', 'updateStatus', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/updateStatus', 'POST', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5ab902adc37e44839f3ff2368856452d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"10711523f9744e4c8936cf5c77f3a6a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"22eac00038fc45e19c72fd4ff071bb66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"335c3235fcf5466cba8368e937d3ec63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"068fcdb5342840a0bc5677e9788037ef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"0c51b121c72d42f89120bacb1750ebc2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c5ec592938fd43aea2de4a6b94cf69c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"705bc4b6d3b84457bae98b2f2ba8f7e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"542e6f15d3cd40069a3521e04581e395\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"93a43d6f331146aeb8947246172cb351\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"eb530beb6a624ce9964ceed26ee4c1c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"94a4320c68f0432d8b813c3caf50f265\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2d96aebf2b9147d0b73755a3f6d33daf\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384304246785, 'guns', 'guns$dict_type$validate_code_available', 'code校验', 'guns', 'DictTypeController', 'validateCodeAvailable', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/validateCodeAvailable', 'GET', 'Y', 'N', 'Set[\"validateCode\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3c1e623378744cd19610667c16deafaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2e3e5d19f2ed4e3b90492ac11e21a25e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b858aa6d60b841bdb7b6251d246ecb76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"7cd4873935294d20981932a116a98db6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"424d8f8546b1429a84f76a925c1e7e9e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"8e4a0a38eecc41eaa99e23b747d9294f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f2127a4a584743e288f99bd614ba6368\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"510dbbd431dc42d8a56ba77e4d3642ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"06dcdfca24c94d2597f68a6cef663572\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d5c4c55b44454119925fcd38bbc7be96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"67ce890088964f5da9b2c30a6fdfbbd8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bda5883fa9dd41168eebb8c0551c132e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"dcf884f1ab4f41ac86e751bc8fc1d807\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384308441089, 'guns', 'guns$dict_type$get_dict_type_list', '获取字典类型列表', 'guns', 'DictTypeController', 'getDictTypeList', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/getDictTypeList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"290c13b8cec94f48bd8b9f34315d306b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"20fb89d3fa374b7c840fd32812f84b50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"eae15122e1f745f1ada2d7e97eb7710b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"065647e4da354afcb01edea09a794025\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"18e0c052eb86488b9fc8202a0cdee826\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"b2631aead3914281be67d9d63585cecf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"2fbe41f80a1c43619ac368ea1761693a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"edc3c0801dae42bea81ed5e569c5f64a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"aaec4c060c5b4304b6014bd8f181b9eb\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b492c8ca344d40eeb57bf8afa94ca1f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3b280746b7bd46a89a5ce5e78720c431\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f02cbe3f04da47029750240da3e367df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f50373d38b0a436db076432827d0cd99\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384316829698, 'guns', 'guns$dict_type$update_dict_type', '修改字典类型', 'guns', 'DictTypeController', 'updateDictType', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/updateDictType', 'POST', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"bba8ba32f3a742bdb24d46a00eb0c3e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"b969aa4d93354b088e22fd3c270fec60\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"002de578f5bf4525b663ec4d8f68fcce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"07edb739a4b24a05ad820f7292ee46ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"c581426537bd4539a8e530dcaf7ff771\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"8e9818e424d244d9b08b6c3bcaa30575\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"fef60795845c4a6387128d99a2ed0b48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1289ba30a08d45b5b6d5988e0cf68d00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"65db24e7051d476fb16e525164449aac\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"511c4f332a86463ba988521ae9da5331\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"25ef467e3bd94c4ea505edf37eed5ea9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"35ac43c1a48140848862aa3981ff8314\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a7823d067c4542fca65cc1374e503d9b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384325218305, 'guns', 'guns$dict_type$add_dict_type', '添加字典类型', 'guns', 'DictTypeController', 'addDictType', 'DictType', '字典类型管理', '192.168.11.1', 'N', '/dictType/addDictType', 'POST', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a9de90e722ed47b19f087c32febb03ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"7c3bb9892ffd4475b0aa076114b1b5b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"fc444ca6c6e441e5adad7f5186e7aee1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"12b4b863dd1640c4926d60a400396a03\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"b8305e7aa58f46379ee20ab3b3eb0424\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5922d0310c3a47ff83b711d4c855e1e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"021c52c3d5824bea9a72ea756c1896dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"cbe7054b604e49d78cceeb25a1d64e0c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"e2af818b764e44ddbf3b68a896a76e8b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"47615e5b28844339b83660d56e85c7de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7599bee62ef04f7c9bd25af040b87edb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"434fb977466e47dab6a0e8c0ccdccb4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8b8d85f6477c4655b5507d7e5d8e7db8\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384325218306, 'guns', 'guns$hr_organization$update_status', '修改组织机构状态', 'guns', 'HrOrganizationController', 'updateStatus', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"d04e961299854f0a9f2d0a9cb045c8a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2ab3618d40c6444ab43a55bb91e428e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"1ca9e5e2ad054b09b7380e9e72e3c488\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"305df01a37e64ca1b395d826c04eb7a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d08ac78784f047aaa469777e1f4c7d10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"70e0bf315c9c437ebba627a72a60ae04\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"b9fcc09bc30648eeb7315e26ef89aab7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d3d1b929d4d34841906faf74eece52d2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fef63c00a1ff471abed64ffea2d26fac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"df8842cf0af0484c9625817e094d64e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"edc26cfc82d74edd8dd2a31886426c50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3269acb254af47d1abccb84f1169e354\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384333606914, 'guns', 'guns$hr_organization$edit', '编辑系统组织机构', 'guns', 'HrOrganizationController', 'edit', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"85496e726541451cbe2f1280e23e6c67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"2bdab40cca7f4e82aa26e2882535f396\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5994118048ca49e782308e724d320a07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"780c89716aad4138b779c0e8851e7b65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"1b44aa1509d64ebfbb768455c79dfe10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ceb590e9914340fbb8d16f57dfb120c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1b115fd1210c4e2587861225913ab54a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"b43879b598ee413197206bd7dc22e95f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3a97a982c9bf45f9aea1266f19980dd6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a192b4e7ccbc40c798a9b39b3c1139f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e1f90050f8fa4387b456888b507d5294\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b0485fa1e66749c1a65809136bbcac1c\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384337801217, 'guns', 'guns$hr_organization$list', '获取全部系统组织机构', 'guns', 'HrOrganizationController', 'list', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2074e96495c249e3ae519830d7881234\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"221371ef53114e83bae705f98a55ffce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"36f6061070434b43856a0f8d3117625a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a164a34cb95e43728b58d1b6174498a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d43c0a8c8b004ca4809deefe05e649ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"130f1ae49628429ea499e9f77dad96ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"28f119b3f1034cfbb987ff7754d1b9fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"798b2eedf96d46eab7db201bdc11a72d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"07e8ef654f624e5f9c54824d8050894e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3d5c7219befe457c8d48b47a32085d11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6c1920a4d534457cb6ad77468f71791e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6615b4feed1647469d793906399909d6\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384341995521, 'guns', 'guns$hr_organization$detail', '查看详情系统组织机构', 'guns', 'HrOrganizationController', 'detail', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"eaf1bef225e54813900024ed0180fafb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7902ae05837840b09476e787465b16e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a5a914e700694250a2dd2ef9ac1f41a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3992c54c6019460493e3b68d0f53d06e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"89286963485940a29e6babd3804f6ebf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6daa7f014ad84d7cb0f845ee4efc9405\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"8538569eae3744da86638262bb0d79ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"2a9bcf7a9f1248a18bfdf1f70da5c91e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"affada96ad9340a4b8693e4ba519884a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7422c3412c744f0bb81c92352ed0078e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"36ac4979df634ee982819cf1e74ed642\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"12c3d9304bea40faba60a58477fd2532\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384346189825, 'guns', 'guns$hr_organization$page', '分页查询系统组织机构', 'guns', 'HrOrganizationController', 'page', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fc9fbfe246fe43eb979aa1dd771b09a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a3f348eaac72426aac48014952bc9a09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"744b98e9ffda407bb09a5a659fa73e02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e497a57fb7aa452aaa554958255f68f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1afaa06370fd4792939fe95ec940be24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"08565af054f4401d8980a40e177a3954\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c14f48170d0f450ebd804b58dd19e392\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"cc3076bc64ff48219a83c1754c72c6b0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"688b3d130a7a4cf696238895cd7aaee3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8d66d57b610e40beb3d4e7132ee9268b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5321a0b2506f4e47acf8ba621a7f469e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"322de4ed35d3463a8191203bc909a7cf\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384350384130, 'guns', 'guns$hr_organization$tree', '获取全部系统组织机构树', 'guns', 'HrOrganizationController', 'tree', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/tree', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"03c5abbf90274d24b9fc6aed3c35f9ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"48eb50edd3ee467d90d54da1d0e1a82d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d4c35b7c111f4e69b798570728c01b07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9a5f85ef70d249c292d40b53827a7171\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8bef8e7dc0f64baaa7274886b5bbf757\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e62f769edea4433ea4e1a58d1ab113e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"06bead98d89b46969a3bdfa3351e3523\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"261ab749f0b1442e8c98fd29536002fa\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"81b34b1557384f8f9fbf194f70022eac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e75f5de326314edc8fdc4c66e01fb7cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8fa5cbaa7686471eb957bdb2d9a0acb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"05b277f2601147e09c4fc771fba0782d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384350384131, 'guns', 'guns$hr_organization$tree_layui', '获取全部系统组织机构树', 'guns', 'HrOrganizationController', 'treeLayui', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/treeLayui', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1f2274d32fd94f16a7bd6ec6d711d843\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"323e5975cdff4b318b74ef4089053935\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"81e3fe1d437c43369be87307a1c23597\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"29724564e7c54deabc102258a668a379\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5fe7f18f5f414c19aece83eb800dc748\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"db05c57880d2496fac3523aedc9e39b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c4296ddb9ebc4c63853e5a8ae2e6659b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2253d62edc584ff2bac7a8eadd00b0df\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"571bbe9701f1422b9fd21a0f75242b20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"caf1916bde11458da8f991849027d6ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0ced49a176cb4c6c8557c2ec46427904\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"58a2372c431b471fb5fbd22d9ab67047\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384354578434, 'guns', 'guns$hr_organization$add', '添加系统组织机构', 'guns', 'HrOrganizationController', 'add', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"5b14294c3c114dc7bde36422861a6f28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5edc67a070b5449a98e84dfaaf2efff4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f5240cba26814a968aaea2fea7bb7b49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"e57a7a510f5b4147a9f883b9fb632ca0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5e4147c4277845f0afe44d085c76fad7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"fd50a9ec4af6487d821533aba7a5cb90\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"30ecad50f4bb48579dc9a9baad38e212\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"78c3b2c788a44f06a19655e2224c1190\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"72b1224b16ae4f7b9269abde96a5a657\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0aedab3e9e7241378ed0bf072f4b0196\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5e4ff28dcb654e67a37d7163a6c6fca2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9a3f24536cf54733866b45e9705753f2\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384358772737, 'guns', 'guns$hr_organization$delete', '删除系统组织机构', 'guns', 'HrOrganizationController', 'delete', 'HrOrganization', '系统组织机构管理', '192.168.11.1', 'N', '/hrOrganization/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2b25fd7e341549cdaa355acbf1dc63e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"af7d160764844158b52e8775e2d05b76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0760f4c184ac4e9e86f9cd7a4c5b0200\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"7599bb006c5a4d82930eeea377fdde11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"288e97a76d194b57837346f564a5b991\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"72be01b5e12e4248b46c74ac6a2bcdf8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4ce00fff06ef4952af08a5c13df69a9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9101a8dca6024cf8b4cd0f8101f1f3b8\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"560e609865494dc6b1916c08b6fe1001\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3914563ce05e4fca93e32dca9414afaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"622f04e3dfc54684bf2ccbe123c180aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"286e4e636aa64edf9811ee00cdd7942f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384358772738, 'guns', 'guns$menu_view$menu_add', '新增菜单界面', 'guns', 'MenuViewController', 'menuAdd', 'MenuView', '菜单管理界面', '192.168.11.1', 'N', '/view/menu/add', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"54d45c150d594c259538e2e4cb599c43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"04940559e8d34fcfaeee5450633543a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"14c13801f5b04dcfa6b28df1bdc800ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3886236c393f44b684c5304f50fa8513\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"d02021cd3b164a43a127a3c7935d8115\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384367161345, 'guns', 'guns$menu_view$menu_edit', '修改菜单界面', 'guns', 'MenuViewController', 'menuEdit', 'MenuView', '菜单管理界面', '192.168.11.1', 'N', '/view/menu/edit', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"33eff2e9cac44772ae521b6de1eac29d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"f7cb8795608b44caa53bb5c770421146\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"37a1b55d213a4b898bb9a496fe83fc5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"17e7aeb638f64bac902f52fa2a01ca2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"c158eb4b63ca4809979b8b03d533ce08\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384367161346, 'guns', 'guns$menu_view$menu_index', '菜单管理首页', 'guns', 'MenuViewController', 'menuIndex', 'MenuView', '菜单管理界面', '192.168.11.1', 'N', '/view/menu', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"70e64d44482c484cad81275884d8738b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"89b3a77e8f5a4117af16cc4b3c809ad1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"a1cbf2bda3eb462db1283ec937b371b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a339ba44f27e47ba863782b9b43017f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"43b821fa16c94c00b4b3f26cd866a667\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384367161347, 'guns', 'guns$resource$page_list', '获取资源列表', 'guns', 'ResourceController', 'pageList', 'Resource', '资源管理', '192.168.11.1', 'N', '/resource/pageList', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"93fde4bd904745e9b4f0cd7b1854d3fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"f922d57052894c5f846fc60c660159e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"bd809e65238c432481e022d1bc50c697\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"8deb518325fc40a2a7fa56ff3cd3e567\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"0d27d5bec3af4938934d0e3a868ce5cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"fa148e64af224edcab84fda6e971ad88\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f38ff63dba5949c095b08a050e6774f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9169ae5a1e35418a9d2082b516c3cd3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d8ffee9884654f71983b1abc9aa0c5c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"861f892f2a1c48ad93803d4dada5f263\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384371355649, 'guns', 'guns$resource$get_menu_resource_list', '获取资源下拉列表', 'guns', 'ResourceController', 'getMenuResourceList', 'Resource', '资源管理', '192.168.11.1', 'N', '/resource/getMenuResourceList', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"6c3ac541d2754af58449b22d3cec70dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"8b4152c3ac0746c68793b3a915c64b36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"3f9040018d4b4a039a75721b3826f0fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"486566a98e434adc83000b2117e4823f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"b3c2940af92041cbac1f5702878bc6f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"8ea82762a9df41c6ac068a589d053328\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a2629a38cb3846e7927544aacd27f31b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3a7b56abae8f4b96947e7db68c1ef315\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"db4404162edc4e11b5cdc1ba174160a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9efbd03bc6604e38affbd86b08f6ed71\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384371355650, 'guns', 'guns$resource$get_tree', '获取资源树列表,用于接口文档页面', 'guns', 'ResourceController', 'getTree', 'Resource', '资源管理', '192.168.11.1', 'N', '/resource/getTree', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"43b3947988814b1f8a1985f83536da03\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f0c167a2a7834d5fa52b18912f2606fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a7d5b9cd2f5f4271b6d9d096995c7413\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b120a738ef0647179f61c163d7267896\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384371355651, 'guns', 'guns$resource$get_resource_detail', '获取接口详情', 'guns', 'ResourceController', 'getResourceDetail', 'Resource', '资源管理', '192.168.11.1', 'N', '/resource/getDetail', 'GET', 'N', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"aa15adb0f6134b7b8bec2ad441e877da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"657ea6824bd24657a90ec2f1e9216491\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"3643671a7696487c8cd7dde0db8ccb62\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"034ee748d77b4d0f93d708c82b5d5540\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"fbc6f6ffd4a645e4b66967205c925bda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"0648f90079a141589b2c2439f9110b45\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"91b4f3aa3f844082903c7947c24217b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3ce2c93a0b7e44578d216881b86f5b46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a4c49aafc94d4fd2b7723893e4aa4f92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5168e3d71ebb4adc957252af2ceb00bb\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384375549953, 'guns', 'guns$dashboard_view$platform', '工作台', 'guns', 'DashboardViewController', 'platform', 'DashboardView', '工作台和分析页面', '192.168.11.1', 'N', '/view/dashboard/workplace', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"40d643e044d44cb2a1c1f25a4cc3439d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"175b96fb294c4b3b91920ca280379236\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"23842e1986bb44c894b50bf3bde173a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"9998e5566faa45ecbd5dda4523c299d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"5a6189319a43436891d122a06d18a6cf\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384375549954, 'guns', 'guns$dashboard_view$analyse', '分析页面', 'guns', 'DashboardViewController', 'analyse', 'DashboardView', '工作台和分析页面', '192.168.11.1', 'N', '/view/dashboard/analysis', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"ebe2fbe9be79498ba790a314aa2e3ae2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"13a196f707964693b8c2a076daaad9c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"409d881f4dab48e58f281f58a35c3094\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"1020df8699944dc4add5ec0c8d7c3c6d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"8202cafbd66c43e4b65fac6a83f11aaa\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384375549955, 'guns', 'guns$role_view$role_index', '应用管理首页', 'guns', 'RoleViewController', 'roleIndex', 'RoleView', '角色管理界面', '192.168.11.1', 'N', '/view/role', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"4659c96f8dd44c09a022ec11dd3d7a8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"cabb7d1acb7441f582437b7761425e48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"262cf643a2aa44829cbe9bf9edfdc669\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"ffd509bba6ba4fae9ba8b66bbe6c5e3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b2cd848337ea4ac591606ec7df528870\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384379744257, 'guns', 'guns$role_view$role_edit', '编辑角色界面', 'guns', 'RoleViewController', 'roleEdit', 'RoleView', '角色管理界面', '192.168.11.1', 'N', '/view/role/edit', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"0f293c2bcf804dcb9519ea2c2f7a9e53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"67c899b1b9b748aba08257483587a016\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c18723b16feb4b7ba202532f676cce2a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"51afe6fd5575407da39f0f45b22b014c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"0858720f3ebb4e929c550e7756857611\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384379744258, 'guns', 'guns$role_view$role_add', '新增角色界面', 'guns', 'RoleViewController', 'roleAdd', 'RoleView', '角色管理界面', '192.168.11.1', 'N', '/view/role/add', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"be57ddeefcb14fb1a821985b9d72fcb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ed1e5a4b9f914ae5961c2814ddd2556c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"408466aad31f43df9b6669d83d0e1f89\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"ebf27a04fa8146d8a404943e754f906a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"30e1845f2bdf473991d6c399be5d736d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384379744259, 'guns', 'guns$log_manager$delete', '删除日志', 'guns', 'LogManagerController', 'delete', 'LogManager', '日志管理控制器', '192.168.11.1', 'N', '/logManager/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"ab8c0305615d4184a119461d3b663540\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"76a18940cff3413589b35792edf93fa8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"84ee096b82c1476fb8dbcc6577a93301\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"0b1bd53afcf5461489ae707a203ed899\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"42ec8745347d41f69d52dcfbbf0633c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"3b619aec46774d4ea3be9c517cc44855\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"068fe0292a7744ba96b09a84b026366e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"c7271055a970465f92f72330225bdd00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"05d6944c3cd3406cb277b90ad7878a3d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"cbb12a850ab54047aa6572e86c3160ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"29b2f9959e684e6e868ec91916e4ca6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"760a29ee645f4a3c8aa449675b6ab88b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fdf0d39bb1094883b47d4a60263ea146\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384379744260, 'guns', 'guns$log_manager$list', '查询日志列表', 'guns', 'LogManagerController', 'list', 'LogManager', '日志管理控制器', '192.168.11.1', 'N', '/logManager/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"99ce1f2a17314d03af9014f8802fe5f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"37f50cf96aa343b99f52171e056b771f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"7e692359ad794eb5a88400c71a662f3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"6bf2b6ee908e44899afc54ec0b803602\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"b99bbc2c07034bacb60bde09c803add2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"5f984238b63f4b78aadee6eb9a0fdb2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"66ee091d51854a65bb1b942a6deefa91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"8a606f9f63974b608a3c94eb09dd9b76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"7b41f8dff63a4d3aa4993384482db3e1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e387e8481658440b923c7b3c03f74da9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fae4de9b62564b27887aa008fee0e699\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0242934bea0041b089f49622671951b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d72833c4702e479da1551dc634dadd24\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384379744261, 'guns', 'guns$sys_app$detail', '查看系统应用', 'guns', 'SysAppController', 'detail', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e2eb35da753a4e4499aea8f38aa168f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9288b3b004c24d5aba9e8bccce049956\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"beac8d10808d4fddad73da8f59724c30\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b38a8a1725e54587873c3bc6f80038cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"413bf19832514c21bbf045c97962d453\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"791f6cf1c1c54972a3042e2aa3c037e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"27e6bc2eec124802902f00ac09ffb3c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ced598b0618d4079a9c6388533dec435\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0420e515fa45485c98ad22bababb8821\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384388132866, 'guns', 'guns$sys_app$delete', '删除系统应用', 'guns', 'SysAppController', 'delete', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"12fe5497320342ebbd5751b36a1237ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b38d5f6ac6e644f996e5157e67f114ef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1dc0429a542b4ef7a6cc9ec659738511\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e12e0e14450449b8bc4b1c375c25aac3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"1ff400af12c14c57a328cdbf0e24193e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8174fcdb2ecd47cdab41c3c675425a98\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3ebccb17c01a40a28b52ce1fad44ee86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"db157778bd55436e9d726eb3ff9670b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"14f744292016438caaa5e48b3dde606a\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384388132867, 'guns', 'guns$sys_app$set_as_default', '设为默认应用', 'guns', 'SysAppController', 'setAsDefault', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/updateActiveFlag', 'POST', 'Y', 'Y', 'Set[\"updateActiveFlag\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3eb78e0227434b80b20543981109d9f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b98251fb547a4dd29f5809d7caababa4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"cfb8e77abb3c40febccc866a541b9156\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e3a031d5554f4397b1265a7c1556c180\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"34adfed4a8f746e79afb93d931a5b428\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e329a5e53eed4cd5b1c733dc705813a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"699b6a7104dc4921b25400505b77625a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9baced8069744ad5a743977ae48f1609\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d83991ab55a6402e8b051df6d03cfb92\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384392327170, 'guns', 'guns$sys_app$edit', '编辑系统应用', 'guns', 'SysAppController', 'edit', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d7165048783140fc869165e70a5cf64b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6df2330c24b044c0b17b256de4362dfd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c8644545423f440c8787d6c7daf7c581\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"84265d4c7b364e2da8ebc44e757e3cf7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a98e93faf8034916a1c8eda42e451c26\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e06654dcb7b94cc48c5a05c2e1852d46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"17a3f60e67584930bd37ff80db5d8e4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"97f7b11e283841b7a6307a976b1bc384\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a8957f5ddde44d408ec3a0ed294065f7\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384392327171, 'guns', 'guns$sys_app$add', '添加系统应用', 'guns', 'SysAppController', 'add', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9983a727ff2e4e1985c7417c0d413b36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"1bbb904b725a4dbaad9528bcffdeca64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8feb7ee3eb2847d0bf8640e0bd32ba12\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"53743a38b4c047dfa07484e86dca0de3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"670f20a6121b44d984c23b8d5c3def4b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"98405b345ba449098aeca727561f25d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a9addcbe09de4384987b0d9543907af0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0a02ff92c8994558a664b33a6a986d21\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8ffd8d08faac47d398a3214737835c3f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384392327172, 'guns', 'guns$sys_app$page', '查询系统应用', 'guns', 'SysAppController', 'page', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4a776b1c14cc408a957407623f4a9e24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c596b9584cbc48a2910e5eef65ba5201\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"9dfdf3e9ad5b46288492f663f79c3701\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b80e1ff076db442eb1f3077642136b27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8b4fdff230124b63ace85c62ba9acaa3\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"92aaed71cd4c44da945d21d60fa1c75b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c647d0eead264059993bed641578634f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f00a5c37fd59484c9b74aafb08cbe9f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0551a836c43744399092ca4c9f1dc320\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384396521473, 'guns', 'guns$sys_app$update_status', '修改应用状态', 'guns', 'SysAppController', 'updateStatus', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7984828279bb49c3bb3806279e7c1c73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3ff56b53248f4f249accf28526c2c33d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"181c83553bb045d981bd14b09ceacb95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"36dce33971824b43b9842ee81d06680a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"10e6d6e0c9844fcfaebbf8697af9514a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1094823591e94b6bb8b793766f7ecce8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6b9e7517542e467298ff946fea81dceb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"fa2d7fab8fba4d199509ad218506f530\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1fcf5a4eeb5941fa8b726a54d9fd2f5f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384396521474, 'guns', 'guns$sys_app$list', '系统应用列表', 'guns', 'SysAppController', 'list', 'SysApp', '系统应用', '192.168.11.1', 'N', '/sysApp/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"765f6e9827af4c0f9b78c29e68f0505e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2e21f41cbed04831bf3997dc232d9bbb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8cc7db50095a4159ac1a778980d86a00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"bdea278cd4864a14a4448e83fef771a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"18433e8ef6014dd6b407fe5a0f4bfe7a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7fda8d7851784d70bd7f7348d0c40903\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6b71063826704d369baa08769c9f136c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f16bfabdb4214b13888cc558a65688c5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"87badbf621d6460fb6f31f804b324e90\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384396521475, 'guns', 'guns$sys_file_info$private_preview', '私有文件预览', 'guns', 'SysFileInfoController', 'privatePreview', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/private/preview', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"cbe39c4608a94ac4bca10e40d192ea02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"7ed95d6f717c4fa288514581280cd6ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"c052cb5602db4e70b75871e11ece6153\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3abefa5fb2314f9b95fab0bdfb5a1d2f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"da8abbdb4e9c44bd8c60796f8f43ff25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"f009d98a643446b9a7186bc139594d23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0129c83700b84eadb7b4d39f308d9682\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"c40527ba8def4f7f84c95db2a536ffcb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"055f5b1019cc495bae2792a8beb63ba7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"451e4fb811eb42bd978dfe6f86ae9b5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"a141288cc31a4591ab6bbb058b915346\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384396521476, 'guns', 'guns$sys_file_info$public_preview', '公有文件预览', 'guns', 'SysFileInfoController', 'publicPreview', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/public/preview', 'GET', 'N', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"30c5a2c215884b0a86b03fd4e8d31103\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"8e288c3ccb914a2a8f849293aea58e0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"2e570bb414f34a2099f8b9bd136dfa4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"4e028687c888422689ebe68a8831e8f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"69172979d0cb4604ac99e1fe8417eda6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"9689e29b342442eabf9214ec7ca5925c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b198fe15adbc471991f765e6b9771d6d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"5d46f86f13f846308b74a28eaf56694d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"dcd01bb5dd044b7c9977a5be1c223401\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"78a4b568d9f44eb39a283689e8d941d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"aa7510ace3d048bc8c380a416cb221e7\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384404910081, 'guns', 'guns$sys_file_info$public_packaging_download', '公有打包下载文件', 'guns', 'SysFileInfoController', 'publicPackagingDownload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/publicPackagingDownload', 'GET', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"5498ab8b24b54da2a680c5d9c4373b7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"09062084148649d0b25d668caab90353\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"b4b903bbe6ca443ab9309e51b115724e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"223715b83cfb49c39b527d98b98f5be0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"874a7883b25d44ee9df3c18a766b81ea\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384404910082, 'guns', 'guns$sys_file_info$private_packaging_download', '私有打包下载文件', 'guns', 'SysFileInfoController', 'privatePackagingDownload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/privatePackagingDownload', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"29da7ad7a55145a3a18219dc78aa5119\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"ef58e022e0ff4a298942b6ea0100b937\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"b85e6097962f4dac92c54400d2868c6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"d73a7fae954d4464b4c51288f0eed280\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"82b71cb136e0411fb2d6060133ee5cba\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384404910083, 'guns', 'guns$sys_file_info$version_back', '替换文件', 'guns', 'SysFileInfoController', 'versionBack', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/versionBack', 'POST', 'Y', 'Y', 'Set[\"versionBack\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cf7f372802e9419284e709cc385436e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"1540271bacd14c17b0874c7ef4b3535e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"b22238679f9745d091ba14f3433481aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"960f52c5c1124ccdab85793074db8d02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"aa9a1e6bb3e94a6fbdb40618f84d73be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"f4985de9bf514c6582a117bcabc0034b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"daab992d02164d7a9b6bdc650d034135\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"5a36b2fc03e24697a80b956042f5b3df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"5a5160a4be8e45c39f8ff7fa69456b38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"08562aa874a24295bbf9f9104df3a898\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"e6e3d4eb193b430f85d185a80a0906ea\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a3adbfd0b60c4108af2cf442aed77c44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"af8ec47e4b0a46118b920be868be23b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d6d2833330cf4eb8b5e6ad0ea3e6a58a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5baed6eb3454477b93fc729479147a35\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384409104386, 'guns', 'guns$sys_file_info$file_info_list_page', '分页查询文件信息表', 'guns', 'SysFileInfoController', 'fileInfoListPage', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/fileInfoListPage', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"32d83529f0c344e0a0d04fdd0d14e924\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"2f6214440fcd47a2814b6bf85d21a5d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"dd2e99a44cf14c19a8ec28b0d34fdfbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"f93c5271f11144e1880543d3f7541eb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4935e28322514254a070ea70868ebae4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"f3addec2ea1d4f43b7c32d6292db282e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"8562a5306eb242e1974b238cc6c2304f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"d8e01605b29447018eb1877da03f14f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"572ad4719fea4dc483d6ffae0d2c90d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"8984b7acbed3433cabd576f861daea09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4bab18f503da4c35801ce06686594ade\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"aebe973e21824c18a3c661563ff46fe2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b18056e6dbfb48f1bcfa0306ad4a4e67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ed810652f9b3467a8f4a6e6db06bb679\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"aa73d0b9954847eabaaee99cc1b9bd27\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384409104387, 'guns', 'guns$sys_file_info$preview_by_bucket_name_object_name', '文件预览通过bucketName和objectName', 'guns', 'SysFileInfoController', 'previewByBucketNameObjectName', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/previewByObjectName', 'GET', 'Y', 'N', 'Set[\"previewByObjectName\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"5adeeab835d34a13bb1efc47db47ec9d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"11998d7d892b47d3bf2ce000e86a74de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"98ac8a563bb34b3091c94748a2fd4c2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"6fcd9c72d57a469faea668d37a264650\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"437295853702468d84ccf65f201c072d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"74e9502cf93c42cf86d3401d010a7a63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ec48f63e404641ac80b8eb2bbf1e7b69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b0bf241c028c461db849d0830c50b6e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"26ab2f6129b141c2993702d53304a8db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"2093eee1dd1940289ccaada3159bafee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"5a91f9a131924e078ac3945d123a11b3\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384413298689, 'guns', 'guns$sys_file_info$confirm_replace_file', '确认替换附件', 'guns', 'SysFileInfoController', 'confirmReplaceFile', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/confirmReplaceFile', 'POST', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"815303a58763483790a84790eca7a8d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3745e32b7b6d44529a955dffdee8013e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2003daf92618407aa75dc7255abef00a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3d10c1f43db54adf9501a791509596be\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384413298690, 'guns', 'guns$sys_file_info$get_file_info_list_by_file_ids', '根据附件IDS查询附件信息', 'guns', 'SysFileInfoController', 'getFileInfoListByFileIds', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/getFileInfoListByFileIds', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"28c412b4765f48bab7b4ed0e5f34fce0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"301330b4f73e48a5bd39ecfb9456f75a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e96eb16582dc4a08919676fe1fa3ef9d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"8f4909cbd37a43a99b694ee1fdce2d80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"ea6cdbb421154418bbb1d6577905545e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fa130020b86f459b9da12083616d7826\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"026576a8c90948e89ec4378f1fd3cc05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"48f6c75bd9fd459282b99df4a4390319\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3ef984655368473dbc71c27689d9c665\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384413298691, 'guns', 'guns$sys_file_info$detail', '查看详情文件信息表', 'guns', 'SysFileInfoController', 'detail', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"7fc031afa3714a6ca89ceae483909d06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"1548caf53f3344f1add878311eebd815\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"88b0ccd4c3664dfa9280f25d869273c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"304e76b25d0a4afa977c3c0e98d94f68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"bcd4b83ed6e344d79398f644120ac9a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"93ca9b7aeaf6421d8a7f722ffb884b12\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"a4a7e3c8de1e4813845dea485683235a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6b54d38cf5fa4fbba38d98a9b8cb520a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"2af5de4239694cca9d5d8f5e5d7f6f3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"3bf8d25c6cef4dc4aa34666b7ffa8e4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8cff57efc6ac468fae34fa172fdbeb84\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d1e48a446524437c937343243b143dec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2d5e7e94656f4223a33c8f1db0c252fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2d5e43b6dd17456187fc35e7bd988395\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"42108f189d0a4c5c9474504b59a7ebe5\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384413298692, 'guns', 'guns$sys_file_info$update', '替换文件', 'guns', 'SysFileInfoController', 'update', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/update', 'POST', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f2e6b90eafef4bfcaf5e1594bcba154b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"266eda10ca0a4affa3158696f1b8767e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"87acec6ab1054492b2b5449e8f24247a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8ac867e575894b7e81fb325514e2aaa8\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384413298693, 'guns', 'guns$sys_file_info$private_download', '私有文件下载', 'guns', 'SysFileInfoController', 'privateDownload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/privateDownload', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"c76e0023e0454995beef07faae919064\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"c117e9476c034f6996fd0388990e2946\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"421057f995d24688b8a3257a6aea8a78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"9fd479c201a3453594fab2a1291ed085\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ea946ee6580d471987a85c97667e7038\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"05acca4e93f4480aadf00628ff7da762\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"086df32ecd5c4580aee37c11e69c57c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"96c4389be3ca4c18b6778fbff472b022\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"3a9a299ae12943e8adddbf9e1ebecfce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"6f6233dc24784029b3ca5114974900eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"886eaf7334f64e36bf3fad54206bb355\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384421687298, 'guns', 'guns$sys_file_info$upload', '上传文件', 'guns', 'SysFileInfoController', 'upload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/upload', 'POST', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4cf63edd353d43cea86f5ecfdea35e69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5b1359a9383b410a9448096dc07f217f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"098ef67b96e84848acacd497af35cccd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"fd5c16e4c30c4b62a61f296425210a65\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384421687299, 'guns', 'guns$sys_file_info$public_download', '公有文件下载', 'guns', 'SysFileInfoController', 'publicDownload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/publicDownload', 'GET', 'N', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"5013a55a2e184773b9ec41e1b5f66925\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"adf2e4afbc2147aaa27ee11ec9872aaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"63272674987c4d829a2387014ec81797\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"0d943fb272ad445ba4325da85186b80b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"c2e1132b280340cbbc05609f8e688270\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9ec9da66d2f64cd9b9c8256aa2687c25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"f8e50133189b46188be88fb228e48c72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"ba43ee7de25747a3a11dbfbfad8bf131\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"f238814c292045b087a839da5a161220\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1428b4af883f49d0b7eb12738b3b7f70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"9e98f1d681cd491fb15682cf8c10191d\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384425881601, 'guns', 'guns$sys_file_info$delete_really', '删除文件信息(真删除文件信息)', 'guns', 'SysFileInfoController', 'deleteReally', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', 'N', '/sysFileInfo/deleteReally', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"7f2d56cc579e4415891b8843b7faa479\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"9edca25f0d0f4788bfe452c880b31a4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cfb82252d6924f0198e803881f01b35a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"3fdac479a76a4a558798d0d9f0f8edd2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cce89b92603e4ed2a357ebdea5a34126\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"1ef72cd8e93d4e1fbc91e3366f41f701\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"ff78b5b294214525989ca37111f4bf41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"54d4c1ca4a2d4d3eba6201fe9d32a480\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"b108831846044c13bfc8bd7803f061db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"efb61926db934b8d87fad8b03b19eb38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"e0306e379d8243c89e3040b5a7cae1a0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b19e28a6b6fb4ac28c50cf88ace8d94a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"84f68347a8794484a9d130730dfb08a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"12245b0167d445b59b2524d3e51cd7b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ba2e329a1fef46c99b211f9336a7f79c\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384425881602, 'guns', 'guns$hr_position$detail', '查看详情系统职位', 'guns', 'HrPositionController', 'detail', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"73827be27b614a8b88e1793f0d1006ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4d1fcb7b200f4477bf157b5e1277a416\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b8620d2f99214aa6984f3eb5e6836571\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"12271e20fe744a888822b92fa8c95c8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"67a2c319c9f8470e8e291f56c98ab777\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"6c4170e5b425476297e1df77d278e7cf\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"bd771a56b533463cb4623f31fb96b208\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e922f69fdd4e44008c08d457021b6e9c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"80cecdb633934939b09af1b2946532f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fb8342824e1c4f068987d9444406a023\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384425881603, 'guns', 'guns$hr_position$page', '分页查询系统职位', 'guns', 'HrPositionController', 'page', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"8b72f77a12eb40eda67a95276fcc8d7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"95564d7b48ce4ab8b2aff023675bb7cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4b09563d0c44474292f8d3cc1d743cf3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cac073f0e1cc452face9b3c1664b03c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"33c93866f02240b8afc50015c4fc33b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ffea172e764442a4893764dd427b1832\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4a5dba74451b4c94b90da035a6aed9ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"44358190fd6742eeaaa680c32fff24f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3a751ac51bad482a8fe5a00805f2c34c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"95ea9b7eff5f441c98fa6969f8c56064\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384425881604, 'guns', 'guns$hr_position$update_status', '更新职位状态', 'guns', 'HrPositionController', 'updateStatus', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"e47a245833d2493380cfd384a553e8f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9c89239f8301452f90cebf3955d25108\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f8e0978a3fc047b7a3f51424fc9af9a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"ddab02c23e264636ac46de31c89204c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"f2e3de4da6f5459f86e408a572a94f83\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d8973fa930d94a83b29f1f64709f6d3e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c77e191193964dc28973d1ae848018ef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a612e060ce5d4cb5a055905b6cf5a2ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"70bcbe7540d8434c9bef96db339a76fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"529a5be7f5b5490390a5be7db07b18ae\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384434270210, 'guns', 'guns$hr_position$delete', '删除系统职位', 'guns', 'HrPositionController', 'delete', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c17f655861c04a2baa9239f5c4fe8b9e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"95019ddb00534680ae20fb6c1aa8fa6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e39cf98b111c41cfbac60883e662fe49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"89f0d52258f54c5fab65564bc28a6de2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8f8c6a57db114315827cc062f80c8aa8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8be36ca110d74dffa9284cd7eecf0478\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"078af8fba758454089e35737f4f0c09c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f6fceb54d0c44ebea5d2e76e5466a9da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d9c96a05ad7a4cdfacaa39295a1e4cb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0b967cc005134f29b96b1b930708d06a\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384434270211, 'guns', 'guns$hr_position$list', '获取全部系统职位', 'guns', 'HrPositionController', 'list', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"5ce043ea55a4490a831cd7492266203d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"30ecd305c4c845dc94708e9b06bd010c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"2e3661605e9941aab35b101806c1fbcf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"4905a0a724cb4f89b1098ced4d8abef3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4623bfb8ce1a4cb9b63b875b9cb96f3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0b2b71b6dc8c4bbba1959b11013fc9d8\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f52bf671523b4c2e83306f44b00f5bcd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7f4f43b295a94bcc8eb02b97e1f800c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5e258c0c69f34ed49d15de87a55973e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"70d8a65aea5d4f9db301b041b9d60a1e\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384434270212, 'guns', 'guns$hr_position$edit', '编辑系统职位', 'guns', 'HrPositionController', 'edit', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"211c4db51dbf474c9f5287c090c6a6e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c4e9def02e584d4e9b9ff482374caf7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"da92f7fa51b04cf9a38fab46f1135e24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1daa16de2b154c6b80aedf3460e0713c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"872e059e95fc46d8a5c9702fd2b4d327\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"69e14fbcccb7474b8d54ee8c4f124e74\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"69485548328d407c8d851d1427c25ee3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"81a1f8be7ae347da9e7566948a16e34a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"97046a9e87294334a08e0edd12a4e8e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f55d728350df4cf19484677c929bc0b1\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384438464514, 'guns', 'guns$hr_position$add', '添加系统职位', 'guns', 'HrPositionController', 'add', 'HrPosition', '系统职位管理', '192.168.11.1', 'N', '/hrPosition/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ef4774b354384189978a02a79942aa4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a5285843f8894652b08f5517ac3bb911\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"352ff6cb236e43ad90d3f034903d2cdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"0f2d705b9ebf44db8f42afdffbb07cb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5632e25948a64260942f9755771bf018\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"a98dc875f9184ea8b667a93647b237af\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4999cba716734ce591aff1bc16150a5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4cfcf7721d65437faa8511be8e4c849d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7976ee68dbe144daa2f4b1915e4df4c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0ccd5eb6b4374fa3a1bb545b2dbbfa38\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384438464515, 'guns', 'guns$login_view$login_action', '登录接口', 'guns', 'LoginViewController', 'loginAction', 'LoginView', '登录相关的接口', '192.168.11.1', 'N', '/loginAction', 'POST', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\",\"metadataId\":\"ad48a29228294db48efe4921b0951dcc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"07ba5ce2e3b64e8fbddb3e45c533a8f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"c59999181d4e4363bb946b747fa88771\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d298c0df1afb41baa258511a3d1ee4ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"68a3f63194814b468db5662b59b94226\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9adef2e3f0934ae5a493bfcbea241d22\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"dd91381a9f024749a3cb06fa39e73c1b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384442658818, 'guns', 'guns$login_view$logout_page', '登出接口', 'guns', 'LoginViewController', 'logoutPage', 'LoginView', '登录相关的接口', '192.168.11.1', 'N', '/logout', 'POST', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"73630126a5d04f5faa1f5392df95edd1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d41342596d0946f5b9092fbe33922114\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"cd58b79f0ca3482189b30a34f163f5b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e4fa8d891d5b4c3289a2dcab867e5db7\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384442658819, 'guns', 'guns$login_view$login', '登录界面', 'guns', 'LoginViewController', 'login', 'LoginView', '登录相关的接口', '192.168.11.1', 'N', '/view/login', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"cab09931fba14781a2f791953e01fde9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"72c26b1447624011ac34069d55adf36d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"9bacaa400c074068a14884ecb54fdf70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0e8750d1b5764593b28f01957ca1ad55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"91e6b21925d74189a75df22604ef40e8\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384442658820, 'guns', 'guns$config_view$index_view', '系统配置-列表-视图', 'guns', 'ConfigViewController', 'indexView', 'ConfigView', '系统配置相关页面', '192.168.11.1', 'N', '/config', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"52a6cf43835a4532a38faa8b353116e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"844e986b315d4d5ca1c876a17729f15a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ea1c4ee9fe094e30ac0c7194187754b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"386ce3af41634493b88c0ed823a1c6d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"1c4a41d2fff948d7bc54eb7fdaa22740\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384442658821, 'guns', 'guns$config_view$edit_view', '系统配置-修改-视图', 'guns', 'ConfigViewController', 'editView', 'ConfigView', '系统配置相关页面', '192.168.11.1', 'N', '/configeditView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"04c45106e0e54b5bafb9296630fd3a68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"70f57beb9d374e87ba96c273b40217b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"1f9392d7288c4a16b59c8a293d697c97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"94fac3c3ad0e40568773acd0c395615a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"930f0540e68249459f4efc0cf2040825\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384446853122, 'guns', 'guns$config_view$add_view', '系统配置—新增-视图', 'guns', 'ConfigViewController', 'addView', 'ConfigView', '系统配置相关页面', '192.168.11.1', 'N', '/config/addView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"dcd679136a5d4d9eac9173dd105630f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"090e3fa48cb04b88b6cd92585f44febc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"7f60539efd624fc3ad5bc3f0dfc6ff07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"333d75f25ca0463c88af598f04c2c794\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"27bef4196e764227a82970bd9e6c9a94\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384446853123, 'guns', 'guns$sys_role$delete', '角色删除', 'guns', 'SysRoleController', 'delete', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"7929f1ac196f4ac284fba264d5993a3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"922a86adde2c474db618f46f2622fb97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e1b2cbfcb0f54b56ab3d9b685de5ba69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"be51058b2e464e7ea4fdf00baf0c8341\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c896122972224be8a3651d35eb48ada8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"39401beb366b44fa85f1c8c037d10193\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"e9716d548b1346e8bb96efe870400d16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"cd455daafcb44d2785167838a6a3e2b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"083699102fd04a5fb77fefe5cc3a0636\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"642626a178b04e64969e94bd90c69488\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"af627b4fb6c24a7d8773cde0682df050\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a436dc6fc7b6442fbfdb872b85fdc4f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a0f79173cd254d43a78a74ed901277d2\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384446853124, 'guns', 'guns$sys_role$add', '添加系统', 'guns', 'SysRoleController', 'add', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c04250c92c5d494aa592508ea2ec248a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"58c51c144dc444eb926477a6e0edc4bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"983118709d5c42cdbb95e6887c86c123\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3d7062228d7d4fdf9bc5eb2d53a312b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"90119c01732a44b1a6e04f6e7719e6c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a015c3aa4813475db718564104270942\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"b360ebe1577a4d128e9533ebf5022d37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"009d5e18cb2c4dff972aa5cf3db09a1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"646e4ebae758457eb5fc208e61799819\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0018435a50254b46894df05106fbf00e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"606b4b36089d4918b6ea35f71e7c1bf7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c23f1a7886124cba86ff32bba8f15718\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d9885cc5f1074107b6b6d2dab21c654c\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384451047425, 'guns', 'guns$sys_role$edit', '角色编辑', 'guns', 'SysRoleController', 'edit', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f41918575e3a4de39840960f2b9439b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"92b41aac9a304d5695c388431d2daa39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"3cbdbc3fe4bd44509b2dbcbca2e9bc24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f20981c347cd47999d76464f572442ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"7ebd7160380b45b9acc047ed7f88207e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"bca19b2b3c4f4f3c95b7c40810035e37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4da0accd95e140c290b29faef58b0c1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"aaa98887ec34458ea4166f8667c7d7e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"57725049845a405eb5a51e95a225f18e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"cd4eb2a6d94a4889bad7bc0cfe62921c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"488738e534fe4917ac2c0b2e0f1fdcfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9d1b205a73924da48c856634d04c6e5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"da20f4fcae3e4e35a5bbe3e5fb3f0248\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384451047426, 'guns', 'guns$sys_role$page', '查询角色', 'guns', 'SysRoleController', 'page', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a67b654c92bf4730aebf5156a31d2b00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"8e16ca4488b340baa2da0a06b7059ba7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"af2b65095b0849d89e666dbd36ccad90\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"702458bb93094ae189ce80ba4fa7f949\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"495277ca0d8c42619bbb508b8ef14af2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"541a73e9a1af4f3a8a3ec31c3f7dd75e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"cb49ac917cf84aa7958fc096b3f9820b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"48ae432b66a54777a9bcea69d14b34bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"6592ab11afce49b0b925987e697af664\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"99886d2db8914de2bb2760d6e947c422\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b0ad5a5a8b434a77b578952fbc4ff4f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5d4e7fd066f44118805e653187eb6805\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b11dc348ca16420d85520132af1018b3\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384451047427, 'guns', 'guns$sys_role$grant_resource', '授权资源', 'guns', 'SysRoleController', 'grantResource', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/grantResource', 'POST', 'Y', 'Y', 'Set[\"grantResource\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6d08f16190d046c6953ea4ba5d420463\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"21554b747cb940929e8a76448f0fc611\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"421d75e0ea8b4e598c5d4d7e3227f64e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d1a0dd640e024c6eba93be102ff055b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f46e1dbdf65e4ef294f0891e4c15822e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"241601f8e8d64242a2d1f82874943bb3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f7b58c3e5f3848e6bc5c22291cff8353\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"525c990bf11040cc9a2b794790ff44cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"44f24319073949c4be8eae860edf8544\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a22077f6c8984188870a2041cd8a8adc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d3fc19cba2a84540a4175f2c96ee0165\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1b454b7538a34d0b82a5b758c55416a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"650dc9e02945439f912252d954902d70\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384455241729, 'guns', 'guns$sys_role$detail', '角色查看', 'guns', 'SysRoleController', 'detail', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"022b4cc355854955ab9395ad7de1ab85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"6b9054124b224695b8bbf0dea96aa86e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"dad4ddbf597e4a52a4a3bfb0df96f047\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"78d46628d149425984d47c4d23afcb79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"68a089de4d644add9ee76b1942616837\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"82836d6227b247688428bebed2775c3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a0db93e241f44819828b1756f9cbfabe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"503569d5b0dc4cba8bb26cce62ab1116\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"97d6fe0940f1412bb91309a73573c035\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a7e72abc28514aedadc61b6811006b7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4c26f4a1ffed42c695afd4f9f7fdae6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d4a97c651fa64415b8c235971eb805f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a494cf9dcdc54b4bb734566cfaae0c2f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384455241730, 'guns', 'guns$sys_role$grant_data', '授权数据', 'guns', 'SysRoleController', 'grantData', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/grantData', 'POST', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"661ffaf8c00d4f6c9860d735d5413fdc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"75a86b0e8e9342a7a94e72ecd8c7a71a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"b45b69a30eb64a59a673a6a3f62e0c4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"08f8e76208924323906fa6c59a718366\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"bf72a1a536814d7a9566397534d5858a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"89cc113bebe449d1bed0bdde825c52ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3e152262cbe1475498cf10c82d0df309\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"b21987b85bb84743912528c723fad077\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"c71e89e327344c0f8fd7482d9b4d0e1e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e447f5e68f0f4a4b8dbb4f31b315cdfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"57150e50057a4db78ac85a07bd9d9525\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0f7d4b96f54c4c50bd8adcdb0e4a138d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f6dbf566b90b4c7bab49917b80887ff5\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384455241731, 'guns', 'guns$sys_role$get_role_data_scope', '角色拥有数据', 'guns', 'SysRoleController', 'getRoleDataScope', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/getRoleDataScope', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1c8521765c17427dbb41f7d63c565a8c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2241754644f0432d93862486e05cd6bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"c76950e97e9540ccbae5fd5435227df9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"eef8afc6468f49379b2394e4dd596fb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"380b51b4c82f4c8e8cac2066645b1ef7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"1311afc2b1a14e2c814add03ab4fc521\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"d381f62d28ff4c1983b303faa770f112\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a3d1f2077dbb4b09baa810300de52424\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"392bb19ee8634665b493bd7fb5d72652\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1849bdf7a3714923b1fd88de24118e06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b11dcd7b635c4115bb45ec357952c4e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"56f45884f895438d9391f803cb50e41e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a4323a161d804e07950ef49621d56b50\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384455241732, 'guns', 'guns$sys_role$drop_down', '角色下拉', 'guns', 'SysRoleController', 'dropDown', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/dropDown', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8c463e3fb68c480a99f134b38ac86be4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7d5d6f621aa046eb96ba6e17aaea5d27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3a80939320464649b9900ab418b52eea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"81c2685cfd5f48dfa7e62baea4f10cbf\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384459436034, 'guns', 'guns$sys_role$get_role_menus', '角色拥有菜单', 'guns', 'SysRoleController', 'getRoleMenus', 'SysRole', '系统角色管理', '192.168.11.1', 'N', '/sysRole/getRoleMenus', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"77f13386b3b84b33b048b28999f77270\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"10b91d2b7aa04ad8a5de5ef2799e2584\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"cb82f18145b94c199a0f053730f53382\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"7a9b2686b97b43638b7e8a862a4f6f82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"19f73d5e4070451db2a55b6f85e06ddf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"9c1e3b65c8bc48ca849ab31305139d84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c8a7459ddc1a4488ab33b82ba2007747\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5adb479b2c174317bacc7341b30f5da8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ff5add1ba4384d32ae44feb8a5e38071\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"76ef4e74d8854c48b583fda5382d3929\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0bb465fe24cd469b9cf8936500c2bed7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b9a7aff1712d4ae2a86363c6abf0f148\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"96d757dd72ab4d1481f487e58da30b6d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384459436035, 'guns', 'guns$organization_view$index_view', '机构管理-首页-视图', 'guns', 'OrganizationViewController', 'indexView', 'OrganizationView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/organization', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2dea04cf23c540dfbecaec311ebb09d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"d0fd636f09b34231b02c6c5def607aa0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"ac40db37485841cb971346618ad36459\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"dc17afd98dde4f5483afcdc689546765\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"201d83ef7043475b94d3afb41038b640\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384463630337, 'guns', 'guns$organization_view$add_view', '机构管理—新增-视图', 'guns', 'OrganizationViewController', 'addView', 'OrganizationView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/organization/addView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4189b48914974dce8adaecc9b05c628a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e75537deea8e4f45a1131e9684c1a127\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"4fa11fd1c7904f4cb7456b19ddaf4b82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"00c9efe56e6b407fa2a114b39e90fcf6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"e48edc465f594a4aa518558790bbdf9f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384463630338, 'guns', 'guns$organization_view$edit_view', '机构管理-修改-视图', 'guns', 'OrganizationViewController', 'editView', 'OrganizationView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/organizationeditView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"00de1c8bce45470ab8a97513df7f7a3b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a8878d81312946458068339ecf0398e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"af52783ef21f491c8ca1ae235075e95b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c4ac71ec5c2442b98334b3fab75b5887\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"b67d7e44eb46485193025620f3a628da\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384463630339, 'guns', 'guns$sys_menu$edit', '编辑系统菜单', 'guns', 'SysMenuController', 'edit', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"21d530e2f7404357adf2e2bd37b74f7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"88b9f140f72e4060892f09f69e4d6855\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dc0805f6953a4421b97449fedbf3a1b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"354beead446c43549d28cbc7f0278ff9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"ccf6763553dc450b8a848488952a19e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"c19ab7807c5747799bd6c4fbd3d60774\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"616748312f134aa79b352fe6454f696d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"83a59f7f4c2c408e883afe442b4546fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"980a58ee04574b37a165db307ba05dd0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"3c49dde62c71436a8a07c0078f7df226\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"861bdb5ea93749fd96c21199e3449f3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a3c2149fbee54c758bac22e4cd32dee0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"75621068710d423891cbde55579ca538\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"2b938b1cc19a4aeabb9e3da9f9a6a6ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"39f93c2a99144c4db0f17e058dedc1e4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e7c4b58e8d034aa2b681879342c926dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4f797ab12ff44a4cb1aa36f0e88d7c69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c798896705674e09bdc78f5ec61a42ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"42cc2236640c45829de71efd00db66e4\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824642, 'guns', 'guns$sys_menu$add', '添加系统菜单', 'guns', 'SysMenuController', 'add', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"35816fc7de9f4dc98cb44b127668e01e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d3bbfc84ac1341579f4889b54c2fef4e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f0f9ff8183c547f8a722e6f0d4f051a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ce1e56a63cb24f4085c50a8118788336\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e140e84e62684e56bb07d625e3d7978e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"4acf3c1ec0fe4b529ed5a407fee60d2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"99fbbf58229b4ba0a9efe56798e7e45f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"ba7fd2c8984c43a68e15b01f0855e94f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"af963274558b470fb1d27cd7d3fca385\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a8b222a8a3424a81bf4aeffe5128a102\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"0460e119876d4b31a2d0e8007f15d6a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"c69b2eb611ca43fdb60f130e863c91ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"d6b2f9b92c714ea3930715c714384c2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"07e2b1f7ad064afc94e3ab8348b28ddd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"1f52dafeb46d444f9606effcc679c220\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"42f639305b9941d98418c12b6b9ad672\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e0252fd083164493be55ac0707ec29c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4a2a3f84d632401ea7f9b945fe945c1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4cb58d6cbcb945ff9d32b29d06f29e4d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824643, 'guns', 'guns$sys_menu$delete', '删除系统菜单', 'guns', 'SysMenuController', 'delete', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"16dbddf236a74871bb5df6acfd657b1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"cd7195fd5fe5432a811dc88c84c963de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"afc34bfc2f534303bd2846316f1d9c28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b464320ff5fd4bef95a9d135a7c05ae3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"52014ed73a93419fab1885dfca13ee43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"edd42bc38b66497e87566a728ecb37de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"6ef6e6ccac7748f48ae37dc0a5a8efdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"03d4aca9f99342d6abdafa1de3968462\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"587bf09c489e4a40bb51497dc82bb099\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"d13e1c989fe240b1b3571c054870a81c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"27f9edc2f5424477859f0e402a049e31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"efe46338bd664ad586606f5dea744290\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"60b2a156483847ea9278c1695a00358e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"8848500be9a745efb59b3f7d1508afdd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"61cf6f86453a4f43abd43ec5f83d8973\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f181f6988f744bf7900f1d0e476b1230\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"edfe058ddfd847039214ebfa5dadc5ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d62faaa8d92e4d93b55d0938496af327\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6b05f3686c4f4f078efdcf4f51aaa41e\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824644, 'guns', 'guns$sys_menu$layui_list', '获取菜单列表layui版本', 'guns', 'SysMenuController', 'layuiList', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/layuiList', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"987f425257144408add77c7f7744c32a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"70fe663b3f0746dca5841ef2fd7a64ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c148806795824ad98b76a6ff48eab419\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"661d6d2328164d28bff2fb5e68f85785\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"7da478200a9f46aab630bd463ca10605\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"c0c12b2caaa54f7195105330839d1be0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"a786dc74317f4b688b45e91d148dc007\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"4254c8e43ae74d1b80bbe3be03337463\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8506fe852e034a9d9db38ab1bf5a940e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"a420a51bd4df4a09a6c771a84849c63a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5bdccf44bd0242b5b238c022552dc8cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"dba872ba1bc94588b42c097e2853a9c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"87add711eed9476e8ce3ff4aad812dc4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"dbf79f0dc21a4313bc8334fc39d56457\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"05ced2ece5c3499891aa7d0955c7d5dc\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"15bcfa35361e4bdbad45b32bbb0da3be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"056cffdff6c24bf681d10179035c592e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e8f3c3d1b31e4f4a8ebf31c66a43092b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"958b5fcae9c545909746aa78949bfd3b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824645, 'guns', 'guns$sys_menu$layui_select_parent_menu_tree_list', '获取菜单的树形列表用于选择上级菜单layui版本', 'guns', 'SysMenuController', 'layuiSelectParentMenuTreeList', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/layuiSelectParentMenuTreeList', 'GET', 'Y', 'Y', NULL, '[]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824646, 'guns', 'guns$sys_menu$tree_for_grant', '获取系统菜单树,用于给角色授权时选择', 'guns', 'SysMenuController', 'treeForGrant', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/treeForGrant', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"b759602806594864af82711474bbbede\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"65aa6b87315b4501886229efa6fa4749\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"404368403cb14c72a0020e9f1598d5ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"6fddfc7a86564a63b5af2e17df0cf295\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"e363fdcdb6a84c56888c4af6d6933d44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"7fca1c77fedf4796a2687cc472e745ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"e5d27e2e3bdc45e1bf83104456e104d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9a7a2b6ca5e04293aa1f43e0a4ef270c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a1885739fdd5479abc2fda87dde7c484\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"68ec819e8d5e49028d0c714c0fed3f7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1204b69045164bb4811a508c9f1aef3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"e412c9864331478c94579545bd47bbe8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"a2053f15a8e349cb942c27d454cfe9cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"f88d3a586643400a9573e7121c0b603b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"294eb7c1247e44f78acb46575b16fe0a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ebaf3383eb3d4f22b1770942e59ad3b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"332fecd99bcf472caf634dc991e822ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"691bcaae61b9481b83795cdbce889542\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"94ff8cac02c54656891489dc2f015ad8\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384467824647, 'guns', 'guns$sys_menu$get_app_menus', '获取主页左侧菜单列表Antd Vue', 'guns', 'SysMenuController', 'getAppMenus', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/getIndexMenuAntdVue', 'GET', 'Y', 'N', 'Set[\"getAppMenusAntdVue\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"469c50ab33c940a68d2f5bc23cb90024\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"4238fa45408d4508aead9a322c315411\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9e05f2ded3fb4f36861047e35ef651a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"ffc38892181741999868bf5c4debdd4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"0cdb2342abad4da6aae07a849cecc829\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d7651954638641de9396ac5c21fde8ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"cbbff1d79104449db171784c6b1002e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"0ea7970d8dda4feea3b58fd53f473988\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"027f7554d1bf46148155ae0c60a5633b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"e58f97f9a84e4af2a4609d926d85d021\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bec4fae9da2a47239da027cccc3501ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"99ff1bc71f8d4130b03941176e495c6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"20bab3b347c044168c20017e1717e7d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4738cc36b4224768a0e0dde9ec2f9744\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"71f94fdc6f2040fda07752c0dcd6aa20\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7848fc0b000e46cb939f43878f18b100\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"cd45fdf9a43541a18b5685f5dd4af455\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bbb3a0e322354691bbc772a4385844be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4697e2e30f1f4b33a20f5b04910b78f2\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384476213249, 'guns', 'guns$sys_menu$tree', '获取系统菜单树,用于新增,编辑时选择上级节点', 'guns', 'SysMenuController', 'tree', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/tree', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"668983cd4d7947f4b05d323ed4fcac2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"7fa349ffeca64de8b2d83114fb25c6d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"a0933d8a86ba47d7af8554476dcc5721\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"67309644be554cf48c9cc1136f55e92b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f4f5d94f118d4af78c35940f6468d696\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"92185d2f83ce449485f9efb5c6dffd67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"58ac7a4db8bb4fa28cd41f0826a21c78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"a4a4b8b4280144818ed4cdbe48aa97eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bc2645f4a5b548728f5f274eacdb4d0d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2d65d95e9125431a93499a91a457d9cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8accc76b0e514c138c791870dd530c2a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"520d6b12cb56428cbdfb38696c8d11f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"97e05da536f44dacbe2c08fe78c1c4a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"9ab81eb8043241128e44adc38e48007f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"4ffbc67ca4f94e9f9bcd32bde155bcf2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d9591f5fe7224b4f9b6d7574578b533b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"dfbd58a748414bee86b44ef34d73abaa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a69014ef79094f1cb050fb79704cb52c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f0a54d09701145f783311d1005a7c9b6\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384480407553, 'guns', 'guns$sys_menu$get_system_all_menus_antdv', '获取系统所有菜单适用于登录后获取左侧菜单适配antd vue版本', 'guns', 'SysMenuController', 'getSystemAllMenusAntdv', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/getSystemAllMenusAntdv', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d3af701e71a64cc289664841a229007f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"db4feb198dad4e7db77f3e518fff84b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7f64c6a694a4498189184352c12ff020\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f992757ac43d4f89abe2e1a714dbd605\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384480407554, 'guns', 'guns$sys_menu$detail', '查看系统菜单', 'guns', 'SysMenuController', 'detail', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8060099a63524ab9a27eaa3ec67f1c5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"608ba279403842fdbc9a6de062647f71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6d0691577b774584a68f2894536ef9e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"02d6f07cdf35470387a6044bef09d420\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"649a824d172549c7ab56b76444df8465\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"acbe06b78016414da827d597aa0f8d11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"889a0df2b7f5425994dc4123d6374fe4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"768e639064fd4cdb8ab42f5cbb5bcee0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d5ed5b4d26fc472ea029119ea744c489\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"909846d35cbe49558042cbb896054ac5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"7b1c19cfbf9c408baf782afc402d3548\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"60da0c0eb4d448eb99c81daaf2759e46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b4545550c0e24ca69509353352ce2347\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"77596a9ec5a04b42872177272d27b231\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"7e7b0d1f62d44dcab2e2909c9f5a0abc\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8709e953379e4483993905eec455bfef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"16fbd89fa3c34fe0bd6ecf58381b6a9e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3f7333cbe70543e790766ade6722f21f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6cfebf3ee1234e63a63fac0dc0964b98\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384480407555, 'guns', 'guns$sys_menu$list', '系统菜单列表(树)', 'guns', 'SysMenuController', 'list', 'SysMenu', '菜单管理', '192.168.11.1', 'N', '/sysMenu/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"653d7a352d084c6681818d10cc405da8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"23da7fb479294a44aa1efaea8018cea0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"9200e50e33f744ffb826d9f44cda50a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0d1fc44a8741420ca03860b703719db6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"c44a75afcacb4f4a80adc4c9421d8809\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dd4c2f966718432b988c7c262503b420\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"62cce3c061b44015bdff75f7969dae94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"49f0be8faf3144c7a60e1fb089e93be1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"f89c1ac365904783b21d05cf442a1f6c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"bff362be119746aaae18c2c1555c6157\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"890c3892eacd4bb4a555e762d8374833\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"3d46f5c2e1b5458399a529556aa3e1f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"07e1897da018411e87cb885dfc6d1bb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"76fbcb4e036a414dae70d6c638d94966\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"adec1361ed3a458898b935c9e27f04a2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2adb726d00e244008673c328c4d3a368\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ea18b1fc2d564dfd9ee2dbad57895f69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"479f7926876d4b2685a47fd9613575d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ccde4bd29d0341e4a540b644aaca4c23\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384480407556, 'guns', 'guns$sys_user$grant_role', '系统用户_授权角色', 'guns', 'SysUserController', 'grantRole', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/grantRole', 'POST', 'Y', 'Y', 'Set[\"grantRole\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"1734c07a254d480b9259ed1ca1d69c06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"be24b405568648a88dae066e2da44c1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"1d65260cbfc84d57bda2a3f93cf4c45c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"31dad61f81b94b99838f1c4716428f37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"8450f7b40f974c07aae50f2fe25a8957\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ff6b09395d9c403da87997a97fc01826\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"2caaf76b3e3b4af3a4edfdf34087af50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"ef918851de314680bd6218c96e38282d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1c59f8f1516a4e72b20fe205e2bfb008\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"99ff74740e4d48d4b2e2eb7eb97c5915\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"d583f67a397542b395043dcbb715f543\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b7206477f8864ad2a4c81e8c44df4c72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"6a554c11a23e4d6a9797d9e994388356\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"67feedba7cee4ac7bf53d007fd9c08a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ba94aeb0289646c1aa7c68d7294cf7fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c39a105d56a6483faf600e985a0d6ed0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"97caba706c5342c784367efa842821c1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b4dbfee85d914df1978a284c29433ea9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bc3d4a5e121f46c98b461fb0f24a1a1a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e7363526e86e476e9bd4de7b142cdc6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e2f692ef271c4195b91ceddba853d1d4\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384488796162, 'guns', 'guns$sys_user$update_avatar', '系统用户_修改头像', 'guns', 'SysUserController', 'updateAvatar', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/updateAvatar', 'POST', 'Y', 'Y', 'Set[\"updateAvatar\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"4aa3209e66514e22a6a0971917cb8dae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"aebab83ea8b843dab8008c984c8f9ea0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"b47fac96367c4a02a32fffa87fc9fd6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"743992926fda46398e97ec003eedd342\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b325143a81784646bdb39408d7ca042b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"d5b111df391b416798cd8cd4b945e007\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"2f81b2673fd9444898069ee1d8ef2a85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"078abaa4fb744dc0ade152cd1157cb01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6a74906a58864a70889e7b28507c8b01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"af436ef8b985425fbe12abea272ac6b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"fb8fceed0a9c43f1af22d6e3f3fdbc7f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fe24711de2e842a0a3e8567e124bd938\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"8dca3594b7724aa5854e4c838c98d6a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f1b7c2cbdf8c45449f6fa7921a05f634\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"e389521821ad4ec299d02c401c983005\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"eb814ac3f25e40fab7933f66c50453b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"8c1e4a40c1234d63a1ed370033bb921f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"841de728b01e405d9b99d4794da65dbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fa02acd879554b0b8e61dc32cd6c6af6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dbea6f1e62424daf83788eb98ac12252\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4f9c0f4745e346c0893a5dedf55c47d0\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384488796163, 'guns', 'guns$sys_user$add', '系统用户_增加', 'guns', 'SysUserController', 'add', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"6c90acd29f3542f3bf44897e9c8fc0ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"6667f131fd7343efba212ff7f74d11bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8c51e28a43e2406f82181abf8cb96c4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"55818ac248b243f4ace056edc21cbbd4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3ea5f8835f01491e8446264cad5fb35d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"da7c79d3ef5c48639da6558a55b3a4c5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"68c16d1b5c084048ac9c1144b63ad6a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"e40e359fc9ec4d3f923c73c39fa013f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"2aabd9b480c9469ea37711f993f93114\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"45c75fdb2aad48418687e16dc33c7f47\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c04560cd84ba4a658150cc43f7931f15\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"8ccd927c17274acca79f098228292cd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"b460ccfaa00c4a6890ebffdeabf4d2a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"894e1b32f4c54db990372f8508374817\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"6161e486c6624211b497d10bdece8c76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"f6b995da2ee0448a808c0f798e6201a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"91a7f429eab546d68822eb927d1f4367\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"45706a63c4fe424fafa6cb20f5dab6a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e1791bad0d604ec19d97ae759465a2aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6c8c1de93bc644dfa24197c8d32551f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f936b1cd21794f478b510ec989b67b1a\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384492990465, 'guns', 'guns$sys_user$selector', '系统用户_选择器', 'guns', 'SysUserController', 'selector', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/selector', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3d19782a76cb466ea75909785f1b0fce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"9fab2f5b60be419a8b3f1013fd4df65e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"ffbc921be4354a6d8072ddab6205f894\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2a1607d7567045bfb72f4059127501d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"4bba68605bc44319847de88644ad4fd8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"778b7798ad8d49428ece5dfa821c8d4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"94c4b207e7a34864ae3834b914e5f877\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"9ba7c7b9b83c4c5a827e811f2053b585\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"631b628a9d384b2f9868846de2af5807\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"9574e47f1b9a455591a514e195aa4344\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"8593322aa0174ce1aba6498181c2959f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"3e34724c14254ea5b7975a5a2a603ef2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5c7c40e9cc2341778f1c4dd26f189419\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"feaedf591f04432a939b994d3c59e467\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"c20f10ed397c4270b986f33c12a4b5b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"a0c8405c62c345e7923ab605282774bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d411615f07dc4a8299965763fa4d23e4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f17e87f281504f63b43a90d582dc27af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a153233a5e2042b984bfd40ae368e0a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5cb833261fb34389b6d59267c1104c69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"86474f226751417b9e85266a81ae7333\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384492990466, 'guns', 'guns$sys_user$own_data', '系统用户_获取用户数据范围列表', 'guns', 'SysUserController', 'ownData', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/getUserDataScope', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"10ab95420cef4532ae9c667e6369a261\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"5f1ceadc14f34fe1b8068c8d3e45d92e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9537102331874ecd82db1c86965a84ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"bd8bd32985794ce4bb6264d5e5058728\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"897b79af3ef54cf0bacc2450dc5e96b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"62e71ed54f48412a81f0189d0a5e9e3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"5d79ceff85ff43329edfdadfc563e9cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"167c11c4725340d7805a8508d8c6d76b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"d5848bb355234009a85456bf49b2338b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"59c051601a5a4e02b98c2398fbf32d8f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"a19c71c2f3404a1fb1fb8f1d59c25ca5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"e1f717a8d576440b91f61811f2927a40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"6fbd47840b184086af7ba35e2c8b9065\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"489562ce00454735bf02a2d3eb91ef70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"22307911479a4b938a7a882d34ae02b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ca8ebe8e63154d988e153a565c05bbaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"d0a58215c8b24f59bc2a32bc39625033\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"698bd748c83c42a6a7cf6edaf4f77dcf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8b691874e9424ecea5f12f6fb803ab10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e013811ec9f642d4a6b377c2d43a0423\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8e2eee28a56d447eb387fad8eb24b891\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184770, 'guns', 'guns$sys_user$edit', '系统用户_编辑', 'guns', 'SysUserController', 'edit', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"c12ba1629b70472d94770b326b53ac58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"8dd61e32280b40498fb34082093edbd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b27238a7cffa46649704a3d3078e1aee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"ad2021b6e55a450eb3a696fd76c4cdc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"fce1730f1ceb4dc0b0807f527387c867\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c75f26e26fdf43bc83644f2eae087868\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"a6bc973f12a0425ab3922b670b89a8a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"eb44f06d54a9442f8d50b2f276fb0127\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f8f98e370d0949b5a7e900d580e19ff3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"ecf41a18b31743f19cdb9bd6607c62cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"797792c13e6d406fb5daadfe1cdba3c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"f0087d35dcc74db0819b84e5f165a0b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"098bf516e07044bcb4a701c8ec79a928\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e5f450b56aea494e8567e971adf7a9d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"6c8665a8e2c7415da2d42283eed6d132\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1a1092d79a344d41b61b45a7d6f0aa1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"11cc6ecfb74646b8a98da1870a46b19c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f92182ab915a4d5e99e94457bdd9837f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8e97503c590b4cb4ae14d24c922be913\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ed289e24cc734cc08c892e7eb0524c17\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bd1224ff613c44c9a652cac990d65a1d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184771, 'guns', 'guns$sys_user$change_status', '系统用户_修改状态', 'guns', 'SysUserController', 'changeStatus', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/changeStatus', 'POST', 'Y', 'Y', 'Set[\"changeStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"f23f9c6bfe4048f6ac79d150305822b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"3cbc5dc39dec4c96b3052d0a338b6c2a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"2e79473c45a54b10b82798f3dcff0cda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7d8e1318ad804734a85005824d37f4aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"df0b5202ad4b4d3ba3dbb8107affdfac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"1c2e10ef27e64d8292dee0196a9f5ff2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0ac2b1ad55ae42e1bde2469e7173deab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"160ff1dc9ab344089482f47721024066\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"9d0000adfc8142bdbccd7b34c2188f65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"7f8fa55832d748adb7cf523f05b87643\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"4480b447f103479ca10d30672955b0ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"f711423536df48759139503aca52d2ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d67546d8efe04803a54a55a6adcdf400\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"a845d2076a3e4d64936591330e9afc25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"2fb7757789a24ef8b33102450297704f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"3b1865130e4d43e2bd7157ad46d3e5a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8c1c5558f778449d85a49c030f80f937\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bd25a0a0e90544a991f24113bbc1fd58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e08afab77aa94fc288fa8a9d850665b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1237f86bdc0148828702a83a1c3e1db4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0a29d54da0404a37bf074ba9a9934260\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184772, 'guns', 'guns$sys_user$page', '系统用户_查询', 'guns', 'SysUserController', 'page', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2663c6c997b94692a5a939275d2ae3b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"24d285a8ae89431ba74ea33caa23d569\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"6b78e23aecba4552a42a6c35a9bc1fe0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"98913e1a387d4d83bdd28a20ced8794d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"c7a2d6101fc04135a3203b53397fd9a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"1982f8d5a52b4605b529b57997b1e8d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"f8e309ad28d14227b7bc1443d3797bb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"afaa5eb22c9e40499d170efce9e11ac7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"51b303cc468b48acaf1746c5bf8c886f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"97bd344920484f0b8f9ee338fddae42b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"f65272cc7fc948378dd6f03e04a192c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"32290f11ac33461084fabcc0d89dcb7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"6792597cc05f449498f68c2eb7db0e51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"46d593d0438d416aba5525ae41090903\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"05fafab6718d4d20ba7a2b91f6e8045f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"359413da16d944f3af2dabfb4990f248\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1434f64d55294d2c9d7ccaff89a046c4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"20ce0545847848f7b1fce52eb0d8e1cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9a30db83e8d14e4c80eba5df0dcbba13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a36b43c8951641f0a1a4dc1bdaa60f69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6cc7e0ee427c4a5aa86ec5467271602d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184773, 'guns', 'guns$sys_user$grant_data', '系统用户_授权数据', 'guns', 'SysUserController', 'grantData', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/grantData', 'POST', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"39748792559c45d9989dc1ec50214dde\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"74a4599a0b43461baad2f133c2fd47f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"249ea61f1b3646639496db9cc57a4f61\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"23e4736cd4ee4b75b54896c61047546f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"03b24168978f43cb9d52536b57f53a67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"256f2d4ad7e24342915c6c1ae9a01a6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"870ced04759048c99ad52936bb331375\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f223135f697c4ed8a0a9bac870912912\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"2799c55c6c96412da43bc324e128edee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"7847f64e60d54855aa7731e1505aee9e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"dd18b735ba6f462ca0cb2fe1d4c030a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bd1366980ba14caaa131a69452c0047b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e26789a185b448a4ad542ea2b661824c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"092a9e1dc10a441495db194b9e552da1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"bdb94dca190a490db744cd586eb524ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"69f24657743e45a3a0efca462212306f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"31c1b9ce019b4d9daaef01c83d32dffa\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"21c0c8d1c8624d31911c5f630ba1cc12\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4524e77864bd4d1e9b3aa264a5e65c0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7fe17b15c6444aeea610c6d58a121cb0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e16497affe104e67979e4b022a9a696f\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184774, 'guns', 'guns$sys_user$reset_pwd', '系统用户_重置密码', 'guns', 'SysUserController', 'resetPwd', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/resetPwd', 'POST', 'Y', 'Y', 'Set[\"resetPwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"222318a680144ce4869ff32835b9fd67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"240fb9ea6328493dbee636e8a49e6a13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"a5540a4eeadd496f94bb059395f9e708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"376cf3d6f38149c0a9ab994772aebf7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"3f91b9270d2c4c5faa2bada701997ff9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fd3f0ae81aaf4780aeb2a44c117fb5db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"b3efd73d41fc4aa0a6541022ce39f7c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"8efc7e413c0742d8b3096992319ad81b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"f1a7ef4a07104fa2a8a24efea8222d7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"d6941ae4fe514020bac3a81638500f57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"39396cc744024063b7771aab9f4ac04c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cf8c42c670144d3cba709ac387db93ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c0479bbc54b04ecba93ba7cc24f73921\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"c15ff859cde54c3d902530b97b359bb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"a3990763ae254800bb81015b68ecf030\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"80398cb356674bbdb6b430225d93b99b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"08d5f732db59470cbe95b32287b36ecb\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7758a84276a54a84b07cccc5c20a27ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2fe6dc897ea8415da60e54582de4ae91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f16254c2564541c6b4fbd7253e284e43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"46b6755bea774331985fcf74da05c36b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384497184775, 'guns', 'guns$sys_user$current_user_info', '获取当前登录用户的信息', 'guns', 'SysUserController', 'currentUserInfo', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/currentUserInfo', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"37c9121cc66b4fcc9ae28280db24b3d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c06cbb1ddb16496ea4a25d538f6837ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"83e4dbd3b54448439748df6b7ab2225f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"040b8f0131ea4ba0a7cf483817bbc18a\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384505573378, 'guns', 'guns$sys_user$online_user_list', '当前在线用户列表', 'guns', 'SysUserController', 'onlineUserList', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/onlineUserList', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2bfb30df95734fd9b705ce804b9d1b42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7782da53aeaf48dc87a5aaaa38076512\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"93dbe634f0184cc1b2457eee4c342fd4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"bc571f72f3d345bb8963c19509ff2e87\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384505573379, 'guns', 'guns$sys_user$update_pwd', '系统用户_修改密码', 'guns', 'SysUserController', 'updatePwd', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/updatePassword', 'POST', 'Y', 'Y', 'Set[\"updatePwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"e01c663af8f840d583b21ee57122ce50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"172ad0439c7546278f0e53cc4d507b1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"463f365c45be4d179c4c2a2a3ecf4771\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"247530aa06f14124bf7c122821c040fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"1a03b1dc3b2040d2a59499af329033f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"09c8b985b58044d38985a9dc066b5c9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6e324aef50a04766b918794d22f6c411\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"854855559c4f4a399cac51da37cb4c48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1d8790ee92df49f499eeffe469002885\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"22b76e4525de450d8fb91dd8c8530217\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"e46b786dc2e340adb83d7b56609c7903\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"461663eddf7e44b0983a0f27042244fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"680d353d150640eea5282d97cf6d3481\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"49c23332afc94cfb9ce7c293f3b03728\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"269dc0217ea1446589fed45eb647b70d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ad95355696a94944b6f690417b40fc62\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"0aa2da47c1734442af666aeecf6cc2e4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c91b9dce8c28482bae64a488de2c8d72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b3428fb11ea14266bf5f08f167c446a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2f2fde525cb148cfbd3f6769bbcd8a66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"66ddbdba9f67415dadb8d9aec203864b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384509767681, 'guns', 'guns$sys_user$export', '系统用户_导出', 'guns', 'SysUserController', 'export', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/export', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_REQUEST\",\"metadataId\":\"54296702c55541899d69771c69416a5d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_MODIFIED\",\"metadataId\":\"f078b14c449940cbb4849be308bfd768\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\",\"metadataId\":\"a0d488ef2c5e48cb858e80fdd3aeb70e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\",\"metadataId\":\"6e9b3201e2a54b72b510694999d0feb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_TIMEOUT\",\"metadataId\":\"5ce6f390b954469289201b23980fac69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\",\"metadataId\":\"0cdfad87a3ea4727b565d250919f32a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\",\"metadataId\":\"4dd0f9405f4f47f48eb544e535ef8e33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\",\"metadataId\":\"aecf483c03d84c2a9c9b8efe261643c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SWITCHING_PROTOCOLS\",\"metadataId\":\"ee8cbb64836e4510b24b91ac926c5645\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\",\"metadataId\":\"6d0a9340148c40129befd511f282f23b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\",\"metadataId\":\"685cd5ec57c4460bae48e62e6912d8f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\",\"metadataId\":\"66dc13d5368b4338a39c4f03ecab8740\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MULTIPLE_CHOICES\",\"metadataId\":\"3cb7287a22cd40b8a7422ed3b2e0c271\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\",\"metadataId\":\"f814b381e1c441f58c49b39557eed48e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\",\"metadataId\":\"0479a71f6eb44481b5bf372598e0cf3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FORBIDDEN\",\"metadataId\":\"b2ccb9c080d8474c9cc110cd62f74bfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\",\"metadataId\":\"9e468ae0b2d04aa89477ad683f34bf0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\",\"metadataId\":\"31f8c6a0e62f419b81ff84ed5696316c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\",\"metadataId\":\"6fc357541e7a4f53bb59c669688e8d99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\",\"metadataId\":\"02d75af255134fd7b3b6ba5ee945360b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GATEWAY_TIMEOUT\",\"metadataId\":\"82c365a26ece4eeba9adf4e57a34362d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\",\"metadataId\":\"ba0021e76523403ba8aacd1704acf1fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PRECONDITION_FAILED\",\"metadataId\":\"fe2d5d3c3ed3477c8f47728d684c1975\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\",\"metadataId\":\"596cd6eae76b4ca3a283e5db0020b8c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\",\"metadataId\":\"873ab6cd1ab34ded81c3ffbd6011f61b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\",\"metadataId\":\"6bbe8c4515b446c39b943504b1d7d993\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_EXPECTATION_FAILED\",\"metadataId\":\"ef157bdda73b470bad46f8099e32c46a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\",\"metadataId\":\"eb839c81d859456391b13ac859d6b977\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\",\"metadataId\":\"fe549967483046ceafd3d8ca42516f11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\",\"metadataId\":\"4d7c1a697c234525b4ddfa6319020472\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\",\"metadataId\":\"6db280fbf2934b41b84c45fab5d4ec5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\",\"metadataId\":\"81482bfd4f7c4155a000b3a21c95d85e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\",\"metadataId\":\"e3b826da622c4db3b0d79178cb7baf9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\",\"metadataId\":\"45e3268ccf434af5935b14f2135720f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_TEMPORARY_REDIRECT\",\"metadataId\":\"bdb291486f3f417b8b899a3dd6a5b4f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GONE\",\"metadataId\":\"c4235b35a92f4e8d9a3cdab751550f85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SEE_OTHER\",\"metadataId\":\"dff5a109d16a49e082b6ceb27aaed5db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\",\"metadataId\":\"f7b18dd5f1074f1eb4d775dfcc0b7b11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\",\"metadataId\":\"e3de1fa2c75d4c2a8b67cf49cadf4ef9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\",\"metadataId\":\"6cad0ae67d2941279ff09ee38d19f98c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\",\"metadataId\":\"6c87111491614427a5298d7434d6450a\"}]', '[]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384509767682, 'guns', 'guns$sys_user$detail', '系统用户_查看', 'guns', 'SysUserController', 'detail', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"62c804abe1a5455d81af6808b5c06e1a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"c67e3ef5ef494bfea4bc6a0227a88a08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"03f0b0ba2a814fcaaead5744fdc32078\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"11106d716f5543b490a481f215700ab9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"62daf7f32b59469da564784b5c9561b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"baf9d8daaad84207b7885bf0e285418c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"857c2f5822904175bda303e6fa2e986b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"3b35ae5a58ae4168a0f9ba71e9ae6d5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"b911b6c7e9a648ce8824647e0951d278\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9c392c99fc7e40658ff18e1e63b9c9c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f6b45f3f70904d2e99aadc246c295333\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d54052740a4e4894a5c1f1336719790c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3508496834d8408a85ac58d68ce46bac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"592e96f498f74743b2e2d9134732f207\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"24f947bd02c6458b853fbdbac2429a60\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"0cb4133319cc41649ffcec2201df9105\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"88c6bf414540400cb0a5a6fe9ed59942\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d696a40f03c3498daae2ff900533a3d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e45d5c25f40d4a6693a65795668b4101\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fc7460472f3c485d9c784c68b83df484\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a2c74ed29c5f47958e144245839217a7\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384509767683, 'guns', 'guns$sys_user$update_info', '系统用户_更新个人信息', 'guns', 'SysUserController', 'updateInfo', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/updateInfo', 'POST', 'Y', 'Y', 'Set[\"updateInfo\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"3db7c81b2f424a96839a3dec4f6359cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"99e1dc86186349bfb5a391bd810bfbe6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a78cc678fa83461989e9629347f4ffe0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"9525b2c991b843de8fa13fbcba64465b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"1cb29844b0fd42b8baf74c69ffdbcb32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"6fa00cdc0e1c4825882cba02ab0e8040\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c31bb5807ca14cb3bda5b38e1ecf47bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"a17c8eccd7d847048e8b2a21e2ab8341\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"e9c891fbeb294709b6b9233b2dba0fab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"829b299f386948d0b82fde664d77ebe1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"554fb1399ffd464ea4f557215b634014\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"c62cb959263348ebb560c511be421a11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"38063dcf279f47089048463bc4fab0ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"d513bd4699814f759c909acc13838a05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"020c640902e545be8b4fb8bdd896f19c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"95ab7e5603d9431c94ddc0bdc3a3817e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"44e442ac226e4971b49554bc1e38164c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"691c89d52e744ae1af67a8cfeb305fd6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c7ac77d1d9e343c3a3fe5dd3fe85e4f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"81e39ca895fb43939c36f2b6c5f3f3cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"866e08d9752a4b86b5c9061d61c4e750\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384509767684, 'guns', 'guns$sys_user$delete', '系统用户_删除', 'guns', 'SysUserController', 'delete', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"ad37da0ef10a4467b18509b835bd2c23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"73ce202635ab44d1aa001c874e2cc482\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"5ae748b74f324579b05fdeaba5d11902\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"395bea56319c4594a458f2676adb06b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"15a6d629a9eb424489605ee2cc322b40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"bd93bca299744f49a333b53d1f40c058\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"83e55eb3520d4a55b7f99e77f4c1f678\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a785a462611a474c984e41a15f2572d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"69c39a6bdd1545bd872f044ec2410b0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"42034ccbfa74447994d307e723d8ece3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"0ff503e96d464bdf8984d7e07792ff34\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"a5417cd392bd4c9b9a97ef745466ee36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a9171ba5ea014f38ba1bc2fa211d488d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8ca7ad14a5584aad8fb9fe25474b5920\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4a7e57e775f744eb8385cf5cc8c66638\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"f96408273f734f79b6f3b80d3c8d240c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"610af8d950a942fbb9a4c4fc0aba7a99\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ca759e5cc63e4503a9ad2eaa681f3bf2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5a48af9ea8b84915bf24be35a89ea632\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9efb140a94224f6486bd78581fa9afbe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2b921bea873e479dbb10ca22301cbd4d\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384518156289, 'guns', 'guns$sys_user$own_role', '系统用户_获取用户的角色列表', 'guns', 'SysUserController', 'ownRole', 'SysUser', '用户管理', '192.168.11.1', 'N', '/sysUser/getUserRoles', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"b1d5039e3aca40898319d352ba282cbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"b0dd16b53dee4ac2b53db50056f2c6ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"3d1c9a70b8024c9c86745e418f454bf7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"01ac0411406148dfb9817d687e67a453\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"9abb8cb22f074a6e81ba7867da9828dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"474bd44f1d9049c7b518e75356725a5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"bc551ec7f5ec412e8da06258d788b508\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a34980db1c0a43f8972e99bf0910dacb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"16715a0085064f6bb6b93f834105b17f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"eed675867e9248549d0faa3ad9c4e619\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"108bfd97997d4394a1221095d5407799\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"52df8295fb6b4f839f09fc94932c26f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"34023c168e2f4fcb955e602227805fde\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c00a56c3d2c04f36aaaf905f1a508651\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"e7f054f871d3463d8efa328268b58d74\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"78438ed8e24f42c3ad35107d0551f271\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"1ba42b5ba9c4456fb4d39d7503c3a71b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6453fd940b03490ea6b8af1a6a7b179b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6156f36074854df1b8175e5fc6e7182c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c7e5bb338efa4732a21f42cef9048cbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bdd71c83eadc4ec1a98cb22af3016678\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384518156290, 'guns', 'guns$position_view$add_view', '职位管理-首页-视图', 'guns', 'PositionViewController', 'addView', 'PositionView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/position/addView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"21b9eccfc4ce4abb98b7e20981e71737\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"63c7bf1a14184ee4a68f7cc060fa9788\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"1d32992538c1437f9c803812fa8ae365\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5d15d7932e6e44baa7be3ee76d8e55c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"1fb1dbd41b7f4478826cab0c16a7c63b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350593, 'guns', 'guns$position_view$index_view', '职位管理-首页-视图', 'guns', 'PositionViewController', 'indexView', 'PositionView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/position', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3abeae9316714a53929ad4b4f693fa82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0d6c011055cc436da0bbfe84309c92e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"80fe2796cf144505a0e748204a80c053\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b6931983eb6845309826ec7d1d0c2667\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"c31e6a15e7344308a078920a850d9ac1\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350594, 'guns', 'guns$position_view$edit_view', '职位管理-首页-视图', 'guns', 'PositionViewController', 'editView', 'PositionView', '职位管理相关的界面渲染', '192.168.11.1', 'N', '/positioneditView', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b3ca4803e52b4aab8da0a096ed6e8ef0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"9b2c5fb0ce084e61ab23986e14ea028d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"f3de286d1ba246ba87b0b6effc5ee8df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0550fc990c584242b2e18e7b7e5b79f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0068afab51f84d0291b66313ee6a8597\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350595, 'guns', 'guns$sys_config$delete', '删除系统参数配置', 'guns', 'SysConfigController', 'delete', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"27dd5e1b3159407aac502d7d0f560602\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5f46c11a05494e179578ad8a72d0d1e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"09cf95bc317d438295fd5a598d75269c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"187883848107475aa40b54517371fb55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1bf93af561304deeb00aac50dd517931\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6663118c0dc7488a8d07eb43873741a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"e8d19754800e494b827a62b319de74b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a04a53b886154c2ebff0b80d679334e7\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"acc74bb8e4db460295b012dd012771d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"639d35464d97466fa7e6d41d86e50f8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d0bd7aee7e7a46858fe17c01fab0f0ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2c118e35d04a42aaaa04ad92f33508b1\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350596, 'guns', 'guns$sys_config$edit', '编辑系统参数配置', 'guns', 'SysConfigController', 'edit', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"951464d568934442bfc712d6fbd38af6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d5ba8b3e8e604af199da5c8abc50b268\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e4a092dc15624437863b3c046ac64fe0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5a0d7195ef504ecdac9310df94fdeee0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3e0b08a42e7a420a8e45b429cc050d16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"84378ad103df452285f9d008f704eb33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"36e15bb38e2944a89e5555bb2af6809c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1972426f673944e690f3a1881c0a45eb\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"17cc9279b7284a6b887b26adda064761\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9713552721ba48788c3ed6ef5e323908\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"195af8502934412b880ea35823bd4108\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9ac4708c00214b3482efa5f42e9379a4\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350597, 'guns', 'guns$sys_config$page', '分页查询配置列表', 'guns', 'SysConfigController', 'page', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"bfbf727cc8d44864b5baa1af129cd385\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cab6926464bb42f88ad771cc65c58e18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"36f556366d404f29b3fb1c21ef6ceddd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9446457b741f4dd397d9cac5e1274291\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"30dfc2dc946e4a7dafbcb603694f7d48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e619f67f41a245fc9b9e8067afd37e3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"fe9df8c0ad17456b80975650e9549efd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d782858865c14ef3876006005d064ec3\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e44a89410b6c46b4a63585c5c9c1a962\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"09b6b538888a476ba2234c48de521b52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ead6df18d0e24b748f67e9d5f91a0f20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ed17dd64c15043c3a44831b20e83bc16\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384522350598, 'guns', 'guns$sys_config$detail', '查看系统参数配置', 'guns', 'SysConfigController', 'detail', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ea3dec64c328453f917d45b903245b92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7015208387164db59a7110fd232bedb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5908d6eb8b1e4906bd00ae629ca03be0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b399f19b694244348064171ebd21f877\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"7a063f817223426da8a506da1a39eea5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"df579ac840e04388aa5f9aee99258dc7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"f30cdeb750ff4f54ae4bc3e3212ac59f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"093a81d2e956479889de31ef40d9cabe\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2ed4c93371c54097bfb4fd83b703e7ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f97092f540964ce482e0342da7a2e388\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"acda2b0727674f0f9cc4b2332b782e6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0ef0dc6c814f4e4f9b2c1336e8a50f04\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384530739202, 'guns', 'guns$sys_config$add', '添加系统参数配置', 'guns', 'SysConfigController', 'add', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"75744040c95e4655ae38e54ebb58faff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3b281491f6e04b1d894f37ae09a6d181\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1e2fd56b843b458babe6e1f1414e5b6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"24ec18666fce4f0fba37efaeb303313e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"c46630fc99a343498aaa27453b1bfb6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6a7bde6bcd644b81ba210879bb34cebf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"4223ce01322643f591e808905df49107\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"29285d3280f2493c93e32a6dd4ca9c95\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"460c2111465f48f892129e319086d2e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4f4fb8a41b10415ca6703149a57e6d52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c708955bd4dc407db2ae1725980c7e8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a9ada2498bf04067bcaf39039c092397\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384530739203, 'guns', 'guns$sys_config$list', '系统参数配置列表', 'guns', 'SysConfigController', 'list', 'SysConfig', '参数配置控制器', '192.168.11.1', 'N', '/sysConfig/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"bded00d944314ab9bad2421105c8718a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8560ec4ea4ec4281ac819ac4ed390c8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"5fe07205d40246ae96d7b6110e870500\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"72e6d1862f7e4e12a1811bdec73d61ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5e8de26ccf79413598c49f68d5181f0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"add51e86233a48e98fa0ddfad4aee51f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a77d1474b59d4a5a8f6ebaf21c6f4ee0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3474590d8ab4463eb25ec851ecea755f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"483e49efc1d246229e43857296218a84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"bd7f0016e7624d458a40566eecc8a80b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a51a7307474841bbae77112e66445b2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"21a1b216dc09403bbd1de61dfad17a9c\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384530739204, 'guns', 'guns$dict$get_dict_list', '获取字典列表', 'guns', 'DictController', 'getDictList', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/getDictList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6712951a96d9428cafe9d5027b33649d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"58f097e145ee442c9774d5911bc6cf6c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"4544d158130d48a98428efdb550cade2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"47711aaadf674a19b471d7bfb8af3410\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"54ef9ae6a8004a01bd63b221eda47bed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"44a16ae55d6b4485ac7e840486f4fa9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dd863fa099a74cd381fa6c401bf51f36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"520469b02813468d81d11d55d3f0e085\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"2ed1a8ad9b16456484c3ab68b1fc6493\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"7a16d28535724b4aa9139cec73f3ff4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"720c61fb5bf3464fa0061b2193805339\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"667b8d7a378b4efcb4366ca3bf31727d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3a9f252bc42f4e1c9c9a910442fb90ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3d30bdf21fb04fa7ae7a300be5c7f902\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c1d0659dedfc42a1acbba20ae7ae8db6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f7673dbf6fdf4115b1dbb4703817038e\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384534933505, 'guns', 'guns$dict$get_dict_list_exclude_sub', '获取字典列表(排除下级)', 'guns', 'DictController', 'getDictListExcludeSub', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/getDictListExcludeSub', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"e18d79213a9c424899181e787ae80385\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"7de743ccbed94d46b9c27e6c71a8f88c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"5bfe0e7b3f0b4abb95c6f05193a5192d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"16f63db13aee4c5e8f8c6cfc189831c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"3b136e0d683841078c7638ba439f7ef7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"13ccfaac35304ff6abcd9157bf2092ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"288aa0e7a6e04adb849da6a7cca485bc\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5ea7bbe04de94cddb960a7a575ef21d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b1652847341843f7a383da6a7c35d708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0609519880b448b09bd61ac51a49bdd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"20d3eeeffd084fb2a7be92585e197527\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384534933506, 'guns', 'guns$dict$validate_code_available', 'code校验', 'guns', 'DictController', 'validateCodeAvailable', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/validateCodeAvailable', 'GET', 'Y', 'N', 'Set[\"validateAvailable\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"931b4b815d474dc8a03a77be99fdd606\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"19edef9d56f34468a9bcd3b48c981109\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"d360b9efdbf54145ad21fe33f1185e92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4fa63a6823d54e00a4f146d8ba73e79d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"c9b3554af7054027b4c759f7036b27af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"72cd74073ba84dd2bcb166a23aaa049b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4989546151a24ad380c33ae64797d016\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"43a76db1bb2144d69e29a10208d5e84e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"3a594cbea71440aba2bd00b405f595ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"572297d56c874f0297b1fcb772e369ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"06309a5b3da74f11b81a3d505c1f6f9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"cf63799b2f0845aa8dcdbe31ce66e904\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1209ed8d2969483081a26f53e0ff8694\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"540bb41e2add4c23bc24a6b97587e5bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6fd4d5b5f22742608d3af2d5987976f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"dfe6a94ba37f424fbf1737c8bd659108\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384534933507, 'guns', 'guns$dict$add_dict', '添加字典', 'guns', 'DictController', 'addDict', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/addDict', 'POST', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"c271f5db801c4533990a9e49aa396f91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"c3e8676f35514f538826242f5ae0dab4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"14ba59a50dab451ab39f838510e9fc76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"94ade62e29fa46cfa528e848860f44f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"0e4f980dcf9e4b2e95a65dd04e0da907\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e8f826fd6185406d83417524ef98d3e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e3dc7ca8812d4e689709063a022f87e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"f8f099358b2042258eeb5b76d2da3500\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"f864df6c01964121bbdeb6f079677ce0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"e4c79e7665c146e198752c0385e60be9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"4938bd1b8889437e8d93986c1d33affc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"adba80ebc9114971b13955bdd6178443\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f423c4f92f6d4de6912aa8a73edad7b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"005c80c561bb4f98ada7f5768a210987\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3ace918a6af940abb096302e107f23e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5c96ca6da6234c2d9e74b0812e524f5b\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384534933508, 'guns', 'guns$dict$get_dict_detail', '获取字典详情', 'guns', 'DictController', 'getDictDetail', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/getDictDetail', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"6e067d237a7e4b04a1609d0446f387fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"23c59360c7e44a49807ab26b434c2e32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"ba2668c10ec64e3cbae765a88efe6683\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"cb731834c81d40e390ebb5750000a9da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"b0ef30f23a634f56af3243e2ca91012a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"c114ea55867f486797aa84577a889802\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"509cb171b85d4fa98bf8a696108ac47f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a929b93f72b840d2a197c8410f980bfd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b86b7cdaad934a5fafb30b172df463ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a2d6d885c2c543629118131ea43b2b63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"302680ed875f4cc790575d1116316895\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384534933509, 'guns', 'guns$dict$update_dict', '修改字典', 'guns', 'DictController', 'updateDict', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/updateDict', 'POST', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"cd6b318465474fd7946ce51032b5f170\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"7b8eb4eb994c4579afeda668e4edb5a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"e7b0e53a7f1649e488366d4230fe0ed1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ebd9d84f25704d3abbcd17d0307917b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"0ee4fc566e7a42e7b5ffe24a9da075bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"51f178d63777463b8255a8610c8765c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"4ba59a1f09484903bdca8c0db6ce9c66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"224e6cbaaee3446cb954acf7049e6b19\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"004b706a656040d791adad1a472feb95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"52fa0bce685a4ba496aae89e85e35832\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"aa323752d75745e99b11c7da21cd2363\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"73ef0ede009546c6bcee609252462672\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"51b3f2eab33e4fc39e693bc241a66458\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2171451c29034ebb8416e56e945c8074\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6bca5c0e5e2a4cdc911e4e68b53b62ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"776598f3d4674a4294f4a64c970d0220\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384543322114, 'guns', 'guns$dict$delete_dict', '删除字典', 'guns', 'DictController', 'deleteDict', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/deleteDict', 'POST', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"e2805284fdd84402b965c74431477f61\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"113605c2c4564f929c910ea83656c0ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"d9ff4757c89548f68a2a84492fd38c68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"46c596bcf237405893e0a710de79dd84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5fee4017bb0a4f8993401b434e21d0f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"62074439176c4d3b89c7d7a14fe33548\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"2ec7daf5de9e4f76a3401b06b6064859\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"bf53d4b61ec34793a4377b60fbb01e07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"ae131bfe54834334a5ef5282699113ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"028105582eb14727bd07694e2c1cb7bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"85a7710c998a490186e5a272825d7b2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"f098e4234d414d84ae05d0ce2f062f0e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"29934af1758a44a9844bbdce4b04ea3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f7df371a8211477c9e74d27e8efc010d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"301630ed357f4704a5ac8cdf8f71a7af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c00c8d9770c04be59a186fbe0d984a03\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384543322115, 'guns', 'guns$dict$get_dict_list_page', '获取字典列表', 'guns', 'DictController', 'getDictListPage', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/getDictListPage', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"fedf7eb6aa744e62ae27fb4d374111cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8b104ef6f319439189271c494fc388b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"1bdd05a1dc7741838038f8f6ed9cd47d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4059f3bb061c484a8e3b72fbe40bc387\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"d4cd0c176c8a4e0cae81a114ca23ae33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"5ba71cf968aa45d2b318c7bdb69e0ab9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"d25ba13432ad4587875936e438f0b772\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"18362c442d6c4dc69419992603e74503\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"ae5a1214c6ac4cd199216d6ad8986d99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"052bc4cb54514bf3a22162da61234b53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"353ca0f4667144ec859d4b31c27ca7f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"ad6668e7bff142c697dabe5cc93877c1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"46df538f36f34d5a9f1add1eae4ba5af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"44d46c632d4046b4b626805f5c728a8c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b7d622fd55324867aefda5e69fe8ebff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e4f031b26dd646089df2cc6f1d364a26\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384547516417, 'guns', 'guns$dict$update_dict_status', '更新字典状态', 'guns', 'DictController', 'updateDictStatus', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/updateDictStatus', 'POST', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a16685bf564a4889806f9fa6c3ffc5bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d871c8eeada24c2794ef5a6588398034\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"3a7b2c0cde5f47e8b0eb79b77a19eff2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"e20a7c571c1149b1bfc472dd6d3b0231\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"138d5e69ca5e430dbd13d8fc0f595f28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"bfe23b47118844efacf52a370db145cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"5d6337ebac73439aad238973761d056b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ea9d6a80d2984bc28331c6cdd469fd4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"c7036a865d2c45eda96b24a54f55c4cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"9ae2538af2d647ee805ac9354a8397b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"a0981b8404874e5eaa7d7d2da5e2bc64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"2be8b7d46e8c49faaece59694e4ba5be\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"896939b4425545c0b1d5cedeb5192492\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4387fb28758a4e7c88c3100357f10951\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9b3f05cd1b5d46e68eac2fc31586f1f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6e3301c07b2947148b712331dd6a6d31\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384547516418, 'guns', 'guns$dict$get_dict_tree_list', '获取树形字典列表', 'guns', 'DictController', 'getDictTreeList', 'Dict', '字典详情管理', '192.168.11.1', 'N', '/dict/getDictTreeList', 'GET', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"d8b0f79fb82347eea29770122a44c7c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"e549e7a7349a4e729ee835341b604a92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"0929853f5ff14dd49938e006700fb437\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"f9b9cffeb6d542b88560364cbfe9ef04\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"d336b5f955e447ae9dd2c787aa4f4d02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"916af684bbd54990ba57cec316ba1e99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"4b8f877e08a349a99dcc1ce4b0d52b3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"cf17445550354eb6803b5d1ca0332de3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"6eb78032370440ff8d60e5dcb3e2ce58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"a1e3f2bd00bc4dd283c264bf6560d8de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9e2c395521b840118c6e0123ff7231b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"d4f14aa5bf3942db83c528436eeba618\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3227305635a1473a9bbdfa8fb6890758\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"119014c202dc4b0e971003e28069dd2f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"60dcde7fd72f4e93a3e5172607323407\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"aa40e6f974fd492db2d2bf93c3cab194\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384547516419, 'guns', 'guns$error_view$error_page_info', '跳转到session超时页面', 'guns', 'ErrorViewController', 'errorPageInfo', 'ErrorView', '错误页面的跳转', '192.168.11.1', 'N', '/view/global/sessionError', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"149a0f50466c4f4fa816c0e79859b1ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c0b40b074c3f428f87ff995dec41bc91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4b00a59461fb453db83aa17d0717bd5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ddb42aa914d7482ebfe2884a78406816\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"aa2581e4aa0c44caabbd2ee96a385780\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384551710721, 'guns', 'guns$index_view$lock', '锁屏界面', 'guns', 'IndexViewController', 'lock', 'IndexView', '首页相关的界面渲染', '192.168.11.1', 'N', '/view/lock', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"41dd853000d74747982d2f0eed9af8fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"5aa7ddad95364ff5a51d0a902349d60b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"872aede88cc54610ab1cce96ca29af2a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"f2764e69832c45388a26707bf910ecfc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"1e1a4bc63dda47d9b8b2d82670361176\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384551710722, 'guns', 'guns$index_view$personal', '个人中心界面', 'guns', 'IndexViewController', 'personal', 'IndexView', '首页相关的界面渲染', '192.168.11.1', 'N', '/view/personal', 'GET', 'N', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ac0567f96aaf4cfd921838e5e96d8470\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"4fe18d576cd740a89753c91b14009f44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"4fcab873cdd14df5a20b2bd1502f8684\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"9a812241bc3f49a09886528b035f4999\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b1640a2bee2e40c080c4d0c01540f81a\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384551710723, 'guns', 'guns$index_view$theme', '主题切换界面', 'guns', 'IndexViewController', 'theme', 'IndexView', '首页相关的界面渲染', '192.168.11.1', 'N', '/view/theme', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"6a2817cdfaea4c30acddeb7ed36ed92b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"025b240aa08947979c0b8540e25d076b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"54d2c25dd21f482182934b205bd9f54e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"136a4b663ee8454d93b362979fcd48ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0dab60b12604413ab4857758cbd401fc\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384551710724, 'guns', 'guns$index_view$change_password', '修改密码界面', 'guns', 'IndexViewController', 'changePassword', 'IndexView', '首页相关的界面渲染', '192.168.11.1', 'N', '/view/changePassword', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"85bc0b4c8e42426f8450df0d12718314\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ca4bc6b2b8df49c39dbe41d214bd265c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b17e2b0b87954b41af614822e5f0d550\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"b3d9bbba6ec94690b54a5f02e9ded5ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"eb57c6435c614f8fb51b8be1968814d3\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384564293633, 'guns', 'guns$index_view$index_view', '首页界面', 'guns', 'IndexViewController', 'indexView', 'IndexView', '首页相关的界面渲染', '192.168.11.1', 'Y', '/', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"3c13c28e5bc84447b5228bad88096354\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"549a9f46486e4edf97f3812cce21571f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"9b8d6bd90492416cae312d544009b852\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c54ed647034149799cb3efb6b69bb1f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"aac191b2f4c845a69c24c00c08a0ecb9\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384564293634, 'guns', 'guns$common_view$common_tree_select', '通用的树列表选择器', 'guns', 'CommonViewController', 'commonTreeSelect', 'CommonView', '通用界面', '192.168.11.1', 'N', '/view/common/tree', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"treeUrl\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"cf768f7cae434f839b669ac88893c137\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"formId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"86b71e7ae5b04e13806491b4f17a2c07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"formName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"d7b56f959932419794be5f97bf5c7d33\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"8f8dd797904644b88ffb57758b1e090b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4b30b88fc8af4813ae75ae3dd701e478\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"f4051b127e0a44238fe9cad85cafd161\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"2bc73ca3bafa4501bbdc15113c5e6c45\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"9f393c83d9f74fd49f4b2bfcd1fc49ae\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384564293635, 'guns', 'guns$app_view$app_add', '新增应用界面', 'guns', 'AppViewController', 'appAdd', 'AppView', '应用管理界面', '192.168.11.1', 'N', '/view/app/add', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"d457b83316914a4eb9f9b9799fa43faf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"8353b715ef154b72b03fd9a38868683a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"a641155b242e4d61b695dea0d8fc4e3b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"2cae52e6303f4e16a2a7471c5aa5cd30\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"9b5d3e0b8b5e45dd9f9a2178d0a888a6\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384564293636, 'guns', 'guns$app_view$app_edit', '编辑应用界面', 'guns', 'AppViewController', 'appEdit', 'AppView', '应用管理界面', '192.168.11.1', 'N', '/view/app/edit', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"5419f514381c47318dd88a33329bcbe1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"3c6b2e8f3b5344b3bbe6a7a0c0749095\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"55d3fae23f4e469b9069b93e3f8307e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"e2501c0e8c274f9b826e1e89ab6f6e06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"db3796388d524dc79ea17a1cf815f1d6\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347530384564293637, 'guns', 'guns$app_view$app_index', '应用管理首页', 'guns', 'AppViewController', 'appIndex', 'AppView', '应用管理界面', '192.168.11.1', 'N', '/view/app', 'GET', 'Y', 'Y', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7493a5812dde43239c3fe76edaecdc86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"9059e26669124733819c6aa358bf27fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"d3f95f5ed90d4d2e893df566f1ee1380\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b40bd0fee5d24353b4ac9c32e567ddd0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"06d76f0f8b64415e9f968e0e0610fce5\"}]', -1, '2021-01-08 21:07:34', NULL, NULL);
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_role`;
CREATE TABLE `sys_role` (
`role_id` bigint(20) NOT NULL COMMENT '主键id',
`role_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称',
`role_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色编码',
`role_sort` decimal(10, 2) NOT NULL COMMENT '序号',
`data_scope_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '数据范围类型10-仅本人数据20-本部门数据30-本部门及以下数据40-指定部门数据50-全部数据',
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态1-启用2-禁用',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role
-- ----------------------------
INSERT INTO `sys_role` VALUES (1339550467939639303, '超级管理员', 'superAdmin', 1.00, 50, 1, '备注', 'N', '2020-12-17 20:41:25', -1, '2020-12-17 20:41:30', -1);
INSERT INTO `sys_role` VALUES (1339550467939639304, '普通人员', 'normal', 2.00, 10, 1, NULL, 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_role_data_scope
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_data_scope`;
CREATE TABLE `sys_role_data_scope` (
`role_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`organization_id` bigint(20) NOT NULL COMMENT '机构id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_data_scope_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色数据范围' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_role_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_menu`;
CREATE TABLE `sys_role_menu` (
`role_menu_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`menu_id` bigint(20) NOT NULL COMMENT '菜单id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role_menu
-- ----------------------------
INSERT INTO `sys_role_menu` VALUES (1339550467939639301, 1339550467939639303, 1339550467939639301, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639302, 1339550467939639303, 1339550467939639302, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639303, 1339550467939639303, 1339550467939639303, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639304, 1339550467939639303, 1339550467939639304, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639305, 1339550467939639303, 1339550467939639305, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639306, 1339550467939639303, 1339550467939639306, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639307, 1339550467939639303, 1339550467939639307, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639308, 1339550467939639303, 1339550467939639308, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639309, 1339550467939639303, 1339550467939639309, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639310, 1339550467939639303, 1339550467939639310, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639311, 1339550467939639303, 1339550467939639311, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639312, 1339550467939639303, 1339550467939639312, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639313, 1339550467939639303, 1339550467939639313, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639314, 1339550467939639303, 1339550467939639314, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639315, 1339550467939639303, 1339550467939639315, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639316, 1339550467939639303, 1339550467939639316, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639317, 1339550467939639303, 1339550467939639317, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639318, 1339550467939639303, 1339550467939639318, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639319, 1339550467939639303, 1339550467939639319, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639320, 1339550467939639303, 1339550467939639320, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639321, 1339550467939639303, 1339550467939639321, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639322, 1339550467939639303, 1339550467939639322, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639323, 1339550467939639303, 1339550467939639323, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639324, 1339550467939639303, 1339550467939639324, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639325, 1339550467939639303, 1339550467939639325, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639326, 1339550467939639303, 1339550467939639326, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639327, 1339550467939639303, 1339550467939639327, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639328, 1339550467939639303, 1339550467939639328, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639329, 1339550467939639303, 1339550467939639329, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639330, 1339550467939639303, 1339550467939639330, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639331, 1339550467939639303, 1339550467939639331, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639332, 1339550467939639303, 1339550467939639332, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639333, 1339550467939639303, 1339550467939639333, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639334, 1339550467939639304, 1339550467939639301, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639335, 1339550467939639304, 1339550467939639302, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_menu` VALUES (1339550467939639336, 1339550467939639304, 1339550467939639303, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_role_menu_button
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_menu_button`;
CREATE TABLE `sys_role_menu_button` (
`role_button_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`button_id` bigint(20) NOT NULL COMMENT '按钮id',
`button_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '按钮编码',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_button_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色按钮关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_role_resource
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_resource`;
CREATE TABLE `sys_role_resource` (
`role_resource_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`resource_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_resource_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色资源关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role_resource
-- ----------------------------
INSERT INTO `sys_role_resource` VALUES (1347530385273131010, 1339550467939639303, 'guns$dict_type$get_dict_type_page_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385281519618, 1339550467939639303, 'guns$dict_type$delete_dict_type', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385281519619, 1339550467939639303, 'guns$dict_type$update_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385281519620, 1339550467939639303, 'guns$dict_type$validate_code_available', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385281519621, 1339550467939639303, 'guns$dict_type$get_dict_type_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713921, 1339550467939639303, 'guns$dict_type$update_dict_type', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713922, 1339550467939639303, 'guns$dict_type$add_dict_type', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713923, 1339550467939639303, 'guns$hr_organization$update_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713924, 1339550467939639303, 'guns$hr_organization$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713925, 1339550467939639303, 'guns$hr_organization$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713926, 1339550467939639303, 'guns$hr_organization$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713927, 1339550467939639303, 'guns$hr_organization$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713928, 1339550467939639303, 'guns$hr_organization$tree', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713929, 1339550467939639303, 'guns$hr_organization$tree_layui', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713930, 1339550467939639303, 'guns$hr_organization$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713931, 1339550467939639303, 'guns$hr_organization$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713932, 1339550467939639303, 'guns$menu_view$menu_add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713933, 1339550467939639303, 'guns$menu_view$menu_edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713934, 1339550467939639303, 'guns$menu_view$menu_index', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713935, 1339550467939639303, 'guns$resource$page_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713936, 1339550467939639303, 'guns$resource$get_menu_resource_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385285713937, 1339550467939639303, 'guns$resource$get_tree', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102530, 1339550467939639303, 'guns$resource$get_resource_detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102531, 1339550467939639303, 'guns$dashboard_view$platform', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102532, 1339550467939639303, 'guns$dashboard_view$analyse', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102533, 1339550467939639303, 'guns$role_view$role_index', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102534, 1339550467939639303, 'guns$role_view$role_edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102535, 1339550467939639303, 'guns$role_view$role_add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102536, 1339550467939639303, 'guns$log_manager$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102537, 1339550467939639303, 'guns$log_manager$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102538, 1339550467939639303, 'guns$sys_app$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385294102539, 1339550467939639303, 'guns$sys_app$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296834, 1339550467939639303, 'guns$sys_app$set_as_default', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296835, 1339550467939639303, 'guns$sys_app$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296836, 1339550467939639303, 'guns$sys_app$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296837, 1339550467939639303, 'guns$sys_app$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296838, 1339550467939639303, 'guns$sys_app$update_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296839, 1339550467939639303, 'guns$sys_app$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296840, 1339550467939639303, 'guns$sys_file_info$private_preview', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296841, 1339550467939639303, 'guns$sys_file_info$public_preview', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296842, 1339550467939639303, 'guns$sys_file_info$public_packaging_download', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296843, 1339550467939639303, 'guns$sys_file_info$private_packaging_download', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385298296844, 1339550467939639303, 'guns$sys_file_info$version_back', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491137, 1339550467939639303, 'guns$sys_file_info$file_info_list_page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491138, 1339550467939639303, 'guns$sys_file_info$preview_by_bucket_name_object_name', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491139, 1339550467939639303, 'guns$sys_file_info$confirm_replace_file', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491140, 1339550467939639303, 'guns$sys_file_info$get_file_info_list_by_file_ids', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491141, 1339550467939639303, 'guns$sys_file_info$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491142, 1339550467939639303, 'guns$sys_file_info$update', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491143, 1339550467939639303, 'guns$sys_file_info$private_download', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491144, 1339550467939639303, 'guns$sys_file_info$upload', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491145, 1339550467939639303, 'guns$sys_file_info$public_download', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491146, 1339550467939639303, 'guns$sys_file_info$delete_really', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491147, 1339550467939639303, 'guns$hr_position$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491148, 1339550467939639303, 'guns$hr_position$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491149, 1339550467939639303, 'guns$hr_position$update_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491150, 1339550467939639303, 'guns$hr_position$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491151, 1339550467939639303, 'guns$hr_position$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491152, 1339550467939639303, 'guns$hr_position$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491153, 1339550467939639303, 'guns$hr_position$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491154, 1339550467939639303, 'guns$login_view$login_action', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385302491155, 1339550467939639303, 'guns$login_view$logout_page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879745, 1339550467939639303, 'guns$login_view$login', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879746, 1339550467939639303, 'guns$config_view$index_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879747, 1339550467939639303, 'guns$config_view$edit_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879748, 1339550467939639303, 'guns$config_view$add_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879749, 1339550467939639303, 'guns$sys_role$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879750, 1339550467939639303, 'guns$sys_role$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879751, 1339550467939639303, 'guns$sys_role$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879752, 1339550467939639303, 'guns$sys_role$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879753, 1339550467939639303, 'guns$sys_role$grant_resource', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879754, 1339550467939639303, 'guns$sys_role$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879755, 1339550467939639303, 'guns$sys_role$grant_data', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385310879756, 1339550467939639303, 'guns$sys_role$get_role_data_scope', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074050, 1339550467939639303, 'guns$sys_role$drop_down', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074051, 1339550467939639303, 'guns$sys_role$get_role_menus', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074052, 1339550467939639303, 'guns$organization_view$index_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074053, 1339550467939639303, 'guns$organization_view$add_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074054, 1339550467939639303, 'guns$organization_view$edit_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074055, 1339550467939639303, 'guns$sys_menu$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074056, 1339550467939639303, 'guns$sys_menu$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074057, 1339550467939639303, 'guns$sys_menu$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074058, 1339550467939639303, 'guns$sys_menu$layui_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074059, 1339550467939639303, 'guns$sys_menu$layui_select_parent_menu_tree_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074060, 1339550467939639303, 'guns$sys_menu$tree_for_grant', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074061, 1339550467939639303, 'guns$sys_menu$get_app_menus', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074062, 1339550467939639303, 'guns$sys_menu$tree', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074063, 1339550467939639303, 'guns$sys_menu$get_system_all_menus_antdv', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074064, 1339550467939639303, 'guns$sys_menu$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074065, 1339550467939639303, 'guns$sys_menu$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074066, 1339550467939639303, 'guns$sys_user$grant_role', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074067, 1339550467939639303, 'guns$sys_user$update_avatar', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074068, 1339550467939639303, 'guns$sys_user$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074069, 1339550467939639303, 'guns$sys_user$selector', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385315074070, 1339550467939639303, 'guns$sys_user$own_data', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462657, 1339550467939639303, 'guns$sys_user$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462658, 1339550467939639303, 'guns$sys_user$change_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462659, 1339550467939639303, 'guns$sys_user$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462660, 1339550467939639303, 'guns$sys_user$grant_data', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462661, 1339550467939639303, 'guns$sys_user$reset_pwd', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385323462662, 1339550467939639303, 'guns$sys_user$current_user_info', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656961, 1339550467939639303, 'guns$sys_user$online_user_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656962, 1339550467939639303, 'guns$sys_user$update_pwd', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656963, 1339550467939639303, 'guns$sys_user$export', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656964, 1339550467939639303, 'guns$sys_user$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656965, 1339550467939639303, 'guns$sys_user$update_info', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656966, 1339550467939639303, 'guns$sys_user$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385327656967, 1339550467939639303, 'guns$sys_user$own_role', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851265, 1339550467939639303, 'guns$position_view$add_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851266, 1339550467939639303, 'guns$position_view$index_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851267, 1339550467939639303, 'guns$position_view$edit_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851268, 1339550467939639303, 'guns$sys_config$delete', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851269, 1339550467939639303, 'guns$sys_config$edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851270, 1339550467939639303, 'guns$sys_config$page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851271, 1339550467939639303, 'guns$sys_config$detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851272, 1339550467939639303, 'guns$sys_config$add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851273, 1339550467939639303, 'guns$sys_config$list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851274, 1339550467939639303, 'guns$dict$get_dict_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851275, 1339550467939639303, 'guns$dict$get_dict_list_exclude_sub', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851276, 1339550467939639303, 'guns$dict$validate_code_available', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851277, 1339550467939639303, 'guns$dict$add_dict', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851278, 1339550467939639303, 'guns$dict$get_dict_detail', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851279, 1339550467939639303, 'guns$dict$update_dict', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851280, 1339550467939639303, 'guns$dict$delete_dict', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851281, 1339550467939639303, 'guns$dict$get_dict_list_page', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851282, 1339550467939639303, 'guns$dict$update_dict_status', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851283, 1339550467939639303, 'guns$dict$get_dict_tree_list', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385331851284, 1339550467939639303, 'guns$error_view$error_page_info', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239874, 1339550467939639303, 'guns$index_view$lock', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239875, 1339550467939639303, 'guns$index_view$personal', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239876, 1339550467939639303, 'guns$index_view$theme', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239877, 1339550467939639303, 'guns$index_view$change_password', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239878, 1339550467939639303, 'guns$index_view$index_view', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239879, 1339550467939639303, 'guns$common_view$common_tree_select', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239880, 1339550467939639303, 'guns$app_view$app_add', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239881, 1339550467939639303, 'guns$app_view$app_edit', '2021-01-08 21:07:34', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347530385340239882, 1339550467939639303, 'guns$app_view$app_index', '2021-01-08 21:07:34', -1, NULL, NULL);
-- ----------------------------
-- Table structure for sys_sms
-- ----------------------------
DROP TABLE IF EXISTS `sys_sms`;
CREATE TABLE `sys_sms` (
`sms_id` bigint(20) NOT NULL COMMENT '主键',
`phone_number` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '手机号',
`validate_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信验证码',
`template_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信模板编号',
`biz_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '业务id',
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '发送状态1-未发送2-发送成功3-发送失败4-失效',
`source` int(11) NULL DEFAULT NULL COMMENT '来源1-app2-pc3-其他',
`invalid_time` datetime(0) NULL DEFAULT NULL COMMENT '短信失效截止时间',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`sms_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '短信发送记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_timers
-- ----------------------------
DROP TABLE IF EXISTS `sys_timers`;
CREATE TABLE `sys_timers` (
`timer_id` bigint(20) NOT NULL COMMENT '定时器id',
`timer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务名称',
`action_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '执行任务的class的类名实现了TimerAction接口的类的全称',
`cron` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '定时任务表达式',
`job_status` int(11) NULL DEFAULT NULL COMMENT '状态1-运行2-停止',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注信息',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`timer_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`user_id` bigint(20) NOT NULL COMMENT '主键',
`real_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '姓名',
`nick_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
`account` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号',
`password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码加密方式为BCrypt',
`avatar` bigint(20) NULL DEFAULT NULL COMMENT '头像存的为文件id',
`birthday` date NULL DEFAULT NULL COMMENT '生日',
`sex` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '性别M-男F-女',
`email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机',
`tel` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电话',
`super_admin_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否是超级管理员Y-是N-否',
`status_flag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态1-正常2-冻结',
`last_login_ip` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '最后登陆IP',
`last_login_time` datetime(0) NULL DEFAULT NULL COMMENT '最后登陆时间',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '删除标记Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user
-- ----------------------------
INSERT INTO `sys_user` VALUES (1339550467939639299, '周星驰', '星爷', 'admin', '$2a$10$N/mL91CVAlcuZmW8/m4Fb..BSsimGqhfwpHtIGH3h8NYI41rXhhIq', 10000, '2020-12-01', 'M', 'sn93@qq.com', '18200000000', '123456', 'Y', 1, '127.0.0.1', '2021-01-08 21:07:40', 'N', '2020-12-17 20:40:31', -1, '2021-01-08 21:07:40', -1);
-- ----------------------------
-- Table structure for sys_user_data_scope
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_data_scope`;
CREATE TABLE `sys_user_data_scope` (
`user_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`org_id` bigint(20) NOT NULL COMMENT '机构id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`user_data_scope_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户数据范围' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_user_org
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_org`;
CREATE TABLE `sys_user_org` (
`user_org_id` bigint(20) NOT NULL COMMENT '企业员工主键id',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`org_id` bigint(20) NOT NULL COMMENT '所属机构id',
`position_id` bigint(20) NOT NULL COMMENT '职位id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '添加时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '添加人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`user_org_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户组织机构关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user_org
-- ----------------------------
INSERT INTO `sys_user_org` VALUES (1339554696976781405, 1339550467939639299, 1339554696976781407, 1339554696976781332, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_user_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_role`;
CREATE TABLE `sys_user_role` (
`user_role_id` bigint(20) NOT NULL COMMENT '主键',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`user_role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户角色关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user_role
-- ----------------------------
INSERT INTO `sys_user_role` VALUES (1339554696976781379, 1339550467939639299, 1339550467939639303, '2020-12-17 20:57:31', NULL, NULL, NULL);
SET FOREIGN_KEY_CHECKS = 1;