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

845 lines
489 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 15:42:57
*/
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, '2020-09-17 09:11:21', 1265476890672672808);
INSERT INTO `sys_app` VALUES (1265476890672672823, '业务应用', 'business', 'N', 1, 'N', '2020-03-26 08:40:33', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
-- ----------------------------
-- 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, NULL, 'layui-icon-login-weibo', 'dashboard', 'dashboard', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639302, 1339550467939639301, '[-1],[1339550467939639301],', '工作台', 'board_platform', 'system', 'Y', 10.10, 1, NULL, '/view/dashboard/workplace', 'layui-icon layui-icon-set', 'workplace', 'shop', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', 1339550467939639299, NULL, NULL);
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, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639304, -1, '[-1],', '组织架构', 'org', 'system', 'Y', 20.00, 1, NULL, NULL, NULL, 'orginfo', 'apartment', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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, NULL, NULL, 'authority', 'build', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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, NULL, NULL);
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, NULL, NULL);
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, NULL, NULL);
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, NULL, NULL);
INSERT INTO `sys_menu` VALUES (1339550467939639313, -1, '[-1],', '基础数据', 'base', 'system', 'Y', 40.00, 1, NULL, NULL, NULL, 'base', 'coffee', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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, NULL, NULL, 'system', 'thunderbolt', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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, NULL, NULL, 'notice', 'bell', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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, NULL, NULL, 'monitor', 'monitor', NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
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_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 (1347370556613316609, '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[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"d51f4651518b482aa9b781efd9b9e81c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"56d8fd5df890401989af78da8c39812d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"1cfd1ea62f6e4313a72758d0c0264db9\"},{\"@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\":\"b4f9eaee3083416488fb42dcaf3735bf\"},{\"@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\":\"4b003dd9cf2d4f018e17cf71bea2929a\"},{\"@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\":\"be6c7f8c98fc41e5915467a6f30d6cb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"502d0a02f76241a69b2db5e0088ff179\"},{\"@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\":\"d5e4acb500d347739de947f2db2e192a\"},{\"@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\":\"e19d139cdeea445ea36fc4fcbf2d8b9c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a500aa2a91de44b095b0b1a1fbd94945\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a550c73af92a48938e008a50596874df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c8acb175e4384ad7aae1eced757e1ea7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9b90276b893f4f00a7a0488291c0f077\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556667842562, '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\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4746f38977bd460fa1a24dad218e7572\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"adebe9ebd0034af98be86f3d57abc5be\"},{\"@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\":\"4845296a4f8b403fba7b5fa8f791839b\"},{\"@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\":\"bec4f65d24034e0cb6d0f8cb22a18ecc\"},{\"@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\":\"a88e24441cbf48fc8f546dac42d510df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"131d9912efc94cc3affa537c8c265e75\"},{\"@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\":\"2dcaae9c7cf345b895c23c47194a3350\"},{\"@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\":\"cf90d237ce8640cf93441db13c749183\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"61f9c98bf0084db8bf6dc863ba7da5e4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"31b0ac9b609642f59d3371707b3ca392\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"47d6f7180be94a708dc90439961c6bd5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"74823579e73c41b18685005684aa2910\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8a3b413c89514e389ee10438eade1bb9\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556676231169, '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\":\"0f34cc9ec7384d80addc960eb518d0ec\"},{\"@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\":\"546eb5d3b8ff43fa92a11d1cdeedc22e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"0efb40b7522543f0a24016d336f65232\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"24c3cbb161b4400889519c9db77e7348\"},{\"@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\":\"46c2a67e817f4c129746a4dcceb0f9e3\"},{\"@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\":\"d40d6e0014d243139f44b500079954be\"},{\"@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\":\"33d251167f1640a98b04668f4ea4130b\"},{\"@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\":\"4cdf7263b15746abb5d10e9add8378eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"7652b558f0964d5fb506c20c6f22e726\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"41d9cf90b57541e281421e5340af8c0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a6db320c2f024edc9962ef0b37ed5b55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2ef23db8be9f44549f8b95fb3be19f38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2564dc4e8a3c4030806358772057744a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556684619778, '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\":\"8ad2b26442804389a12f614e634f3390\"},{\"@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\":\"df09056b4c0c42f9aebec18275843ab1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"77d9ca04dad94ad1b158f1665d0536f0\"},{\"@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\":\"fda57523c1c443a181c3f860bcfbd233\"},{\"@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\":\"726f3250903848ba9547efafcf841fd4\"},{\"@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\":\"6de59b0dc961493bb5c94ac13e9b4abc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"226bb1bd400943739385e24a301b2150\"},{\"@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\":\"4a61893482bd456f8c66d10f5df0282b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"38ab883c6bd247849db4be54cb0cf014\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d4e186bb1f4540fda38afb1246e88ff4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"35439a158141498aa46a8e95eded8eff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"80bd5fdf752a4787ada655c65af7209b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"99985966b3b94daa96fac4ad583c6256\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556688814082, '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\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"76a4216561f04ec29b17ddd512a9b9e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"5a995e00c3854ea9936d31a12efd0d45\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"a14e9890d9574cf4992d419c0e9d4537\"},{\"@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\":\"af52a6c64f0b4f40a7ccb8ac064c754a\"},{\"@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\":\"7dce9c08af3d47238db44e994699018c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"34a20325b20f41f59c2aa6fa96c4237e\"},{\"@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\":\"ef5cdf26b53d4d8ea57102908dcd8c42\"},{\"@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\":\"fd620a34a39a400f943ba81a3d3a32fb\"},{\"@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\":\"c482f4ec707c4321be0a744e2b8c4d27\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8932d998880f4cef8a119483d1f6eb3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f11c0ea25e604f14a0e06b19cfd4b191\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4bec72453ae6451e80ad8a2c64d7dcd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"47176246889c428687d96921240949ec\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556701396993, '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\":\"f80c4f1f17ce47dfacfaa4caed4a7a53\"},{\"@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\":\"6382a136fee94f6c8a8f92d45bd0e92d\"},{\"@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\":\"3ebdb54664d744529a637cc92af5ab77\"},{\"@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\":\"432c4da57488486082bad0322ddee445\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"ec6bc8c7f25140b584891c00ffe75d1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"a0fa50783e0c4b15b898637e969a17c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"ca27e624f8ef4a9d8bd34ad34a1d527d\"},{\"@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\":\"126197a13da1456abecb34513ec385b9\"},{\"@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\":\"9b3fe03d456a491cbbdb4a08f9872f58\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d016b227169b4db59ca3b80829021ecb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"bd6e813a0a364b51a5c2f131a67ab306\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d026120648124f959143a569ecbf12fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"829d9dab48234096970b237c171cbbc0\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556701396994, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"97d6a1fe222c4eb48425be8e750544a6\"},{\"@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\":\"ff6da5fe151f470db6e8e7919a757a62\"},{\"@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\":\"8008f7ea75e94755bfce3d4426bebda5\"},{\"@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\":\"090c4bc30e9e4abaa7a5db4a5686f1b5\"},{\"@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\":\"58cdabe370f14c4d867e0ea7b9d340f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"dcbd0f3a789e4488bba76234c1897579\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"129ccf4f421f47c2932f62a0a3b321ea\"},{\"@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\":\"e7b818639ea04a72968f7a650d133320\"},{\"@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\":\"e8cd857d8ef741018614a05dde77ef3b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6bb9a09f0ea84875a6a545f92e6c4c8c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"57556706b92a4a83be540f071585a68b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9742ca8fe011484a91a058ce2b202cfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5ab6e4830464499382bfd04631c37ca2\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556709785602, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"671b5c81bc2d4083a5f93029f717ae84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"0ae29206e65943178e85e62d0a4c0b66\"},{\"@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\":\"6c93a0f62b734e3d8b64697a64478eb8\"},{\"@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\":\"2833ae31b02c41ecafdac13192c968f1\"},{\"@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\":\"2ff7d0e621d04ca8b5a0429f71efd164\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"37faebff520f42e2a15bda1c925b695f\"},{\"@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\":\"c599e6c2fe4543bd89aefb0847b04ef2\"},{\"@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\":\"aa0d31443eea4a73953b8b62977f4a94\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"30afd20806d5490e90eccba6558a5181\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"887e3cabff2741ccbf222bcd02bbf1b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9517ecd449734bf19994db16d166af0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2784c3b98c3a41a9b50159d71168c287\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556713979905, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"5d963c9c8bf0435bbf3ca1cdb45d4f19\"},{\"@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\":\"88847c9496ec4a288f1dab13197e7f2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"0e7a47ba57bc4eb9a989e7a9c14d0013\"},{\"@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\":\"2d216f7d2e3243da85129acd7179c0a5\"},{\"@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\":\"11daf0cd6efe4a3c986d1d7f5721c514\"},{\"@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\":\"4b3846cd6490431b961fcdd116b99ad4\"},{\"@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\":\"55a435522845446486c10e214992f2bc\"},{\"@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\":\"fdf8d5e80a2f4a1c8f20f874dd6c929b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f9e9521fa1a24bc080a0146c18600c13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f07875934b5649db8b8432c12e5df349\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"378b4547d92d4550a7e79847995ae36d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a1062194b9674788828475f66a9f39c3\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556718174210, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a92b4f0826964d78898fda1a169c273d\"},{\"@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\":\"47764e1f60734e40a5b119092dfcc172\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"e1155614230a4ae093aa8d2ece488340\"},{\"@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\":\"1ca0f0a377e94eb183422974f9cf1374\"},{\"@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\":\"e44ed9360b9c45679bd37d36b10bb11b\"},{\"@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\":\"216db75974a54bb89c2e86c9cda7b752\"},{\"@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\":\"749cab23541e411b847be4abba76be57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"da44bb343f0b4b39b4fa1e8bb0519047\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b188bcbba6454686b2b31dea5bdd1e24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0bde7dfd5c9d4200a94ecd80dbbe6cf3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f971918220b8443f93e1a8f6bff83f1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"dfae2abfb76e433cb90a7eece03b2a35\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556722368513, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"27332278b68c4577b22825a90a7b57a4\"},{\"@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\":\"edee9353e1f24be294dd13f28c4a94ca\"},{\"@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\":\"2b24e60562b644119ed7ec073438d4df\"},{\"@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\":\"632ce5d5d29f44f88ce87888fa198a13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"5817224e7910410fb1917e7ee4a758fe\"},{\"@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\":\"68f917c47b9f45ffae74b85bf01fad74\"},{\"@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\":\"c7be7e36da864fa3b1ddef77265da1ab\"},{\"@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\":\"2d8652553ee848cca3da34f6978158da\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8ab97da5c92441aab6a79bf6cdbc8f5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"83f2b687b8334ad99cc28be886981708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2797d3aa1c0e4c93afd8de3a3406554f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"08e2341eb25843ba8b288e0665a20b5a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556722368514, '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\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6f965ce95fea4a549e764eda151fe089\"},{\"@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\":\"1c77802b4aa94d818a748370ad61c5d4\"},{\"@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\":\"bb1c0525e2904ee1aa82250bc16de058\"},{\"@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\":\"bd1c5092c4434ab59a6f2fa45448efa5\"},{\"@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\":\"af4b0ae273674a0bb6b05a1816538137\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"3975c21405aa4f73b5ae3b1f48978337\"},{\"@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\":\"bf0508f2d8264aafb1e5e20222def609\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"8c582b074d9f43009b404c7edefbf3a2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9b44ef9bbed941c89647bf770027c880\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"59492bcd982b40269eeaa94b5869e96e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4a49082b749848878278a7b2aedab720\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"827ac0c9e6634bf4958771cf8c0ef16b\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556730757121, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6bb571c2c15e487cb804618b87347cb0\"},{\"@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\":\"deccf41d35a24849983ea8c66bafeb4d\"},{\"@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\":\"adfc86fbc09541d68e0a56decaf2d055\"},{\"@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\":\"3de8b00428314a10afe18b9e15911916\"},{\"@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\":\"1bb2499089f14488a5e9c76c90d4e140\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"8326c77e8cdf4e2685a0d0dcb8b27b1c\"},{\"@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\":\"2d05ff780e3c4b3d83ff87cca15f7b18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"f4380f949bf44a85986e5dfdf16193e5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bda84dbfa395425497c7e8a82f1bf75d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"8fce9bc7b4ae499d9f7ad19888cec172\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b12e03577d454bca886d4c21be506ca4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"48b0c5214abc4e9cb6be2c7dc163882e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556730757122, '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[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"049325a7bba04e1c8d3b9b74823645e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"118639cb4b2745af9b36aab3155b285d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"70415482c34048679440fd0b416442d0\"},{\"@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\":\"b9c0fb6355fe481995e45e00a0126cee\"},{\"@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\":\"f09b47ec9842478fa32189a306450d69\"},{\"@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\":\"0a320254fccf4dcd896160148e903a00\"},{\"@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\":\"3e5c9e2f393647cfaa801e7ada292629\"},{\"@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\":\"d2e668389bb646fdbf8ca50d77a19930\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d8c071642fca4018a2a512911ffb5754\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"97ddffc0935d4b21b193ad25f67127e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ff79139a463544e4a598912a75a46f0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"064d80029d8d4d00b45e890e0ef64516\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556730757123, '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\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"14122a63c6874fa48a6845d0b5f4f326\"},{\"@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\":\"e6daa4dafa6e492c94e7fc7bff765b71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"bf23581437404d8da975ec72f0cd46a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"1485c283a3d04b7a8fb58e93b39981ee\"},{\"@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\":\"ebbb3b003e6e450680dc2da9a2d382bd\"},{\"@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\":\"5fb935fc76b1404eb61b66695f17a2e8\"},{\"@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\":\"5eba848c7e6b4c7d95e5f2aac67594ee\"},{\"@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\":\"c69c434badf64aacbcad6b69e533de4c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ae535af925144cce99a81dbf7d8b318e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e8985191fde642a79a63ca1c730603d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"695fadd405284601870a26034a2fedce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"14dabb622bb74d2a8fbc5fcff4c3523a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556743340033, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1802c2ebed404151bfcc005c0ad9f8fb\"},{\"@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\":\"793f79c1cef2430ebd1960973107ce1c\"},{\"@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\":\"8774149569e143d699bd290f848e6860\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"9ca530c8f8cc428e931d01196eb5f766\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"7d13f5dc1dd64b2b9377e1a4ff4281f6\"},{\"@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\":\"464b7765e0b140cdacf9e8d7cb7f002f\"},{\"@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\":\"7630f4998bd94491af4cf5d0fd60a15e\"},{\"@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\":\"e04cdac839f34cf7b0536dde13776ed2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bc13cd85c2d9489d96524f6454a238b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e378a1022ee749ea9c1940e7f92f58a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bb72e2e6467b4321affd074087494725\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"621c72cb36544d4ab9bb11a8d95ca431\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556755922945, '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\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"f4c1859bd1fd48f197a0bda184352230\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"c76ca156fe2f46dca7bf5c4df0444b7c\"},{\"@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\":\"3d655f728a7b425795732568bd1f83b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"1321b17c31a74ec19064edc06c9eba30\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"6a132b78f0d244e5a635e096219dea7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"ba39776ca0e549c28337b6de5fac0dad\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"923d71ee712d46898a3df521e8e5aab1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2d92e15a3ce8481b98cedb49b3eb8fea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4264dacb3630425aaf7f94de2a4802b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"718519c5e13d45329a59139bc2c7c442\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556755922946, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"3580528ef28e4dbf877b779c857f53f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"ec3d033debc3400d99a52124c5cd68c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"728f759fc12b4728bad8a269ee1f61d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"82d2a24591194316b19355cfbb72e702\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"27e65223d3f544f8a6d71f5266c35c53\"},{\"@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\":\"12b1a3c9544345e89b3978af2cb07d1f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ecfdfd5bd1ae48ce883bcbc62a284521\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1fa3439c840f4bdfaa213041799eb3fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"434b4797b1044859849098e801a6302f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2daf2ed19a94489899f71a09d703b854\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556755922947, '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\":\"ecb5993c924f43b5b413f840a7129e0b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b4a62d1253a84255aaa6ecf01d264626\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a349e6ff246045aab28cd19ea7d40964\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0923464178dd44d3ae5a0c57ef4af0a1\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556755922948, '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\":\"appCode\",\"metadataId\":\"e174206ebdc24ec789b2f8c6eb7cfac9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"879eaea91e6e4de396dd752cfbfb23e5\"},{\"@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\":\"5d6eecbd7f4744159c7eeaf24ef1497d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"e766bd8666154f42a969555e90df7857\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"bb66061430a047c7b22db4951d807845\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"9e4d6fe7b6994b12a3948150d780e0de\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6dfd75933940458b90c5c0e4793a89a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"94153e995d8347f48ec02924ce0d06e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a02a7432c05a47a4b8fd4587c2d5b13c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e712e5a4b9264bc899b34b0d21393c36\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556764311554, '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\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"c7736b7fbe9b4def9a8ce82d160de983\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"8635351335c54154a523b388ce5e3505\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"8304b24160cc4c299b13ac9b81c8cd5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"e63f6a5208384cb5a11b7048d85f87a4\"},{\"@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\":\"cc8ce298350e471f8d01b7ba7fb50231\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"59fa1884d2284871aee0f563f6204de5\"},{\"@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\":\"c5b44f625a0345fba29af76e4d3141fc\"},{\"@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\":\"2cd1a04c11654add94e572fb026e9fe1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"4bf3f721c7ea46498349c5f4ae0be553\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6e00671a04814ce1994e94d18c8619ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"820ccc61588041e7b6ce9af48ae4d0be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fbbdabfe1b7e4caeae01228352cae648\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"32147adfc5394fff88a2bef47643014d\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556764311555, '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\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"b7ab2c609daa49f8a66a7aa7df797900\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"50840c44cdaf4bfbbe59c59f3f469bb5\"},{\"@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\":\"bd7af60798b147e4abca0b21337a29f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"0507f95bca5c447c9bfcf6e2da9ad3fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"96a2f0230a304b4fa95dc84ba945e925\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"f078f8c53d9e4f9cb77b6311bde38084\"},{\"@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\":\"50337410c196411aa424db746f215c24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"ec42b3bc7ea6476ba76614b974002700\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"94152ed7ecbd4ced827f61d346b79003\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"cfbbfbd426144ec39da0731e0c12a307\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"688d8b78357c45a5accf9178eaf79c84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"69d89e75b2d64a7989d3348d1c8f3c14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b9fe7759cb0a4d3bb885d315b7e33d0f\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556768505857, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"479bced14d8d44c5bb25c445335ac178\"},{\"@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\":\"237f1dc1983e402292e6096ccea19de4\"},{\"@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\":\"cc84a5e5764b4a9ebaebe450eddb5828\"},{\"@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\":\"e0e20fc8268a48c6851da938dcab25e5\"},{\"@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\":\"c116969e43774e5d9fc71be440d5e487\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"42fa6a85461e4212a7045a3a7b3b3106\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a6c5b77c635745caa588e8045b15eb5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e97d18aee9c24066a17525542ac4dc50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d8dc9e93e2174dc9a0134519386d7688\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556768505858, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"477e193841824817bfe00fcc711e4e79\"},{\"@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\":\"6ff0d8bcd1554033b2e68b80a0c62fd1\"},{\"@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\":\"40d7b8dba5ff4653a19c0e373c233247\"},{\"@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\":\"8f307aed559c4996b9d3481effab29b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"418db765de094ff4893dfd5f0f9410b4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3b623dd4bcd0441baaa8047226bb6ff5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b4766fc9c0fc4abeb020114b0d7958b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2fea328a08b74ce4be28cbf450f930af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a8220f1efa0044c9aee657df587bc50d\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556768505859, '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\":\"ac8dbc87473c418fafc3f3e4b6aee091\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"3ba48f9b82be4384ac742122f00dc533\"},{\"@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\":\"a3f751c41a13489fa681e869ace0b980\"},{\"@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\":\"158ff4916e5147058b4b3f7d72678d55\"},{\"@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\":\"5c8dfefbee7545da8909829b75cd3c05\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"24e5226acdad4b1aa80849a018a92f18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d905bd6a18fe4dc09c3fb2ae8eca0c63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b243a48258a44651a1fd550267ff2da4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5b62543d00af4e2489c4448151abe0d1\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556768505860, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a1d9b11cd4e0477396c6caa1d8373eb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"05d4e54e1e7b488fa71ee4be6a5dc62c\"},{\"@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\":\"088537bfb7774336b01c33b0fbd00475\"},{\"@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\":\"d71d2ce045774de4aeec625caf9fca50\"},{\"@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\":\"c5630f7f1f0243dc86bb623d897ad960\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b72a90a085f6413787f6c91f15e9787d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1e5c308f446741c39ffb09880dd24fed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2a9757945a36499bb653627a503ba699\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"768e36b0712d42d4adf3b13b225b84e1\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556776894466, '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\":\"f136d926396849c187f66bfbd493d910\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"796cf4c0c4714b74b2e3fa16404cddef\"},{\"@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\":\"88cc2464b07446499f0acad4bf5c60cc\"},{\"@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\":\"39a82df55dcf4d73bf18f29c6ab322ed\"},{\"@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\":\"061a1e1e08534ad0b1b86b6fedebff20\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e97fd566dc3e451197cd5f4a8f629a79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"36582ea0298c468881989dc9581e88dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5b0920618fee41638d4e95b62ad46879\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7a2889e4471445dc96fb16ac292f62a7\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556776894467, '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\":\"84490067321743afa6a112440e24abb3\"},{\"@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\":\"c081d3ef22364aa9b117b97dcad5ff70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"f6ff110c9d434746ab57dd7587a9dcd9\"},{\"@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\":\"8f68dea16cb94600ad38f90004fe133f\"},{\"@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\":\"b9db249bc692483d8da103cf00de64c5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"800414a53dde4244acf133987dbd5580\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2fc9f40913d5466f95d03e77fc350e8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9229ca51e27f43a2b4188579bd44cf87\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"05c28528d3ee4bbf8a56618c317f708e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556781088770, '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\":\"34d0975ad5e64158be267398362db310\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"e713b23326164a5cb20df1492ac5d4a4\"},{\"@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\":\"6df71173d34a4540aa39bdeae8882887\"},{\"@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\":\"3da6a4ce042b4507988bfac1438f6d3b\"},{\"@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\":\"f4d0eef92f6a40b6ba088b4f30553bbc\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2bdfadbdbe2f45349108b7cc1da199f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"bf768a7fc2e44bab97bf3dac046fe583\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ed1e134e2e6649d7a1adf9ef01f5686e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"23112018d99b4471a627d18f95d3c654\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556781088771, '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\",\"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\":\"3db44b22c0c148cf86759a0ef72a284f\"},{\"@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\":\"28b3a5cb59c44b30ba4c4773fd235edb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"eb3075e4057f4045b9b53ca35af3284d\"},{\"@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\":\"e6389a4d780d4dd08f9c6260f9348a1d\"},{\"@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\":\"24771d168dfb4b8681484c3cf063a119\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5ba1b54ba0b044c2a89f6b1f0e7ddace\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"714ce25ef291499a9140d7bd9e2108a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c29fc415905a44cf9a4583d839ef3547\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d2bca0acf89649b095a99d8d1585fe8e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556789477378, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"0dbcd080bef947bd9bbfe23a39e6c51b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"704b450a2c9e4494b201197a0406321e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"36109ab672244967935ccc4d6790603c\"},{\"@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\":\"52749fab0dca463dbe0def4dcd07afe3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"7f3db17f42ef4707a602f7fded41a40f\"},{\"@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\":\"b03e08cd368e4133a0035668747eabed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"3123fee636ff476db65502fb9cc9d92f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"59c16e45589f471586e2b3d545915cc9\"},{\"@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\":\"242d97a8598c42ebac97df54dfb9688d\"},{\"@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\":\"1cf83e7c765443d6a8844544471bb757\"},{\"@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\":\"99b0216888dc4bec9d3ebac26a8814c8\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556789477379, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"f615bf8265084776857a1c47dd1cce6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"26b1a256c68e44099e0ffa9c4c36644b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"454b7461b4ba46b9accf2b5ecbb32c6a\"},{\"@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\":\"ff65ce6c87234f929b9951923001c432\"},{\"@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\":\"28e2e0f003074bbfb09976ea7fc782bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"1726c14354de4601a900e99c54b410a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"172bb5dc2c504074b8aad3272ee724d5\"},{\"@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\":\"ace6a02c8b0a41b198a599277fddf798\"},{\"@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\":\"04e3ccd7c593417aa373b7b046796488\"},{\"@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\":\"4b410dd377954b8f86ad7d857c565489\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"cfc100281a3a4f7fbabadc9bee25b630\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556789477380, '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\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"9815b6f88ff44407a540a43fc677c8e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a38bcd4df05b4436930e44b4baae933c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b32abcf7e08e48cc929c17aa95e2b640\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"329952e5cd334d32a3b6eb180b5a5687\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"99c2c1ba8e2d4d729bfb820e2d98a160\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556793671681, '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\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"ce191c8eafd44a3eaaed0532eaf944db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7782d5d2b12149feafa09f2ef75cadd9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"57676a200e9c423f9ec828ca43980413\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0fd432bf1b7846569c2518d14f5bca0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"96d2e9ece02846f78ef6eb2c98865fcb\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556793671682, '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\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"e8b9110ad63345b2b83652c8ce03f8a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"7617fd9ddbb64143af45d65c30906062\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"b7f35ca45c26420ea33c6c94d4516480\"},{\"@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\":\"3f1813635e98473896af54c17c72ffa7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"05b3b379ce894936b6964f9f0d7d1958\"},{\"@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\":\"6d8743db06074446bf0b8af3edf1cc95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"18e046350d9b4e9f93c992f333a82cca\"},{\"@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\":\"a0a2e768bb5846e5b1d8184b4022835c\"},{\"@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\":\"e9be854a69884eab9edbf5260197ba40\"},{\"@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\":\"988a1273670749d2b2ebb4021f04c39b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"e20fb6de953842aaa027248e89c62b5d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5a9dd83882754019b0acb0c54cf5f19f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9bd19681a0d344259d7dabaff7d9beaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3d2f1f41b4fe4f9aa642e05f987f8981\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1b012b95c32748cc8ccf7f71e15031c8\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556797865986, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"80ae0d7046fd48cc9b06b3d181f753e0\"},{\"@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\":\"67546638783944db887a9085c5bae806\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"9731083f27094efcb578d50d23a3e7c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"5d5f71768fbf44ad994f26e24f5ec66e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"cbfade1d10634712a88cd4e6fe7b3233\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"d15cca7c74084337871cddee2edaa82b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"f2c26a17c3884abf9402900fff123383\"},{\"@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\":\"fe8cba6498e045a59e445a3fa00b4b5e\"},{\"@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\":\"5915933eaa004ba0bb87a8f7e6fbeb0f\"},{\"@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\":\"5e530dfadbb646209231fbd9ba03ce3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"29db3b9e2a454358a52877ce3e9619d2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5c4d448a9e79467f8fa518ccf30524c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c0452cbc34c645059a889bb9528cf9c5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"aac54a9e91af4447b3e27a2e56c0757b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"dac6773cee1546a9ad84fbc39d431998\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556797865987, '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\":\"token\",\"metadataId\":\"4fd7ec122a804ae0b391d68269e0281d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"89445637ed1b4c9c96e4c8994d32b86b\"},{\"@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\":\"1a348919d03e4733b143094433a5650e\"},{\"@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\":\"0a0c7fcacf2e4fc0b2564bb6d42b6b05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"8193ffc4d7344fd9876307ac53084a03\"},{\"@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\":\"5b514c93de124699bc75f12aa2349316\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"760a6dfe5cbc4d76824282ae28762090\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"e51f040e0ace4f6f8f12e41b9af92e2f\"},{\"@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\":\"7180d572e28d44ddbc57b5b4214581c8\"},{\"@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\":\"a87dd3d432a14597acfbf8119e2b595f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"3cb7c5ee66154c369c9424d3053db3ac\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556797865988, '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\":\"0acfe70b786b41e59bca171d13e2b2ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8f315c063583423b877353b69c7a34cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dc30571371eb4c5681c171bcc8c52ca3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"8f11dc48d0284f8da028732a8f09345e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556797865989, '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\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7f3737de4e224bac92d9422356cf9e48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"8516a8ecda6341408487341ceb8fdc03\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"da2a147e62e74c07a445af0f08d32714\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"45e9e9842b0543e7863094eed3ad92a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"54c3442086534dcbb47b24f843698469\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b323b0738f1945848977b8e01ac1080c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b7a1066a700641dfae341710ae51ccd2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3265d7af24c3474c8ef595664afdef18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"083894f8c210430180e653147b61bee0\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556797865990, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"0bc69c5be50a4362be20ef14e487c404\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"b30f5f3148184268a8c5619f47edce55\"},{\"@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\":\"b3d09e2e07994e2cb9048ebf95d6c042\"},{\"@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\":\"f3548e764783467790a1e92e1a4d953b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"1c0539a7032a4e558c141f9f0e7aac80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"eac4ac07ca814a9eaab97c241b0750f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"8362b5ae90c6429182d6758d5f84bc26\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"be2fe79066f04f51b8840097e53fb418\"},{\"@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\":\"3f9beb99e08b4f23932276f924bf2126\"},{\"@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\":\"151e3178f28f40019fee46ea86e4ab3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"cd197f3eaa604711b8ee1c3814e2eb4b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4bfeb9ee0b614fc79d2bcd3b22c8ba42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"616224f772c84d85983eb29375362505\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"93c65b12e65846c7bbf35750d6ef0d78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7afb025ee1c4440e862070f7dc9c9240\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556806254594, '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\":\"message\",\"metadataId\":\"b453124f131946dda4b19ea7f865caf4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4705ebbe1ff84f9fa512d05f304c8ee3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f096ec017d5d4788838fbe5f82c105a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9836f0dbc8a949638a0ae01322307714\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556806254595, '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\":\"2b6fb559c8744760a854e1dde4c46b9a\"},{\"@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\":\"fc03e282617b48d493da4ab730a48e22\"},{\"@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\":\"bd0708bca0294a69834be01f7e0b6824\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"313ff7c360e14870829b140d493e7ac8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"26c32a7c44974448bb15577ede5a32c1\"},{\"@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\":\"ed759f0a986f40388d8cfeca44b466eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"d7f640d2fb4f4c5080d03a9769e73daf\"},{\"@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\":\"2cdf933e89e64f758a1e96a28ccafcb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"c0fa3f1b3343457b894d5e9d0c6a7a4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"d1d61d7634d54345b1e159856ad69d9d\"},{\"@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\":\"6f69ed8edce846ceb83fb6ae9872ba8f\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556810448898, '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\":\"811734904c7f410fa71de2fbb87a5d2f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4ebfb17d4d8d45108e9cadac3024d4f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a09e41977a71469a8580d6f99814286b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"47cc9d4388f14a61ad8d089a4148c5fd\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556810448899, '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\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"03d582f4dfa147939222e8b19b0759b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"14e1f83ce4614b6eb880aca7d0cd3406\"},{\"@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\":\"f2bc40c467b048fab02cbd9be6f4f712\"},{\"@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\":\"a35c915b9d014470a5b20802f9436a90\"},{\"@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\":\"8e2914bfa5ba47029b1ad6bb9eab4470\"},{\"@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\":\"860a5df09c9d4b8b910d839987f03011\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"540acae128d04d5f82bade45c19fb00f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"3361b6f8758d4aa98b5577bc1f36f135\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"c85ca1eaf00442f78f0b22c8c64f904c\"},{\"@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\":\"8bc7e314821146d9a902683de6bc8497\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"74ed9d0e4fc54e0583d826c46cb20f9a\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556814643201, '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\":\"0f95148203494231a3a76bb3ad3c096c\"},{\"@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\":\"1e7a456c45904ba59484193341cb838a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"f98e69a8403443f8aa0c165718a9ed4b\"},{\"@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\":\"919dce5819e44e78a507604cd00b1d44\"},{\"@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\":\"b7e1ea8a8deb4a15b4ac5e1ac8b1d90d\"},{\"@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\":\"fea2606b0a1a4b5596368d0a90eddc77\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"fd838ab4ba6643388fc1fcfe38183424\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"2f8d52f82adc4da8ac7aeecdac8efeda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"6b1cd5d94337471abc24f16e36bef71f\"},{\"@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\":\"8b7f6aac5d0146f28e8876ae75d03523\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"247f11045196492d9a97df650c5bd78a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"cc2eac7d55f74b6e9031b73f419aa5f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bc87a1fdc6fb4f41b8096f0c702887ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"dee469aa03704b55ad34619e2146920b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6d5b23db91a94b3680388d50fbf9e37a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556814643202, 'guns', 'guns$index$logout_page', '首页接口', 'guns', 'IndexController', 'logoutPage', 'Index', '首页接口', '192.168.11.1', 'N', '/', 'GET', 'N', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1c3ef6e15d654e44af1a0619da6391c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9fb4abdc275c4ff9af7980e976aca7ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1a2c21e7df1747b78b696868f5c24190\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5af428f398ef4f5b89312f23f5b921ed\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556814643203, '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\":\"ba08fbf79e1b4524b3fdbcd23295db25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"b043e716db72485a95ba18df30cff197\"},{\"@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\":\"eefc305fc72446e5bc8ec60d5e014d91\"},{\"@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\":\"e9585c18a8174e0497863b4e47452527\"},{\"@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\":\"7c5a391151b94c02a14ea9883805bf5d\"},{\"@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\":\"0f6b68e82e14434f847b3cb70d15b380\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a631f7b1989e4a6eb63daf598c1a52a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9781aaece54843a08a5ac494f95c1da8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2a29126f94174c1986c3725c2cd89be2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d18f0744893c4813adb9c6b7d282d9af\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556818837506, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e79cc5f7be1a47cd95ddc201331f1377\"},{\"@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\":\"f1bdc5a0139d4935bdbcc2d37c3dfdf6\"},{\"@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\":\"8cd08dd73f3c488ebf2be07a6483dde1\"},{\"@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\":\"7ece9a513aa24e3d8a8e79d468618e63\"},{\"@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\":\"0b5cc6a88f7e40c788e9a46fa0208e43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"d4da5edf846e4cea9365359b916f7004\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3a0e30a520a1498a8680263a861fc782\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"abc63dad994d40ea93321f78fb14289f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"29e0d68800d6426ebaf047dfb037ed67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"64895ae9bd6d4809b5d436ecd7ff5b1c\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556818837507, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3f16b6f124b84737831b627f5540c10b\"},{\"@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\":\"adf0a7713f454eddbdd2d1e1def842f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"5530130184024e93bd214f2f92df1d9c\"},{\"@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\":\"1ca2b60356c54604ae272d563ae307fa\"},{\"@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\":\"839920b0cc8549308f34d15d527a14a3\"},{\"@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\":\"067ac9f6885c4e8aa9f0dd722889d037\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9c24e9b52818449088352f4e11c2b059\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9a1bf3cee00b481d845961d4c27b05f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"094680a0e40345d2920eab76f15f9423\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9cc35a044a754aaea53d8edd02bc9c10\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556823031809, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f6fd2965b9e2450db8f00c623d44d76c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"d10035a1c0ef406cb113dad2977fd96b\"},{\"@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\":\"6db4054dba1e41c3a648b87beeca116f\"},{\"@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\":\"9ee2320fb3d245748251bbeba90cae7c\"},{\"@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\":\"1cc8a9321f53413f96ee562072cf8811\"},{\"@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\":\"f2fac32164c642df8730b0a70cca95b1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b9a6f87c9469400bbd6e53afb08c6aeb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c0747bf0bc3d4ed8be59631fcdc874bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bf83ac07de054c7c93b573f11df80ec2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b2792bd7042744fba8adb0c8cdbe347f\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556823031810, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a1feb3c217c748dab17c32bca93099c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"8a725af8162e431ab6172f3a2c901cd9\"},{\"@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\":\"c3ad9bc6a39c47ada9d3f406c1cfba28\"},{\"@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\":\"c3cb01eb8a6c4a42abf2f77d2ddf7f2b\"},{\"@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\":\"85775a8a073f4656bf24cc94c638335b\"},{\"@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\":\"c5ec9be05b0044e29622ba1351036703\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"88370d33db2e498d940ae09c72a4928f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"31ddc5e609ae44cf8636a3c3bf5ec481\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"39b6ce44202b4ae281ab2c6c927eb5f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0b51e42b81bc429bbdbb5f6fce8c9fde\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556827226113, '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[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"0986720617634760a80982edc25067c7\"},{\"@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\":\"d1424f708d5945c586de2763446816b0\"},{\"@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\":\"31859d42be6e4528b1ac31ca1e7a6914\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"539aa5c5eaaa464286da0a1f3e754639\"},{\"@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\":\"eb8eda9cb1834d5788fbbe518be6bcd3\"},{\"@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\":\"dba4a899b2674d299f3edc7b38f3d108\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c69a2198b74d4c48aa50a374e4c2015b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a4035ea24717415cb75048ecc1f0508f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"728e1e28ddbf488d87b41bde0963957d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"52836758df07470ea7f9f7e09cdf6a6a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556827226114, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4f0a6258e55246d8a79024aa0e3e6ba4\"},{\"@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\":\"2b43f7d18b0541c5b047c1045cf5d3a0\"},{\"@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\":\"fc62017b00c5457382f7e521978efdb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"970e3a6d864849419cd659c5b75e9b1a\"},{\"@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\":\"6b1fe7138f9b412bba65f6a794cb0c42\"},{\"@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\":\"99dfc8ad088d41328ede75aab2088050\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4c443f6bb564499ab53f691ebe852148\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e03add0717544d2eb6cbb0fa57df394c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e00e8222889d452ea5153939af12c223\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9491e994b7a84a6cb0d8efc01de42c9f\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556827226115, 'guns', 'guns$login$do_auth', '登陆', 'guns', 'LoginController', 'doAuth', 'Login', '登陆登出管理', '192.168.11.1', 'N', '/login', 'POST', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"a7e90ae589b3405696d166e0efca9692\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\",\"metadataId\":\"c140efd285944aeda3fc0d9d79c165ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"d9c5a2f131654826a0edf9fe94066800\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b34ccb163d9c4da39bc1e86d8f6d0143\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b415c880cd79423385f616b00b03ed8c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3b59934c1193491da0d55ed53ad0360e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e74c1acea0e945c9abaa3e0532b71f7a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556831420417, 'guns', 'guns$login$logout_page', '登出', 'guns', 'LoginController', 'logoutPage', 'Login', '登陆登出管理', '192.168.11.1', 'N', '/logout', 'GET', 'Y', 'N', NULL, '[]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c4dd0fa6dfab440ead3a8c1ef7ec66e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2479fd1dc8a94be1beb44709cfef08b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5dbccdbb8ff746fda8af8536fdd3ac67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"233e5352b24c421895fa265bf66cb417\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556831420418, 'guns', 'guns$login$login_with_detail', '用户登陆并返回详情', 'guns', 'LoginController', 'loginWithDetail', 'Login', '登陆登出管理', '192.168.11.1', 'N', '/loginWithDetail', 'POST', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\",\"metadataId\":\"80378a0478804dbd8351092a672656bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"d1a1ef03ce1c4874b8d9a0f0c76a239b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"261dfbd7a0da4e12b27a30ea51a81e8a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ee5df9e0e7ee4b289ae2a0dfee6b4bba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2e93ba531eed4a92a21d2bc69076f464\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"96949b2d91934e3d95bad551077efa01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0ab45c010ebf46228eb3dd5e7cba1ec4\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556831420419, '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[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"639d26263575477abd35c75d20627f34\"},{\"@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\":\"7c3007e893364e45afd6933a30e58679\"},{\"@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\":\"83f8a9ca6d214647bffa63e9b26c925c\"},{\"@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\":\"01c8af6fae0b40c2bb90cbaf320e588b\"},{\"@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\":\"5b906f9117f5472abc8065c3fd922b81\"},{\"@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\":\"580fe58dc6084d96a641088fd9714cc8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a36f9811fadf46bc8553b592dc236b56\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"dd44262f601940358287e639b1a82020\"},{\"@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\":\"be8e4807173d49849128ab4c3b4adcb6\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8f1070b4c24e4d118d96a1e6bfb60008\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d36502530e154d668ec44e35cf221345\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"144bfa22c72d4cd8b576b7174178beeb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f6350e0f0f654248b37ba8c3dacffe93\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556835614722, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"08e9d7d229214b31a3678e342358ee21\"},{\"@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\":\"c05e1fb78bb3477988caabdcda265c80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"5580ca4647d54b84ac9f29f4add988cd\"},{\"@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\":\"427376545b7949be9a8b37503ec1d7bb\"},{\"@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\":\"a3fdaf10ff634eadaa018aac6cedf8b3\"},{\"@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\":\"523a26fe0e844d9eaab103428daf1680\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"790e4f1605f2422a9108531434f1aadb\"},{\"@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\":\"6aa9b318e51e4f508792b8a945c665e3\"},{\"@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\":\"626a56c3ae6641d68bf74ae4b27caf5b\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d0262610abf14cb8ae9ddb8e730b873f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"948d72552b224f3892b489464f4de389\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d2d255b15eab4f639cca74296adf587a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dba126bb1a20476eaede11f9a316b575\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556835614723, '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[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"eaf490f18060479abcad10b2f21ca9dc\"},{\"@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\":\"bfea3494a8e84b3e9ccaeafa3aa85929\"},{\"@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\":\"dacc4e22ae4a4ffdbaf43f802305068c\"},{\"@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\":\"afce86fa6e664eae93607464c85ab0c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a9afd966c27a48ef8c47d261ec1463a1\"},{\"@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\":\"4adcb99a708d48d3a1c7395e3b2b8929\"},{\"@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\":\"7224ab63856a420f9506096150459a43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"e1bf82e051804b83adc578ce764728f1\"},{\"@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\":\"d507371dac5a480f958ef5e65724420f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"085e8105df9d40c49d6b91258cf997e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e4051557f6484d579c329189b4ea7052\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a27d23810eb24312aaca958fbe017635\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8c866e84958a43f8a3d5e582e4f19925\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556835614724, '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\",\"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\":\"00e19c0dd5e24ca6bca3b424c6951b32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"fdd18d01ddc44175b37107c230fc8dc3\"},{\"@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\":\"851daf412df24c849d3b925bc736852a\"},{\"@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\":\"6ed584ad38e548a3b3a6bf0d3eb508d2\"},{\"@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\":\"6319bb3807c74e2d8e25c518f539ea00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"2dd1ff0905ec4888b10a0fedc5304a28\"},{\"@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\":\"f6ba7da242a445ea9bce1e7e37aa28c2\"},{\"@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\":\"e9f912550c65486586f51812f12ae515\"},{\"@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\":\"6abd293ededc46f696b389430cb47647\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0fa343d4e45545bbb1f1902f43e1ee81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0c11e2b6fe054c16b34f403aa0981a7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0e5a0ccc7fb542a78ea1e33f3bcc9ee4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"da5192acf7054f22afaf924987366617\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809026, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"71e40c9290404d71bec7b5afd8e6a08b\"},{\"@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\":\"32335acc6a594795a52820f5779c204b\"},{\"@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\":\"c7ef67b62ec0494184548e9c5aaf70bf\"},{\"@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\":\"9977be8cd6b647f6bfde24318643f5cc\"},{\"@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\":\"b4eb51c407034857be6503319c754176\"},{\"@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\":\"0d679ce0f1ac4b91ae285018c09dd58b\"},{\"@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\":\"75f19b621f58423c8f2a2977fe782d0a\"},{\"@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\":\"344bb4a15e3f47aaac86220f2c3063a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"40b3bb5996224dd0ab3a31bfbe90d008\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"25f69c5b1d3541bf9ef0d3779e585f93\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b48183d2ec5042539931749667620932\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"75ac0412b3d64508b2b7681f5d965d34\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"54c486fb00764a33a508b775de4c69b5\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809027, '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\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"c0aa2a90163444eda15c30854521078b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"523cc3683c0e4ba4a52336b9f29be3e9\"},{\"@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\":\"88e227e48f264539b5a6e64dd434dac7\"},{\"@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\":\"edf4c95d0277483b8e2d5f9760fd21a3\"},{\"@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\":\"41f9bf2bd2e6422299eeea6c8b94948b\"},{\"@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\":\"fd4268437efb4f0d8b8cf3ba4ee284eb\"},{\"@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\":\"6153bc2e3ab5410c9fe55e58f41de60c\"},{\"@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\":\"8f567465a0ea419d9a5b9b8a03a0881e\"},{\"@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\":\"7eb0b1f165584daa88a8857d580ccc66\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3074df6aaae6426b8c4bdda344853c30\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"033a3b301017498e868c889ec4888768\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ccfcca355dfc477a9184c32f6d53a26e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"02f09b5b602c4edda1eb7104d8c28845\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809028, '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[\"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\":\"8cb7f3ee66d148fa8f7fc31a8b2786d9\"},{\"@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\":\"fff6a923fdcd4efe967626573cac3a26\"},{\"@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\":\"5f7296d1f7cb43949afb59ca1b51bb5c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"78b824ce6b2a424aabd3e6dec9ae4623\"},{\"@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\":\"8e7020c27f6d44a5a8300051dbd1757d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"e0070ada1b284861b7a6ff727c310ca4\"},{\"@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\":\"9f7a5814170c4835ab4654e7477556a0\"},{\"@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\":\"a9f1583c3db340dca64f01ca2ca4dd77\"},{\"@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\":\"f23ada434f404a379c1688a702f934d0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4d3464a8053441629875108f09dab1b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"496e39bbff774493a373416300e03541\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9972306b0a5d40039f796fe11bfc649d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2e0121e6b7524a74beb7e4cfe1029e28\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809029, '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[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"8f340f3b7bf34bf3ab0ec1d0188067b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"32f22bfe5a914d438ee3aa69a4651893\"},{\"@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\":\"28b4b862fdf84f6e9e2f4d9b8298fb96\"},{\"@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\":\"14f38a32e1c14857abdd6e701e1ebbe9\"},{\"@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\":\"de6fa27c3ca843859f29dfb7caafe9d9\"},{\"@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\":\"d7021de00dbd4e9d9d567aaae9d2a112\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"db3fced967eb46988cb7b6a31211c458\"},{\"@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\":\"edc8a84a447b4f0799ef1f184a2c7f4f\"},{\"@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\":\"a5d930e87fdf40269c9855bb8c1054f5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"539eff9ec2204fdeab7e52cef2618f6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"914cd917f4464b7db0a9f3a1090e9ca4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"91e3a90bda4c4a58819e103531144054\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ccbc6a872d814de193e838f22a9a72b9\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809030, '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\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8c1158dd637c482c84aa326bbedd3053\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0d55aa13f58441cba84f18bc7e16cf7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b1ea6f2a9faf449a909523b764245923\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5250079a04b54b7fb964b7f2a9b02bc9\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556839809031, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2717ffd309634aa5bc8be6bf3ec8fb5b\"},{\"@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\":\"3ded406720cc4e848bead7c95f3fe232\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"2a55a394659246189bb0e407e27458dd\"},{\"@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\":\"4c8c8577cbd64350a0bcf3f36ab91f5d\"},{\"@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\":\"0fcf62e673e84028b8b554b9c800e2dc\"},{\"@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\":\"90318e0694184c22aa0ee152a25a587e\"},{\"@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\":\"9a34e13e5c9d47aab498ef38bf9f2dbb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"08dcd49fdf8544b68cd1d04ef67fb2d4\"},{\"@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\":\"54403b252b784147bedf521a52daaa9a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"24ebaa79f20c4cd29a59f5c49fdf2bc7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"fca6395ea7b14063bc85ddab1c869650\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"cc794a6417f3445eae4aad55d71b884f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3dac8e74f633475c8fc0e9bedd3f751d\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556848197633, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"0c83cf5af71f4c3490a87a63c2b6ad57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"44e4616e5ec547fdaed44947e5d2141f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"4abc83fe3ced4d909f713327924c7a4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"8e2547c3d9a4479eb2ab0250c1b178d3\"},{\"@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\":\"5ce936e9fe58463fb657a6aa49844d8a\"},{\"@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\":\"a636eb011173422ca16b45a0ab468f05\"},{\"@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\":\"dea2fc3b1f224255b7f07bc46730fe39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fc9caaad78e94750880143018d7a0357\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"487d101a60754549a48b556f3a89969b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"f75298649bd64a3db00af9007747d926\"},{\"@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\":\"754d6f6e836a4ea1893c4552593116ff\"},{\"@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\":\"7c8498f6462e48b6801fe99ce16ae912\"},{\"@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\":\"514b9e2bf7b246c895850e621a73fa38\"},{\"@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\":\"4f5853e0c74b4423bbf0a7d7ce59805a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"d2f49415b9984a21a519ecf4a2bc237e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c945986881374f01a8f280b42b387513\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3f6a09e4d9ed4888b508aec9b4140abb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7207b99c4382466fb982a0d5da64db9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0d5702b2e138498d830fa1b0552d5bc1\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556848197634, '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\":\"a7cf9171752045eb8950e2a8c2ae6954\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"5e93e0b4c8af483392eb673a179c85e6\"},{\"@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\":\"03ac495d4839452e828da793c1e2742f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"beade5c9c0bc4bc38d0e921658413286\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"29e1659c091847e49eedc75c67e2cad7\"},{\"@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\":\"fdc7608439844dbb9accf8c2856e7ae4\"},{\"@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\":\"1ba11d621c324ad98fae8726fe0b4a58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"be21c1823e914d77982b61149ba36023\"},{\"@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\":\"27fcee40d384434287515b25cec8a84d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"3d35d94dea95413297a5a2e73acd58aa\"},{\"@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\":\"6a164a4bf7e747bfa73ccf03c0acc575\"},{\"@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\":\"d98b71e1bdca4e3fb4071bf3fba0117c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"ea754da125fa43d5902d436119ff7673\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"2dfde884b2a840538e3c62283203b8e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"a766152ef5e944cca078d545708f3cb7\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f2f28fdd4abf403e9df532dfdf5f764b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"88ff21f84c444cb5838ddbd19f436f1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"63ae1aa321ca4281b3da725be8f885cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ddbbbe7380e34f5d820b9219fe6d368a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556848197635, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"c06a2160b6b542d9af3d211434dc1d59\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"5b766edc300c46ec84a19ff526586cd9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0dcf00b55a934ebdacc1388ccb14795d\"},{\"@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\":\"7fec46c164aa4f43afd833b326ee3f51\"},{\"@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\":\"6fb111bc6f64435d8f5851dd0f8f457e\"},{\"@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\":\"1e6c60db2ea7427cb29e782ca45fcd50\"},{\"@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\":\"b7f0ae73c125424693ce75726cf35dc4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"3b820a8853384ab983d26a829021a02e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"166735f5ccf8434f82d5c36e421bc695\"},{\"@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\":\"106a3b314a2841bd81fabe5af7b820d8\"},{\"@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\":\"d5ff84cde5184070999fde64d1ca3c7e\"},{\"@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\":\"1422b6fe89cf4aee86d0832849340506\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"70ca62f6f0bc4fffb710624ce61aa91e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"11a161e55f884949a1d6112ac6a730c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"eaab9315be6a4cd3a9ebd0541ad2e265\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2241e2dd37e14763906918a2c40b48ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"91c3e431c31e4cc7a915d16fb06f881e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4727d970845d44d8a7f2e73e87ed8e2f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e6e37e84734e4eeeb3c690076a085934\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556852391938, '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[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"86aceaeda648431d9ee842e337e840e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"2f0d93c5bd2b4659a376d3e093a21c4e\"},{\"@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\":\"24ccc645f13f4176af7288a80d1ff2b0\"},{\"@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\":\"2eec59b05f2d4b86acbe9aff8b3e8cd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"1f12a8e65b3f444ebb516a6cbdf70926\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"f26a88250b214e21b418ddf0f5725386\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"cb237a29416e48efaf9ecb131a2da7e2\"},{\"@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\":\"4e1f5cb2e48448e0bdfccb10261a60ee\"},{\"@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\":\"d9c2600097a849778513e8be4bb61243\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"46383a424e664050bb9cc65666cadfb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"6fa2c5500ef74288909a92d431fdb5aa\"},{\"@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\":\"6b8ac2a7eabf4528a5b60282d38daafa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e56b261c0dc94ee194742d71113cfbc0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"af0f416c172940fc819736e77f716496\"},{\"@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\":\"6cb41420fa904772a56bda77507763e1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ebcf874240d0473da8cdff636937cd06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4543167696f24a3e83c2cebe4c55615a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"524bd03d67e44c68baa79657e22f8541\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"042a09462aa741cf965c62a3a499ea07\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556852391939, '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[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"1ed6b3d5612c4e7fb4291430275cadfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"01b066620d9944a88c16cf02397025d9\"},{\"@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\":\"911d0864bd0d4d5eba5fbc0966a1f0e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"02d43788f7c3462ba2d602d267efb530\"},{\"@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\":\"a8e8dcc3be8d49278ad202651c702f43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"e9fd943fa933467ebe3fcbcce8d77b13\"},{\"@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\":\"8879d3d897b048fbb40f1757a6561be5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"23f2acda33c04d8fb70c3f26c6c988e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"cd8c48e8bd8c43eb933aab56bb98e7e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"ddaead7ff024436f88f20c5f3624e51d\"},{\"@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\":\"83c4f91a0bb94b1daed77229e3861736\"},{\"@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\":\"162f9086895344a9a4bac4c13e024a20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"9e9aa75c102c4e7086cae2faf1de06d9\"},{\"@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\":\"984e307990074bf0a20af5b1b52e24eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"686c8dfef45843ad9f4582049fca2055\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"08373988da144b039aa99d7e10c2dced\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e2bd83b729a742ecb7db694e4c4ddf07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8b7f47e6406d4ba49296bdaf7e325d32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6ba69e95a5e745e9ab0279fe4cda2d6f\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556856586241, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"35ffc89ac0aa46e18b4470ee2160b5ff\"},{\"@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\":\"9d6b01c12fc64bd5ba392d4f8d7290db\"},{\"@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\":\"82ffd708556f48d7a660f01741727fd2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"149f668864784fe2a7f384be82ca35ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8eb392ac32ed4ab9926e6a447e3c1840\"},{\"@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\":\"6aa1d6af87894470963eb0cce1b8cbfe\"},{\"@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\":\"5bda259adb73402ea04ebd33354ca34b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"c7deb1661fcc48cab58b9594bbfd123f\"},{\"@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\":\"d9db90fc3f89426886d112d74d4cfe33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"1c6b7e29094f4641a834ffd5cf149208\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"7b01ab8175dc4f65a84addb9f0ee31fc\"},{\"@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\":\"769f85c5c8034a45b3a6971a62c71b76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"a5dd674ef63144f5a4c1d55bb239aeef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"a8565252bae54239bad883c461cf9e97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"f5e082aa471242c797ac89e1987361db\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9d37270157364493a74ec891182d0b61\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8ba37784ae6943c48f5d32eda5e42c2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1e8e18f5762949b3a3d0bf17e388bbec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"399d3630762946c782c339c5e3b09be7\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556860780545, '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 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556860780546, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"64d9d017329a42159d4181d6fc0f84aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2c31f6e1ca844e2880a38f8a942323aa\"},{\"@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\":\"904074da6c68412e8a0e96e74d139c8b\"},{\"@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\":\"c1e4d0a2880e4288a77b5763a2317afb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"a81afccc15a345099c6531ff927ea51e\"},{\"@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\":\"190fa6cbd89e46a095e5c18e5e560ff0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"32f08ee4d7044dcfb6fbf5709e73529c\"},{\"@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\":\"db432360682d4d369332d2c3863ae243\"},{\"@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\":\"98279b2bbbf34a5aa0bac29aa8884a0b\"},{\"@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\":\"4d57c334ef5a45e5970f11340820c6e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"cefa81f5c5b34bebb91faf33b9469f14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"86ccf8785c0d44d0835f45414111a644\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6de5c63a9ac44ce487532d2f2227455a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"bbedd05781744446a386dc1ac77ead76\"},{\"@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\":\"4795b9f5ea8c42c6b372893d549685f2\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2855b83437974c78a0ad3fadc88cc960\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2cca0e76a24c489f9fdb6e20e438e760\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e59b872b95a3498c9190be9c2ba71995\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1ad9e61a318d481589bfd6c554f03a3b\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556860780547, '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\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3aa554dbc3de408486a8d1b19b2a7ddf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9756ed9e280f4254a95d84976eb42b81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"00c63e7a143247689be99b4210e6579d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2be62cd04eda4b2e867fa4e2b1840199\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556860780548, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"273d89eb5af24451926133b8540c0dee\"},{\"@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\":\"ad36974559784bf7ac4775e7c3d10c55\"},{\"@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\":\"79be26c31b264f899d0851cf32034ed0\"},{\"@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\":\"03493824a3734119b4931d042e717cd8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b9b5bbb3ad2e4a1185dc4f3d5bfe182c\"},{\"@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\":\"4c9c75ddbbfa49b991e7d73ba6cacf7f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"57797b0c4bc04b3187ea6bff9b70753c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"6b14ca1432264f4e8628962ab1dde244\"},{\"@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\":\"b1d41e755c08446d9f1637285cf3c576\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"da596bd008434b81aad28912eb726acb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"68e4ae416a014903ad58e83f043640eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d8a0f7c9ef7945a99e98e3b17b6c20a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"4c892f2bec934151b3da07a6a8d474c8\"},{\"@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\":\"44b09d53dc1c4553bd35a296272150cc\"},{\"@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\":\"f3a1b2ee418b46878128cf865ccd6f0a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"010003ec013e49689b127c90a4cfdfdd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ee4daf7cafb941b28e386f20dc4eced8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6abd462e7c9b40d2941cc9ed75a31014\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ab78c480693a43e9a8f5883e6bae8554\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556864974850, '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\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1a3b7a15a161480fb8e702f501bcebfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"d24794acd95d4c30807c83d5f0c35df3\"},{\"@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\":\"5c3939a046814e9487e015837a9a45ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ddd89b02db794ca6a5a74fb2475c856d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"bdaca054babf47d68f728f85cc568fbd\"},{\"@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\":\"e8f028517b9d4302b7292fdaacf2ac83\"},{\"@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\":\"c2a30882dc3149f58a8ba02a3505b0aa\"},{\"@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\":\"b174ba1f7b094b4baca2016d9282af90\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"81f7c56edf4640c6b43f18c6d5201503\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"7d30b85393834aeea585ec514791067c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"b40ae529df4b464ea42efec81b9c409d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"732a789abe6c49fdaeacd5ddcb0e2da3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"a5b8662a161a4525acfd55ae1f886118\"},{\"@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\":\"3c0cddc2db0c4eeca85a3afa39bf6c1a\"},{\"@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\":\"b2b2ae7279cd4a3d8372bf1f3e15db47\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c53c6d819c1743ca91f1b873c1d0c638\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2b549d2e02544ff5b2b2b83ef44c11b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"286ab5aa47e14343baf146162b3417ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"79c91ff5db0846eeb886e79c7b3ec525\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556869169153, '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\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"ae5d8e641e4b4dd5aa71341f0689f166\"},{\"@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\":\"76ca500a5f624f639757e9eb9de8e0e2\"},{\"@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\":\"c0448ffeb7c34d3793f9c878c47f0cc0\"},{\"@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\":\"1795f55c909a49e5955f2a6d41c1a247\"},{\"@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\":\"7a4813f14121400795cbec5e7c7671cc\"},{\"@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\":\"a9ea25c39f2b4a8cbc892ea08d42e533\"},{\"@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\":\"bd715e01cdb34b0bba3779a5feff8c87\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"e186765a5c5b4fbda0d493ac3e5a9f56\"},{\"@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\":\"97ed9b5a1e9b451a8a700ae4232b2951\"},{\"@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\":\"cd796fdcd7af430d8d23169683697e92\"},{\"@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\":\"e489f5d651fd44e9be206a51f8bf0c3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"4b9cb2dbfd9242a187c49694e9c1793b\"},{\"@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\":\"81f268517b7e4186946acbb5aad5c1d8\"},{\"@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\":\"e5f66b7a35094658adff44c4e86e1109\"},{\"@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\":\"5e051fbf52e84429a918c03a3b1a585f\"},{\"@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\":\"bd00d6830b9a443faa7441b65aafb0c4\"},{\"@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\":\"08c5d232054f4049bc41b2c87b524aed\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"705809ebf6a54bb997c4fec027b03c37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4469e81219b2432cba73f451a8ae256f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"13afb282a6c6422981299fab09f92770\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"96cc5f0dd1be446194f3d64a04b28fc8\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556869169154, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"65602a8187b645448a34f7543b3b8997\"},{\"@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\":\"466ab39a41f947acaea7a9639ca2e155\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"63a048d65b7b4acaa4390138cba36783\"},{\"@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\":\"ea0af1ae4cc8474e9d883fcccdd61f88\"},{\"@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\":\"4367b61a9f224f778c53df8d5c4e0da7\"},{\"@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\":\"aca9dd27b247436eafadd8ac1b703e0c\"},{\"@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\":\"6e1b3926a8cf4d1cb8b34c0d4aa03941\"},{\"@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\":\"712221ea7bc247858f5339234b3ce66e\"},{\"@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\":\"daa00721c20c47e0a6af5e7a851232b1\"},{\"@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\":\"e1b5eb22c1f5460bb2047d8084e336dd\"},{\"@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\":\"1086b0e0c49046c688255600a6d086a6\"},{\"@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\":\"808c0f3926884ec4bb63d0f3305225f3\"},{\"@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\":\"2d015937c9ae4d029143a013923f091f\"},{\"@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\":\"f51440814195476d933c6db76cd2b646\"},{\"@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\":\"9eafffd386964338bab12c2bdb2cb9f1\"},{\"@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\":\"74b40469abea4fec9fe0253a333fc117\"},{\"@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\":\"469316dce21d4952af959bf669f4c6d0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"17f60a026f0a4655bee3d1d362bd32b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"80c053bee3184fc1a13e609c707924a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1a8700611b7c4880bb376be9c786d032\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"36bb2a542ce4412a81301e1cd7c0f9bc\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556869169155, '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[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"ff633c5399c24f948b3fe009f2062da9\"},{\"@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\":\"69e818f1a51d45dba3f61891d4df3f4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"eff2800c3b6f4e818c811240915d2ea7\"},{\"@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\":\"bd64112ed426455bab06d90c8fbd033c\"},{\"@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\":\"2ed962fee81346f6915ff2c26526a82f\"},{\"@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\":\"9c2a906f32534794ba07fd1727dde576\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"bfcde76dfad849e4bbb1b9c9d60ef30a\"},{\"@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\":\"6b9b042d2bcd40039d235c85de7842e8\"},{\"@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\":\"b9b38d6607844196aaab485fe5fefa4f\"},{\"@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\":\"68483073014c474cbd656f603f32b963\"},{\"@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\":\"f6d5383bdd2442018e82b483f91189e3\"},{\"@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\":\"829ea6f54e5d44928178def8e0400005\"},{\"@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\":\"51f6615a752e4014b4e263ea893f5d3c\"},{\"@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\":\"b812b4c5026c4f5b80c64b79733929c3\"},{\"@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\":\"9b62b98153c344daab13a57bc00254f1\"},{\"@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\":\"6701e10c699f47d2bc57288e5f9077cc\"},{\"@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\":\"84d0c777078d43379fdeeafa9574c30e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7f3d7976d63344959710a4694a9da798\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0e93cdec0d094207b320087748a1cd0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7ebea868fe6a41bab1ee794819ba64f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a5b287a6527e4d6598db2c3194863adb\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556869169156, '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\":\"18cfc138d24e49c098a50aae1149ac9d\"},{\"@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\":\"e66d39bcab7e498985b172cdad14196f\"},{\"@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\":\"7fc48de332884d3e833ad55916936409\"},{\"@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\":\"81f988230bb843fc862d37277e2edd64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"7fd951358cea48f78459d8e2907e5f47\"},{\"@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\":\"3ccfe9a0f97c451ebd0ec8128b387cbf\"},{\"@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\":\"65497a1c55844628b2bc908cf03dd2bc\"},{\"@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\":\"9889af975cca40e69a72eb64c0db386a\"},{\"@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\":\"32b0614539a0467da0a41849d863eb22\"},{\"@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\":\"745da6561d0a46c78a3e35bbf4dfa588\"},{\"@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\":\"9e079cb489f244d187eaeba5828cd965\"},{\"@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\":\"3a8f25bc6287408390f4a3982a13113d\"},{\"@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\":\"0ad21517dd6947f69ca24f0a8ff6b99c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"e9446f1b40bb4d678dbc20b06a0746a1\"},{\"@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\":\"f354c55347ad4e0fb25fc4de18d2501f\"},{\"@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\":\"6ede0b2bf7d74b5db276caf6f2cb4dc3\"},{\"@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\":\"16fde17e316b4dea8a0a707f24fc2a29\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f611c46a92a440689019d889f4fdc924\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4da099b687a640309f7fcece61a3d445\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c6301faa23704f188486d3f76efc3d93\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e6db899685c54699837e6d36ecb10514\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556877557762, '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\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e6a313637d804512b5877481ac5f13d0\"},{\"@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\":\"2671861578e14f8c8c90027b3ff2215a\"},{\"@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\":\"3ecd5f9198bf415982e8983dce49a3e4\"},{\"@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\":\"df84bbea8ac04b9babeca6a2ad455eb7\"},{\"@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\":\"f31afadb874f4f91a2fe29570eda191f\"},{\"@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\":\"6aebfc5455ae4254ac4a8f26577cb5f4\"},{\"@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\":\"542f4e0b023643e78b63b0e2aa5f8fe2\"},{\"@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\":\"7275d1a692e24a30ad997d2fcc10df90\"},{\"@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\":\"85d947a66ae24a98ab05907bf0402d08\"},{\"@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\":\"63a81aa300e04b16b3d9e66d7513e285\"},{\"@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\":\"ff6ae4097c1f4af780a499b96d4463a6\"},{\"@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\":\"67d84b53765e418b90ba39fb9931b125\"},{\"@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\":\"7bccb56120694bddb0907c40fc8df6ee\"},{\"@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\":\"b03098730e0e423dbd8039acebb84404\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"d3c073f70eea4171a14af16654cbb1ce\"},{\"@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\":\"793dcd1e5e8e43adb7d70f8ec8ff4762\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"7c66ed79d4984d429dfff8e1240c89e0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"820f5d7cef92472fbd1ac2cfa1bce9be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7125a8dd46064942b5c850efe09dca64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4bee43ffd42a44d98f492c30b43e015a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c15dc3992949420d8de4b17713a5d087\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556877557763, '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\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8e7a427c7efd4fc4b66882bab7c55d74\"},{\"@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\":\"cf3664e0656c40f78c7ab7af26afb120\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"17c73c9350c949508180a5c98a979a35\"},{\"@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\":\"e99172ae777b43f3afcd5a2b1dd28fe1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"83b6e8fe3c6f4998b020b9835b77b3b3\"},{\"@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\":\"7ef5bc04011640d99d45bae6095a4363\"},{\"@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\":\"56ca68077e244d99bb6906a20bbb45f8\"},{\"@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\":\"d79b58c4b5bb4a28af4af05eb76fba0e\"},{\"@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\":\"fe7211dc23ec4349b392292bc46a25ed\"},{\"@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\":\"07fdd36495bc49738acc8f95a69ab9a5\"},{\"@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\":\"df5766382f174e4c85d840ca9027da32\"},{\"@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\":\"8cc2f9c488ce46a5b0c93176eff4b1ed\"},{\"@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\":\"a849ebe28ec34895aa9af730b468b66e\"},{\"@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\":\"20cc93aa92364a3790defaceedcb53ec\"},{\"@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\":\"46b925eecea146679fab645961347e88\"},{\"@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\":\"a62963bfbab342c194525e66b0f6c271\"},{\"@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\":\"1a947d403f8046bfa5a0f50960a8ce45\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e8f6aa8b11494df9a18a8d721e49188a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b368ac922667401e89300e7e92377995\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"42bab09f1afb4498b09204aca59a955f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9a34b5e9fe7b43179fb0a551e0c8fb5a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556881752066, '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\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"88a096983cce408e98342002a6458ffd\"},{\"@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\":\"8b8ce7210e6f40bbafd8c58022a93fbf\"},{\"@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\":\"cbef020520fa4fee8d973847119cccd5\"},{\"@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\":\"25d134214a2a44e4bd69d9dfcd106816\"},{\"@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\":\"bd273b6407b444a08c17854ef26ff8f7\"},{\"@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\":\"b41560aef1a245259b77985ca23f81be\"},{\"@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\":\"a96508340af34fc2a230d9206b2b1e26\"},{\"@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\":\"e8021fd0a3394b5a8c4abf66ddb762b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"4fd7db64c6794a23a94bb10e5e0bba54\"},{\"@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\":\"56d2df9941384b01a7d77dacf7cda9bb\"},{\"@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\":\"b877f278bc7a49619d22318788ad951d\"},{\"@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\":\"c7ce2136cd904b8285f92e1a34982493\"},{\"@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\":\"ac20c28bc1784fe7b374c56f19c98e4d\"},{\"@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\":\"8735904a44774d89bc57733c93dd637b\"},{\"@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\":\"787af6c0aaac4461858981daed9f4f65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"20e514d1598b4070bb2f9aecffa660e5\"},{\"@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\":\"c63ef5087a2043b3b146a25691359dc3\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4428c3a2113f4d12b6574b19e02dfce2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b4f25478af504bd4b99d0f9a5857ae8b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"aa475f204ba143c09907ae87af3c9cf1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"006b632b9d434a209ca0cf2300bf8bac\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556881752067, '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\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"066adadb66ec4783b753c38b2d18254c\"},{\"@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\":\"9f64b3b4d92f4a68ae8e4a0408f7c258\"},{\"@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\":\"cb6c7cfd9dcd4fc4a4df537ebdfdfdc8\"},{\"@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\":\"5de7cabaed50497abf01d73be69f66b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"0b63fa5cd24a433dbcda9cfb9243133e\"},{\"@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\":\"7f1d142473ac41dba917575cb2ac8205\"},{\"@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\":\"dcc861f5de3143c1aff33c97caaa0fe5\"},{\"@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\":\"800094102a374195aa3bf0e1cc3d5a86\"},{\"@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\":\"f772b369ca034546b21630a5f5f29aff\"},{\"@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\":\"aadb86d9c43f43e8a71b5c3eb4eb88cd\"},{\"@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\":\"3ce2193a40854003bb127f3df0165867\"},{\"@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\":\"c248d72eda8d480c82293ff06f7093b9\"},{\"@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\":\"2155ba72ccb54760a2cec7516588bf81\"},{\"@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\":\"266b3d07991641aabe51de2dd7150c98\"},{\"@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\":\"e77059c561304cb19dd1316cb3a4a33f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"2637b4d1d0d549d3a43cf82d5ce3d9bd\"},{\"@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\":\"d0f3a5964a79423c82b8ca67bec6af1d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"952b98ea934f493ea3e8cd78441d6716\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8ab84bf3ef304fe484c4c6f670dafb31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ab458e18639d42aa963741f28b24e95b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"206e3bbf13564220a1405e78d67bace8\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556881752068, '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\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"18946166b1f145838432ab68937c37bb\"},{\"@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\":\"084c1a5d2d984fca947715ac81d824df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"27a384ffb4ad4cfa9cb8f77752b825e4\"},{\"@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\":\"db297e412f5b4536a14d8ccb9a23aaa0\"},{\"@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\":\"b89d01587b904a70b0273edd82085f3b\"},{\"@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\":\"f2c47f5e4a0a4bffb6fba032c3d97cf3\"},{\"@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\":\"f443ffc6f9ef4565991c332f6a7846a0\"},{\"@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\":\"6ba7518c1ccd4ffab0eb79f3b61d8ddd\"},{\"@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\":\"637963113aa5497a8a0e2b5112706f7e\"},{\"@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\":\"64ccd21b7f5e48ea8e120e3c8f2c40bb\"},{\"@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\":\"bba682a9dd274dc29f27165976a2c196\"},{\"@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\":\"4b82720624264d1ea5cdf8a1cd169b73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"f1e518c22adf43f4964f94366138f4ae\"},{\"@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\":\"6a3ae5dd0e7745f28af6bb9c4e69c180\"},{\"@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\":\"648f110cb3624eeeb89dc51e2f79d027\"},{\"@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\":\"ddf31a94ce9b4083b6be27070620e7ca\"},{\"@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\":\"ade762acc1054983bf96a294184db881\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"898fd295adb64c2db8a45fde4e1aa760\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"15b6fbd0b39246799626c11ccbdb2215\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ba93d80418934039b59bbd0d10445181\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e76bec8e251c42859da503b2d56e143a\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556885946369, '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\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"6208acd2ded14c2e8fd724604fadeb7c\"},{\"@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\":\"62012a4b70de4e00825a1210dc0be35f\"},{\"@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\":\"920431b5c4da46629a69b3218ff68d5a\"},{\"@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\":\"475ecb5f92244331840a7794eadc6f6f\"},{\"@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\":\"2a4a7957760a428b93f13b479c1c4418\"},{\"@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\":\"74ab306380bd440b9416291126fa5011\"},{\"@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\":\"53c983bc66ff4670b8549a08855ba795\"},{\"@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\":\"720f34ba38434a93b2bde0372b8ead1b\"},{\"@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\":\"2a9674e604ff42809cb340cdb2dc1b44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"46bb783e0f634a11847694489bcde413\"},{\"@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\":\"ce7e3bee01d64a78b24885bfd999c4a7\"},{\"@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\":\"02e8b6e731014571b230c473af5948cd\"},{\"@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\":\"33066ece8ea64853b5453d4e48fe96e0\"},{\"@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\":\"47e12992548e4be392520dfe0021b442\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"697e08ee03e0440cb8946c49b063eed6\"},{\"@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\":\"1eb5bd29ebe54ce7a98544a94bad5fc0\"},{\"@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\":\"31adc66469ab4e6a8c71cb1cb793036e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d2ecaff3d6574f259ff79093f344001e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e35eb89c03704325955929b41b256618\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"16a906677d1047288cbba2ef3069deb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"50a6f7cbfbd4475b8315d892beed8d0e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556885946370, '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\":\"code\",\"metadataId\":\"d29c506aff864999b041104faa04c5cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"666b1d28de71410ca7a119261c6f83c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1caa170e82a04824abe2a6d44393393b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"695ad2a37bc5450bbe5067d8c58345d0\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556885946371, '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\":\"e40c2f8e67a74e2e82e0a493d3c9a759\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"16fe5e44bbd345eca3dacb623917faf1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"31b5e73c87e54a629511369279d90162\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"820e5ab7798f4256a3a180a05b8334f8\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556885946372, '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[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"7d73cc79c9fb48b7bb76bcb5abf11665\"},{\"@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\":\"216e5744324d4ffcab7af558c9c084f0\"},{\"@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\":\"9a1fa56f4be441e780ff9a0102012b07\"},{\"@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\":\"c5096d128f614199af8148cba8afc087\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"9a2e16facf2b41d3a9422eaa412e7893\"},{\"@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\":\"04a7bcdc8fed42ef8a4bb95153d9f105\"},{\"@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\":\"14139b976d994630861fbca69acc2e55\"},{\"@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\":\"14880aa79b9a485abaaeda27b650f702\"},{\"@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\":\"933d64694cdf4b0b85defbc4dc121fc6\"},{\"@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\":\"1c652d6df7394fd49831e1a6c985a8b8\"},{\"@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\":\"b27d310bd25349c2ac0b86c14837fd60\"},{\"@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\":\"c92a13209199471ba2317676a7f6e975\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"8a621cf006cd4f6ca1ae39411b7fa8cd\"},{\"@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\":\"409d3703ecc140ce93d25ea3ef4475c7\"},{\"@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\":\"480a392d2e7246bf9e407fe2ceaecd06\"},{\"@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\":\"24e2fee8a6854db5ae45a442f84fe191\"},{\"@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\":\"4b9c52b632b14407a25ae8416f076ef0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d60fcaff674948b7b5d4ee9f57bf99f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1ccada9e0df340fba17998d487c5b068\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"10120599633c46038e7f874d6099429f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"de0ee9866a0344478fc789d3a04f354b\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556894334977, '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_NOT_MODIFIED\",\"metadataId\":\"6fdac49c6b1e40428701cea026c888ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_TEMPORARY_REDIRECT\",\"metadataId\":\"70cfe6edb07c4fb18955ccd5a117e51b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\",\"metadataId\":\"5765731cb3374033b0f328b88dade382\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\",\"metadataId\":\"d424f2eec07d4820bf952e5b0bddda94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MULTIPLE_CHOICES\",\"metadataId\":\"248afe73f1f74cf88454b393cd30e7c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\",\"metadataId\":\"8a8b665c0a654a26a7a1ca15cd7a61e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PRECONDITION_FAILED\",\"metadataId\":\"e01bf8b39863471b96170638ea0fa22a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\",\"metadataId\":\"19a8a22b71704e71abbc678ba25583cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\",\"metadataId\":\"7ced3c00b8bf42ea898395f9ec3b4a55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\",\"metadataId\":\"97786afecb704606bf1202f4d724fa73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\",\"metadataId\":\"6bc3a5f565a84a47946f3170629ce6d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\",\"metadataId\":\"13901ab201ac43698f04f3ceb8f00157\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\",\"metadataId\":\"4890fae05c4e4055b0b4ddb9c3138524\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\",\"metadataId\":\"7e3c000a7e8442b38768490db29689de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\",\"metadataId\":\"4e718b80481e4baa878727ed1af5f234\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\",\"metadataId\":\"38ce0a54a10346d6be1ecfba64e8ea6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\",\"metadataId\":\"6b59a10fd38b4ac2acf1f3ca39bfc9a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\",\"metadataId\":\"7f0a615fc03b49cfa4c5a119ea8b87de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\",\"metadataId\":\"c2cd32c25f91481e8fac2bc80bccace2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_EXPECTATION_FAILED\",\"metadataId\":\"6a72e85faae64abf8712488da1edbcc4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\",\"metadataId\":\"995adac371604ae18d072a1fea611deb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\",\"metadataId\":\"7d1d1e26a04647088bf87fa64bb1a2df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\",\"metadataId\":\"ef9e29ef0c96467e9559779e627d1b29\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\",\"metadataId\":\"4eb97ea8a99044988726fb6394275b45\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GATEWAY_TIMEOUT\",\"metadataId\":\"e8119389eb454785a356117c43d59905\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\",\"metadataId\":\"300f8d5b11984469a9948046126adddc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_REQUEST\",\"metadataId\":\"e2a6dc154f454ad0bdff35b5dcd8cf36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GONE\",\"metadataId\":\"79845fb8a80c4334aa6f729a6ead6466\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\",\"metadataId\":\"ab3d1bdc7fd24965a9c502ed426e9586\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\",\"metadataId\":\"4576d3397bad41a888285150ba3a7fb3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SEE_OTHER\",\"metadataId\":\"06578728fbcc4173bfec8ee5daea0f23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\",\"metadataId\":\"0e6d9dd0d6dc444c88b50863a6defb51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\",\"metadataId\":\"769155d42da94588933006e52af27cae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SWITCHING_PROTOCOLS\",\"metadataId\":\"56f5e457ed6a49cb9c54e5932ca2f532\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FORBIDDEN\",\"metadataId\":\"f76ee8dabdcf450fa1a2fcf90358e3dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\",\"metadataId\":\"82c7eab0712045fa8affa5f394a1ab5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\",\"metadataId\":\"3432cf98c2004b19a2fbedee2b8c5a26\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_TIMEOUT\",\"metadataId\":\"230ff074056b4717a9dd363e03365d52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\",\"metadataId\":\"c3592de5ed7c460d85c362dd21fa7f5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\",\"metadataId\":\"0ca0fe95bd99480492d501f7a548c514\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\",\"metadataId\":\"ac97ef3152f34e70848bf0534ed166eb\"}]', '[]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556894334978, '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\":\"a97aa1ceb26149d6b2c0f76617924405\"},{\"@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\":\"738a526282b04e9d8fbb08cbca863a0c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"831c4747abde4879b71b9acd18d4f7f9\"},{\"@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\":\"f35aba6a8071448fa9e38cd11173ebc4\"},{\"@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\":\"94c6fcebd4224ec79572829342b534ee\"},{\"@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\":\"5fe3ab7916d0425e9482ca9ab2893179\"},{\"@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\":\"16281afd284c4c59a89ca462e388f53e\"},{\"@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\":\"77d27246be084439823a4310f4e9675b\"},{\"@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\":\"abd8008490964a4482f66cdb7ca80f7b\"},{\"@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\":\"eccb03c7102a441783f0850f937bfcac\"},{\"@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\":\"a30af0a6bb6c426a849a25211e1049bd\"},{\"@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\":\"5f243a56cac840d99e7c53342d3fe781\"},{\"@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\":\"dc9415ed29c9456a8c9fd1fbcc2deac3\"},{\"@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\":\"d7d799d6d183402ba3c15a051c26b4cf\"},{\"@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\":\"1913ee0ba2b64065b9fcf5815106b09d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"4ce924e7fdad4d27a3c47f561593c32d\"},{\"@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\":\"865b59508f2844868a5201c4e920d579\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2e15cd2274d84948b1097338c9d9e502\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"13247899162040d7badf4cf5dffbe335\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"19a2fb24f82a471dbb3cedeef496d64f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2a4a18d1f0fe4cae89f034370a324b76\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556898529282, '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[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"48ad0890d5d44f2fb42e44730239e551\"},{\"@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\":\"b060649b34274df9bd16bc4933c776ee\"},{\"@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\":\"c51142264b3c417baf39b796498d1505\"},{\"@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\":\"75fbf703c2c245b7940e429c83994378\"},{\"@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\":\"3a933e09ed444713a67e2ec65d89aa11\"},{\"@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\":\"76bd6f1b849f4a749d1011709ecaf6fb\"},{\"@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\":\"793b298815b54c13b0bdf67bf520bf21\"},{\"@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\":\"a77505905e274e7eab019f054bc87ada\"},{\"@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\":\"75d1ad7f0efc41919795cfd6d3fe2a6d\"},{\"@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\":\"d453bc1205194772a02f85333834e0d0\"},{\"@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\":\"2d2fd77a803e4f6b961dac760d134e55\"},{\"@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\":\"93407df8c39448969d21748865e81f32\"},{\"@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\":\"14b92eff7eec4900837119b26882af16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"8e5d18d0a1dc445c856607fc890bdd1b\"},{\"@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\":\"c78b51000ec54c24a31609127c66f948\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"639bd1f6cd1c4248a3b91d37a711e951\"},{\"@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\":\"a1153fbd2d9042db8440b217485b2699\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9ae182d1d2d844f9b4984427e00c7525\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"379fe09f0a424f8c88c95cea675ce9af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9a235bb92f794b4e8c43a32809fc2b76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"178d8e2d40b7460c866add76d7291a78\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556898529283, '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[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"1ece1df328804bc6ba936011905628fc\"},{\"@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\":\"780989ceb7a54e6ea89ca9137d2a40eb\"},{\"@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\":\"a651292e10bb4b16951a143be1872a13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"a42737f62ccd4dd08a2ba4a6574a1fd7\"},{\"@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\":\"bc35c73808b24de9ab1849119cefd13f\"},{\"@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\":\"a030d77dc7a14ae6b357cb3f41c59f45\"},{\"@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\":\"074bfd4d661d451883f88bee82b7b310\"},{\"@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\":\"7725db6e4ded4cec95446a464a9b0db4\"},{\"@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\":\"0c646d7a395345e39f15f3ce5d98ff6d\"},{\"@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\":\"d678cc4b779142988b5d5124b74c722b\"},{\"@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\":\"67fafd41041041c58cf8e8cece83f2f2\"},{\"@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\":\"bc199c5cc2de447c97f127d8be035758\"},{\"@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\":\"5179b0d7a2564da6beae00ee7c25f5eb\"},{\"@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\":\"565156969b5f418290e6b1e97cc20242\"},{\"@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\":\"0ce5dc6759144ec0849bd041a896e02c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"a87d9a448f5042619b45b19c51dc13ac\"},{\"@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\":\"60835af1dcaa4f4caccb04309a3a3092\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b6697688ed22415dafae48838bc61181\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f18ab71460e141518ccad241ed549413\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"eed578c5cfe246fdb5263c218b773f05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"75f09d764dc7490fbf6b303cbfc319f1\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556898529284, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"16d600b4f078445cb654d631ed492189\"},{\"@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\":\"995695455cba4df290272e1c7ebf6802\"},{\"@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\":\"db1eb4f40ce544a3a4fbc0ae5fa7bdb2\"},{\"@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\":\"508e5cfa064241299f49c0d044dcfc1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"dd60169646894e0d98fcacca489989d4\"},{\"@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\":\"1fac5b80c7b649d7ab293f0282b71785\"},{\"@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\":\"117a494bd6434c74987da6bade4e8e8b\"},{\"@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\":\"0c401e0691db499285ca959df43fc634\"},{\"@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\":\"2629e3266a6d461ba119d71416c2101f\"},{\"@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\":\"51a9a36368824dfbac63e9935ad99828\"},{\"@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\":\"b3f1326cf7aa4532bf6ccd21aa44799f\"},{\"@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\":\"e0a2b16cc08b477eaada2070b1d07bf5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"2306f61fecdf4384b79dd954ef587d1c\"},{\"@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\":\"96252b7b57844b74af1e7d884bed6e49\"},{\"@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\":\"69b0b767a894495e84d393f24c8ddde7\"},{\"@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\":\"2503ee90444841d694643361ce63980c\"},{\"@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\":\"38125bda775a4486b612a2328ff0a9c0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4780d9595a6b4215a0588a28966037ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9312b8e4dac2459596a1fee9e1bf6c3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"18132ca7556547c98962397cd1d1f504\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9118c99459614c2ebe597fb385726302\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556902723585, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"8f2984985d0045cdb7ed4d253bd0772c\"},{\"@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\":\"4996a2c0c8f745dcaebac0002220f373\"},{\"@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\":\"feb2b7b2016645bc89347a9ff8e4ae20\"},{\"@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\":\"7a8fedc31c2747d182657202175f2172\"},{\"@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\":\"718275f9d3d140df891b8f190faf22d7\"},{\"@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\":\"66665a1b2f84465cad71018c3861d031\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a32331013b344f6d8be1879799447d24\"},{\"@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\":\"567fe1ed01f7424f85fe7678abaa17cf\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"188b1f9827d14d77a21628832d559eda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6c1e87bb9b4d4549ab6b1bd885503d2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"702998d3a8c8450485b701a4d77d16c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"050e3a6377c84b408fa55ab2101144a3\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556902723586, '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\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"de76b217254347f781278b61ee1f64aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"23b91a9e14d647d694a966755552f3d5\"},{\"@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\":\"262a7ce3761747ba8f0b3e6e47cf5362\"},{\"@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\":\"255434e9c9e941d9908d9881d668dcbb\"},{\"@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\":\"5eb281033a8c49c0964cbb551e493105\"},{\"@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\":\"ead674440c2147229a2b5ecbc2d4250d\"},{\"@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\":\"d8d06764deac4a24ba0f75f27c3616c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"1f8b9270ab1e48e393d4dd57b177f788\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a39af2221fa4405e9ae5f9d7c830235a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"817d5e817f3649f1a497f0ddb8136708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d73fc39da71c42a398ddecc7b87da6f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e1bf230aa554492eaeb7f42ae8b44471\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556902723587, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"52f3a184c59c443ea665a12049519cfc\"},{\"@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\":\"0057feda39bf406ea93329d9cfebb4e3\"},{\"@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\":\"334b4cdccb1b40a4a2d7058587ce5c35\"},{\"@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\":\"db656287d4e34f4c86a8aff113c695f2\"},{\"@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\":\"d97e267a7e4b498ba422cc5323c30228\"},{\"@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\":\"6b22dbd97fea4ae18a225d27dbd26f7f\"},{\"@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\":\"db3b6c1bd08e4928aea363fa8e2a4e59\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"d94eb427c47c42a2b8145d85aa3adce8\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0768abdb88a84d2d99b97c784200d7ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"67bc7297c68c472e90d36a2fbc5b20bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a9eadf855bd5489584ff9871b0d80efc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"032a8dc920c34836a372c4af43d62f92\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556906917889, '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\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a76c1fedda3e49c7b2895b155e7e5246\"},{\"@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\":\"ad6965abb1064b50ab2ffb623ea6d63e\"},{\"@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\":\"ac3acbeffc5242dea86795662963fae3\"},{\"@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\":\"61482356ef524589b5148ba217ea0bfa\"},{\"@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\":\"3f2187e0db2b47bc8af569eee6e97d4b\"},{\"@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\":\"fe0d7c5bef3b4ad3aa3721be3748b2cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"307c2fb519cb45f1bbbd91ada4853e41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"176106d8e3774e49a1e88bc1f3fc3588\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a6566cb029124b88b8bf4175cc80453c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"02f7c32fcf944ab3857ef745f08b00c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"844f73f0e1c9430d96a20c8a2307e8ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"63b0db4f5d5a4a85bacdbb82971d94a6\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556906917890, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5c7c6fc7e84243598c125c773e425de8\"},{\"@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\":\"e0b2ab5429354fb58ad2d1cc81522610\"},{\"@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\":\"2ddc8014a706490a96d351444e843822\"},{\"@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\":\"dacee3ac7843477fa175ce18fc841fe0\"},{\"@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\":\"d37f1df173464516a7040e434ccd2c7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"644a8917881f4b1ba251841ee34a509a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3497a28db18c40c4b3cf4bec4e904273\"},{\"@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\":\"223915df7bc0472f9c2151a6edda396a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3084e6ec74d44f578b375cf80d6ca36f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1e4f3ea9b5f14b3e8b1b856cb7370971\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"76dbd9d8e1a44ba2a78098f62e9b0c4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"948c43da656845028d5152481c21f3f5\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556906917891, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"43c7142f1e3244509b60d6ae81aedb8e\"},{\"@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\":\"a0337d1fb76146edac5ec075a635597b\"},{\"@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\":\"621a4fcff5a0497bbc9db986f722d2d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"49b408ee529f498e9f1dc3a7f11a3f11\"},{\"@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\":\"09e4e552dfd14735bd50353c2d12149a\"},{\"@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\":\"ddc6478dc49847a89bd998a4bdad62ce\"},{\"@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\":\"0a0929e010f44581a32d3a32b7f230cb\"},{\"@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\":\"47505ee8ff7042e5932446bdcc6c60f7\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"af0a845a0d034c71b03006da871e23a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0b14babf10924793a651559deb88cb0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bccbd1ae7e4b43638af0e46668a4123f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1ba99cc5a39c4afaaac861c599fc0b64\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556911112194, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"68a069009e6545eb96bffb8060bf3537\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"364308df2ab84a449b6627505f123f4e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"08de6df669504dd894df7527779ee404\"},{\"@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\":\"bd470ac1386b40afb2c15e47f49c11c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"dc9c02b91346406a8400868b382035b0\"},{\"@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\":\"87ec73334e5548bcac29741a782fdbd1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"860305b2d49f4fc485027cc43040bd2b\"},{\"@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\":\"77381db8b2424c2f9baf1119a80112df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"7403386951f7468fa16d37523bade881\"},{\"@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\":\"377690cbd2b54db790285f509a877bb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"64dc0b04fe274a4f940cb800c274b019\"},{\"@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\":\"0f33310952f94059b90bb0185515f470\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"170ee9ab0de84685bfb843b8ff506c0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fe07bbed4b344082a935a36b53fa92ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d43b3ac5187f4b748341391cb76752fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"8eba6360a4c34e56a95ac1139fea2970\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556911112195, '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\",\"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\":\"0eee907e49e245b89f94880ea5e86479\"},{\"@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\":\"8b77e2b5cc2647c5b66a19d0cff10263\"},{\"@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\":\"e09effd771e54d478bc2ec9541340a90\"},{\"@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\":\"ac9e562121074b918f36e7c0075e3f9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"4ab74a9bcd7142328c834b6b13517e50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"6a3ff2b329804e08bc78f95d29ea576d\"},{\"@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\":\"c34c1d5dd8a048e0a36567cfa4962bb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"3776ae58ed9240829bc4850c6f727f7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"694a2e991e804d52995e07cad0609ba6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"ebebabe9e8c7408d8b8591ed6a6b8e9e\"},{\"@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\":\"89c93cad1be0427aa4ce1781efe3f7a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"17f599bff56141c588eeb42a4aad8513\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"07abfc5e34404833aef0dd71e20830ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b325090aa5b0405390e31e53da8ef588\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"27356222135a486a9a49adc02fd07afc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ce962db9f9e944e59b21bc8ae2f18406\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556911112196, '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\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"ddef0d2ea5b44b4ba0ea1d8e018ab746\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"05acfab34e1142b08984ddbdbf5e39e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"9d2fcc3cd7b648b58c4f72fd3278ff7b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"10e8beb32ee549c2bc43361b85bc2e86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"ed0a39c3d80d42bc8f5d486c9df897b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"cb3a95b58d4f4078afb64288ffdbd60c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"e0dc33650c324d6bac847309ce9c83e8\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"99d8d196d9444ebba3f64dc2564ff3a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7265a33f726142adb26f28b91ea57c38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7db60be20a1c48b785c5b4f500e7776f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e91d952c8b3c4b51bfdc32b07f8efde7\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556915306497, '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\",\"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\":\"349231f18206478db223a58813aff53c\"},{\"@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\":\"9c5e401a672a446fa11c727344e6afae\"},{\"@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\":\"8462105cb0e74b2eac4dcc5480e10d27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"64c1a8b4b52449c4b6bcec30df3a04ce\"},{\"@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\":\"961221a6ada4438daa32ae3f10211041\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"017fec3eee0f4d2495ffd2dc050b0a9e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"94b279f81a0d42f0a7ba23853069d036\"},{\"@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\":\"829dd2d99f8447c2bfa329dc91e47b60\"},{\"@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\":\"74dd39d23619450fa64f4d489e6dc624\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"8bc2a4e44e3c453a976a14b3294bfa92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"19affc8e6803475bb82900af911e53fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"e69a4133966a4fee884531f27592220c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d13e89653d4049a9a84d0b15219580ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6f445a58b2c74aa5bea8d0899ea78642\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ec5c858fc41c480691b08b9ed389f7e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b840b926207b4184975cae75ce0e3c2e\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556915306498, '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\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"17f1dbeb8e294aec992cb9bf5d604d94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"bfb983a77f7b4dbdbb540e16b4563d94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"8942d01509c346f3bf39238a2bb3d95d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"7c1aa98a7e8a4f9ba4e3b85e2bc5c38c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"8ec683a984294e80908e96b6c0771020\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"aca2e734e70a4ecdbc774c8309dc0f53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"b42b1f87da8f44d8ae062e17a9f6db6a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3e8373a126ac4e77b4d6128b8bfa14df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b795145631c84160a96553b7595dae6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9d9765700df1446dbd4ba800c63ca26a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f93e0399bdf343f6929ba8894849086d\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556915306499, '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\":\"1e7ce72cc1714c819197ee7d6b2a6c19\"},{\"@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\":\"3210a46e9f7d433e8e4d335208c79fcc\"},{\"@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\":\"73275a07d40241c3893238f9701fe8dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"62560300361543e2822f0c78b56dd03b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"982530202f0a4c8b8f6c51999440151b\"},{\"@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\":\"7b8890d47a474a68b951df22b1cccc5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"7af10ded4cbb4b0f83269d59b0fde04d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"1aeeb30cf3754c85a8a89c7ecfa615be\"},{\"@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\":\"1542bb10d213402ab8d7ec87c5f15bbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"043198fee4bc46318954d3e6778dd4fe\"},{\"@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\":\"6451c973912e47138394426940ca412c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"54526bcf333344e8a6c46464969a1b4d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0ba09de6615b4ea18b9a1c81c535b12d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"aa1cc96943844c46a3b3157599b401c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6268fb0cfa424cf29e5cf64e405cf513\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"abaad59189194b3bb7a277987becc476\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556915306500, '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\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"7b222b6ce65b47a8bf31a56f856a3a53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"226218777f7b47f5bbdfffdc7b6e9227\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"b146c23d668b40f58c5d3aab3f77d05c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"885e55cf1c1844f89f92b741551b013b\"},{\"@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\":\"f0f327862f7a46e6b610f9d2bf01f9a9\"},{\"@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\":\"0fb5551c5f974bc2a4a00b8d78e3da69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"2422b7bad7704cee897bae6cd84f212c\"},{\"@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\":\"539139a133864aa982ee7533bc025dc1\"},{\"@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\":\"8d6e4f2f94dc44979740a61ca59eab71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"604e6737a4ab4cfe8bc48cd5fbe60b13\"},{\"@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\":\"063fae89e6024248b732467e072bc9af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"fb5a779d5b964ed791c8a48481541f95\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5674505ceb68424f9409b625ac8b805e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9506299347fb495e9c7c413ffdae52df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3d9de38644b0417ba1c5b07e30d18120\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"1ed6ac530f9f433c9aff6879d46baf8c\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556923695106, '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\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"02dbc413bd284b44aae2ce66e3d76bfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"8e83a2e074ab4498be838d09be76444e\"},{\"@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\":\"8178370430714ff9a2dc6f5b85ecee16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"0f9d25d7942d43e5b259faa8c906b4cb\"},{\"@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\":\"23891bbe7db84763b47a54d620838d83\"},{\"@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\":\"8a260cbdaf474ab8887016825abaf247\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"d089750ad6ac44d189610592bf8b9b59\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"dc004ac76f734e4c9a2d93cb24161fae\"},{\"@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\":\"9b8adfaf557e4410acf2da27e3a653e8\"},{\"@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\":\"88993f01d33d481ca5669c17bc6c6731\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"f9fd6028bd354304bde8e97aa3a9caa5\"},{\"@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\":\"3d14e6dd7e8042e1bf4277a588245640\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1fc1c0c2464049039035624dd0e07dce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e7d66f4a1cb646ddafdb8e7afb5c5bb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5d1f5581da304f27b6b31d41211c63c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"79e7223ac64a47439453d5e0e95e3508\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556923695107, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5f7402efa840498eb4132bcd0f0cad46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"e85fbaf8f65249c19ae9e502fa1ca541\"},{\"@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\":\"5f7a06fdce5049b9bfabcedad90f7cef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"31e7101387594e57a05cd05947d220ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"3869d86b76844797a4804db4d9222b58\"},{\"@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\":\"670061d190024e53af3d71e69a7b996a\"},{\"@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\":\"e16d856610854fbe854b21cb635dbdd6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"cee5f759335143eabedce4c4534f5d98\"},{\"@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\":\"1ae398d66eb24b018145bb7706e8a75f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"0dd096cf845346a1b4dd6ad9a70e580e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"718caf6572a8447a8c5b6df730c76126\"},{\"@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\":\"3cb5305083cf4499bda0c869e41a5242\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"97f394bef1984c5a9cf2adcdd9155f68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"987a34a12da845928706c638bf0f553d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4b6a3dec575842ccb01c3c6e93070fe5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"022ab9a66e3a414bad1808cb31922c4f\"}]', -1, '2021-01-08 10:32:28', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1347370556927889410, '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\",\"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\":\"cc244b8a6d294494b7e9d905fab0821a\"},{\"@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\":\"3158ce4bb0e2471490272a0fd7b2096c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"28290f41b02c4523a487582de8962d85\"},{\"@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\":\"e1ce62e520df42ffa5a3a3d68f1f9bda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"4c75a66a746d43ae9853982d0f967ba6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"7e313be91b9f421eb28bec0ed6bcf73b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"0d4883badeaa4e649f73504b3736e923\"},{\"@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\":\"e4e6a2ac1d674e22ae26d01c6d6fc482\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"438ad42464e9496f93c7f7eff3e43bbb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"939987ac13e142909ead0db995d5b212\"},{\"@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\":\"822f5b194d38482ea8fe69830275176f\"},{\"@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\":\"06df56627e664d858ea17d32f6a7da13\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"cafe43ece1a14646b70188b9e0ccf143\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"57e9a0b99df34c1081f22dc710e88ec4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7f20e22b97c54e5ba2ce20d91ff15b3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e3adf431239e4ba8aac59c2299f4c352\"}]', -1, '2021-01-08 10:32:28', 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, 10, 1, NULL, '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_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 (1341030488239853569, 1341003321565011970, 'guns$dict$delete_dict', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1341030488239853570, 1341003321565011970, 'guns$dict$update_dict_status', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1341030488239853571, 1341003321565011970, 'guns$dict$add_dict_type', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557628338177, 1339550467939639303, 'guns$dict_type$delete_dict_type', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557632532481, 1339550467939639303, 'guns$dict_type$get_dict_type_page_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557632532482, 1339550467939639303, 'guns$dict_type$update_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557632532483, 1339550467939639303, 'guns$dict_type$get_dict_type_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557632532484, 1339550467939639303, 'guns$dict_type$validate_code_available', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557632532485, 1339550467939639303, 'guns$dict_type$update_dict_type', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726785, 1339550467939639303, 'guns$dict_type$add_dict_type', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726786, 1339550467939639303, 'guns$hr_organization$update_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726787, 1339550467939639303, 'guns$hr_organization$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726788, 1339550467939639303, 'guns$hr_organization$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726789, 1339550467939639303, 'guns$hr_organization$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726790, 1339550467939639303, 'guns$hr_organization$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557636726791, 1339550467939639303, 'guns$hr_organization$tree', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921089, 1339550467939639303, 'guns$hr_organization$tree_layui', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921090, 1339550467939639303, 'guns$hr_organization$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921091, 1339550467939639303, 'guns$hr_organization$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921092, 1339550467939639303, 'guns$resource$page_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921093, 1339550467939639303, 'guns$resource$get_menu_resource_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921094, 1339550467939639303, 'guns$resource$get_tree', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921095, 1339550467939639303, 'guns$resource$get_resource_detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921096, 1339550467939639303, 'guns$log_manager$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921097, 1339550467939639303, 'guns$log_manager$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921098, 1339550467939639303, 'guns$sys_app$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921099, 1339550467939639303, 'guns$sys_app$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557640921100, 1339550467939639303, 'guns$sys_app$set_as_default', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309698, 1339550467939639303, 'guns$sys_app$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309699, 1339550467939639303, 'guns$sys_app$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309700, 1339550467939639303, 'guns$sys_app$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309701, 1339550467939639303, 'guns$sys_app$update_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309702, 1339550467939639303, 'guns$sys_app$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309703, 1339550467939639303, 'guns$sys_file_info$private_preview', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309704, 1339550467939639303, 'guns$sys_file_info$public_preview', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309705, 1339550467939639303, 'guns$sys_file_info$private_packaging_download', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557649309706, 1339550467939639303, 'guns$sys_file_info$public_packaging_download', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504001, 1339550467939639303, 'guns$sys_file_info$version_back', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504002, 1339550467939639303, 'guns$sys_file_info$file_info_list_page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504003, 1339550467939639303, 'guns$sys_file_info$preview_by_bucket_name_object_name', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504004, 1339550467939639303, 'guns$sys_file_info$confirm_replace_file', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504005, 1339550467939639303, 'guns$sys_file_info$get_file_info_list_by_file_ids', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504006, 1339550467939639303, 'guns$sys_file_info$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504007, 1339550467939639303, 'guns$sys_file_info$update', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504008, 1339550467939639303, 'guns$sys_file_info$private_download', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557653504009, 1339550467939639303, 'guns$sys_file_info$upload', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698306, 1339550467939639303, 'guns$sys_file_info$public_download', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698307, 1339550467939639303, 'guns$sys_file_info$delete_really', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698308, 1339550467939639303, 'guns$index$logout_page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698309, 1339550467939639303, 'guns$hr_position$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698310, 1339550467939639303, 'guns$hr_position$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698311, 1339550467939639303, 'guns$hr_position$update_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698312, 1339550467939639303, 'guns$hr_position$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698313, 1339550467939639303, 'guns$hr_position$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557657698314, 1339550467939639303, 'guns$hr_position$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892610, 1339550467939639303, 'guns$hr_position$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892611, 1339550467939639303, 'guns$login$do_auth', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892612, 1339550467939639303, 'guns$login$logout_page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892613, 1339550467939639303, 'guns$login$login_with_detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892614, 1339550467939639303, 'guns$sys_role$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892615, 1339550467939639303, 'guns$sys_role$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892616, 1339550467939639303, 'guns$sys_role$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892617, 1339550467939639303, 'guns$sys_role$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892618, 1339550467939639303, 'guns$sys_role$grant_resource', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557661892619, 1339550467939639303, 'guns$sys_role$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086913, 1339550467939639303, 'guns$sys_role$grant_data', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086914, 1339550467939639303, 'guns$sys_role$get_role_data_scope', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086915, 1339550467939639303, 'guns$sys_role$drop_down', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086916, 1339550467939639303, 'guns$sys_role$get_role_menus', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086917, 1339550467939639303, 'guns$sys_menu$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086918, 1339550467939639303, 'guns$sys_menu$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086919, 1339550467939639303, 'guns$sys_menu$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086920, 1339550467939639303, 'guns$sys_menu$layui_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086921, 1339550467939639303, 'guns$sys_menu$get_app_menus', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086922, 1339550467939639303, 'guns$sys_menu$tree_for_grant', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086923, 1339550467939639303, 'guns$sys_menu$layui_select_parent_menu_tree_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086924, 1339550467939639303, 'guns$sys_menu$tree', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086925, 1339550467939639303, 'guns$sys_menu$get_system_all_menus_antdv', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086926, 1339550467939639303, 'guns$sys_menu$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086927, 1339550467939639303, 'guns$sys_menu$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086928, 1339550467939639303, 'guns$sys_user$grant_role', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557666086929, 1339550467939639303, 'guns$sys_user$update_avatar', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475522, 1339550467939639303, 'guns$sys_user$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475523, 1339550467939639303, 'guns$sys_user$selector', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475524, 1339550467939639303, 'guns$sys_user$own_data', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475525, 1339550467939639303, 'guns$sys_user$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475526, 1339550467939639303, 'guns$sys_user$change_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475527, 1339550467939639303, 'guns$sys_user$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475528, 1339550467939639303, 'guns$sys_user$grant_data', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475529, 1339550467939639303, 'guns$sys_user$reset_pwd', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475530, 1339550467939639303, 'guns$sys_user$current_user_info', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475531, 1339550467939639303, 'guns$sys_user$online_user_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475532, 1339550467939639303, 'guns$sys_user$update_pwd', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475533, 1339550467939639303, 'guns$sys_user$export', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475534, 1339550467939639303, 'guns$sys_user$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475535, 1339550467939639303, 'guns$sys_user$update_info', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475536, 1339550467939639303, 'guns$sys_user$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475537, 1339550467939639303, 'guns$sys_user$own_role', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557674475538, 1339550467939639303, 'guns$sys_config$delete', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864129, 1339550467939639303, 'guns$sys_config$edit', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864130, 1339550467939639303, 'guns$sys_config$page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864131, 1339550467939639303, 'guns$sys_config$detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864132, 1339550467939639303, 'guns$sys_config$add', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864133, 1339550467939639303, 'guns$sys_config$list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864134, 1339550467939639303, 'guns$dict$get_dict_list', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864135, 1339550467939639303, 'guns$dict$add_dict', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864136, 1339550467939639303, 'guns$dict$get_dict_list_exclude_sub', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864137, 1339550467939639303, 'guns$dict$validate_code_available', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864138, 1339550467939639303, 'guns$dict$get_dict_detail', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864139, 1339550467939639303, 'guns$dict$update_dict', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864140, 1339550467939639303, 'guns$dict$get_dict_list_page', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864141, 1339550467939639303, 'guns$dict$delete_dict', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864142, 1339550467939639303, 'guns$dict$update_dict_status', '2021-01-08 10:32:29', -1, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1347370557682864143, 1339550467939639303, 'guns$dict$get_dict_tree_list', '2021-01-08 10:32:29', -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 10:32:36', 'N', '2020-12-17 20:40:31', -1, '2021-01-08 10:32:36', -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;