diff --git a/kernel-s-system/_sql/system.sql b/kernel-s-system/_sql/system.sql index 131281b2d..685f06cf9 100644 --- a/kernel-s-system/_sql/system.sql +++ b/kernel-s-system/_sql/system.sql @@ -1,7 +1,7 @@ /* Navicat Premium Data Transfer - Source Server : localhost + Source Server : local Source Server Type : MySQL Source Server Version : 50732 Source Host : localhost:3306 @@ -11,7 +11,7 @@ Target Server Version : 50732 File Encoding : 65001 - Date: 03/12/2020 17:37:58 + Date: 13/12/2020 19:13:30 */ SET NAMES utf8mb4; @@ -54,7 +54,7 @@ CREATE TABLE `sys_config` ( `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', `status` int(2) NULL DEFAULT NULL 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 COMMENT '是否删除,Y-被删除,N-未删除', + `del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'Y' 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 '修改时间', @@ -62,6 +62,30 @@ CREATE TABLE `sys_config` ( PRIMARY KEY (`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', 'Y', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (2, 'JWT安全码', 'SYS_JWT_SECRET', '1928374650abcdef', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (3, 'JWT过期时间', 'SYS_JWT_TIMEOUT_SECONDS', '259200', 'Y', NULL, 1, 'sys_config', 'Y', 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', 'Y', 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', 'Y', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (6, '不需要过滤的url', 'SYS_NONE_SECURITY_URLS', '/data-hr/login,/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**,/data-hr/swagger-ui/index.html,/data-hr/swagger-ui/**,/data-hr/v3/**,/data-hr/doc/**', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (7, '附件上传方式', 'ATTACHMENT_UPLOAD_METHOD', 'tencent_cloud_file_config', 'Y', '1:MinIO(minlo_file_config) 2:腾讯云(tencent_cloud_file_config) 3:阿里云(alicloud_cloud_file_config) 4:本地(local_file_config)', 1, 'file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (8, 'minlo的BUCKER', 'BUCKER', '1', 'Y', '输入框(minlo的BUCKER)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (9, 'ACCESSKEYID', 'ACCESSKEYID', '3', 'Y', '输入框(minlo的ACCESSKEYID)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (10, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '4', 'Y', '输入框(minlo的ACCESSKEYSECRET)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (11, 'SERVER-ENDPOINT', 'SERVER_ENDPOINT', '5', 'Y', '输入框(minlo的SERVER-ENDPOINT)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (12, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(minlo的本地路径)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020); +INSERT INTO `sys_config` VALUES (13, 'BUCKER', 'BUCKER', '2', 'Y', '输入框(腾讯云的BUCKER)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (14, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(腾讯云的ACCESSKEYID)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (15, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(腾讯云的ACCESSKEYSECRET)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (16, 'SERVER_ENDPOINT', 'SERVER_ENDPOINT', '2', 'Y', '输入框(腾讯云的SERVER_ENDPOINT)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (17, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(腾讯云的本地路径)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (18, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(阿里云的ACCESSKEYID)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (19, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(阿里云的ACCESSKEYSECRET)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL); +INSERT INTO `sys_config` VALUES (20, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(本地的本地路径)', 1, 'local_file_config', 'N', NULL, NULL, NULL, NULL); + -- ---------------------------- -- Table structure for sys_database_info -- ---------------------------- @@ -289,13 +313,111 @@ CREATE TABLE `sys_resource` ( `menu_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否是方法(Y-页面,N-API接口)', `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 '更新时间', + `create_user_dept` bigint(20) NULL DEFAULT NULL COMMENT '创建人部门ID', + `update_user_dept` bigint(20) NULL DEFAULT NULL COMMENT '更新人部门ID', PRIMARY KEY (`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 ('guns-backend$dict$add_dict_type', 'guns-backend', 'guns-backend$dict$add_dict_type', '添加字典', 'guns', 'DictController', 'addDictType', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/addDict', 'POST', 'N', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$delete_dict', 'guns-backend', 'guns-backend$dict$delete_dict', '删除字典', 'guns', 'DictController', 'deleteDict', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/deleteDict', 'POST', 'N', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_detail', 'guns-backend', 'guns-backend$dict$get_dict_detail', '获取字典详情', 'guns', 'DictController', 'getDictDetail', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictDetail', 'GET', 'N', 'Y', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_list', 'guns-backend', 'guns-backend$dict$get_dict_list', '获取字典列表', 'guns', 'DictController', 'getDictList', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_list_page', 'guns-backend', 'guns-backend$dict$get_dict_list_page', '获取字典列表', 'guns', 'DictController', 'getDictListPage', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictListPage', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_tree_list', 'guns-backend', 'guns-backend$dict$get_dict_tree_list', '获取树形字典列表', 'guns', 'DictController', 'getDictTreeList', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictTreeList', 'POST', 'N', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$update_dict', 'guns-backend', 'guns-backend$dict$update_dict', '修改字典', 'guns', 'DictController', 'updateDict', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/updateDict', 'POST', 'N', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$update_dict_status', 'guns-backend', 'guns-backend$dict$update_dict_status', '更新字典状态', 'guns', 'DictController', 'updateDictStatus', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/updateDictStatus', 'POST', 'N', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict$validate_code_available', 'guns-backend', 'guns-backend$dict$validate_code_available', 'code校验', 'guns', 'DictController', 'validateCodeAvailable', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/validateCodeAvailable', 'POST', 'N', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$add_dict_type', 'guns-backend', 'guns-backend$dict_type$add_dict_type', '添加字典类型', 'guns', 'DictTypeController', 'addDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/addDictType', 'POST', 'N', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$delete_dict_type', 'guns-backend', 'guns-backend$dict_type$delete_dict_type', '删除字典类型', 'guns', 'DictTypeController', 'deleteDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/deleteDictType', 'POST', 'N', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$get_dict_type_list', 'guns-backend', 'guns-backend$dict_type$get_dict_type_list', '获取字典类型列表', 'guns', 'DictTypeController', 'getDictTypeList', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/getDictTypeList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$get_dict_type_page_list', 'guns-backend', 'guns-backend$dict_type$get_dict_type_page_list', '获取字典类型列表(分页)', 'guns', 'DictTypeController', 'getDictTypePageList', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/getDictTypePageList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$update_dict_type', 'guns-backend', 'guns-backend$dict_type$update_dict_type', '修改字典类型', 'guns', 'DictTypeController', 'updateDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/updateDictType', 'POST', 'N', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$update_status', 'guns-backend', 'guns-backend$dict_type$update_status', '修改字典类型状态', 'guns', 'DictTypeController', 'updateStatus', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/updateStatus', 'POST', 'N', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$validate_code_available', 'guns-backend', 'guns-backend$dict_type$validate_code_available', 'code校验', 'guns', 'DictTypeController', 'validateCodeAvailable', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/validateCodeAvailable', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$index$logout_page', 'guns-backend', 'guns-backend$index$logout_page', '首页接口', 'guns', 'IndexController', 'logoutPage', 'Index', '首页接口', '192.168.11.1', '/guns-backend/', 'GET', 'N', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$login$do_auth', 'guns-backend', 'guns-backend$login$do_auth', '登陆', 'guns', 'LoginController', 'doAuth', 'Login', '登陆登出管理', '192.168.11.1', '/guns-backend/login', 'POST', 'N', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"account\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"password\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$login$logout_page', 'guns-backend', 'guns-backend$login$logout_page', '登出', 'guns', 'LoginController', 'logoutPage', 'Login', '登陆登出管理', '192.168.11.1', '/guns-backend/logout', 'GET', 'N', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$resource$get_menu_resource_list', 'guns-backend', 'guns-backend$resource$get_menu_resource_list', '获取资源下拉列表', 'guns', 'ResourceController', 'getMenuResourceList', 'Resource', '资源管理', '192.168.11.1', '/guns-backend/resource/getMenuResourceList', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$resource$page_list', 'guns-backend', 'guns-backend$resource$page_list', '获取资源列表', 'guns', 'ResourceController', 'pageList', 'Resource', '资源管理', '192.168.11.1', '/guns-backend/resource/pageList', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$add', 'guns-backend', 'guns-backend$sys_app$add', '添加系统应用', 'guns', 'SysAppController', 'add', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$delete', 'guns-backend', 'guns-backend$sys_app$delete', '删除系统应用', 'guns', 'SysAppController', 'delete', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$detail', 'guns-backend', 'guns-backend$sys_app$detail', '查看系统应用', 'guns', 'SysAppController', 'detail', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$edit', 'guns-backend', 'guns-backend$sys_app$edit', '编辑系统应用', 'guns', 'SysAppController', 'edit', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$list', 'guns-backend', 'guns-backend$sys_app$list', '系统应用列表', 'guns', 'SysAppController', 'list', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$page', 'guns-backend', 'guns-backend$sys_app$page', '查询系统应用', 'guns', 'SysAppController', 'page', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$set_as_default', 'guns-backend', 'guns-backend$sys_app$set_as_default', '设为默认应用', 'guns', 'SysAppController', 'setAsDefault', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/setAsDefault', 'POST', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$add', 'guns-backend', 'guns-backend$sys_config$add', '添加系统参数配置', 'guns', 'SysConfigController', 'add', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$delete', 'guns-backend', 'guns-backend$sys_config$delete', '删除系统参数配置', 'guns', 'SysConfigController', 'delete', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$detail', 'guns-backend', 'guns-backend$sys_config$detail', '查看系统参数配置', 'guns', 'SysConfigController', 'detail', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$edit', 'guns-backend', 'guns-backend$sys_config$edit', '编辑系统参数配置', 'guns', 'SysConfigController', 'edit', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$list', 'guns-backend', 'guns-backend$sys_config$list', '系统参数配置列表', 'guns', 'SysConfigController', 'list', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$page', 'guns-backend', 'guns-backend$sys_config$page', '分页查询配置列表', 'guns', 'SysConfigController', 'page', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$delete', 'guns-backend', 'guns-backend$sys_file_info$delete', '删除文件信息', 'guns', 'SysFileInfoController', 'delete', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$detail', 'guns-backend', 'guns-backend$sys_file_info$detail', '查看详情文件信息表', 'guns', 'SysFileInfoController', 'detail', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$download', 'guns-backend', 'guns-backend$sys_file_info$download', '下载文件', 'guns', 'SysFileInfoController', 'download', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/download', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$list', 'guns-backend', 'guns-backend$sys_file_info$list', '获取全部文件信息表', 'guns', 'SysFileInfoController', 'list', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$page', 'guns-backend', 'guns-backend$sys_file_info$page', '分页查询文件信息表', 'guns', 'SysFileInfoController', 'page', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$preview', 'guns-backend', 'guns-backend$sys_file_info$preview', '文件预览', 'guns', 'SysFileInfoController', 'preview', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/preview', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$upload', 'guns-backend', 'guns-backend$sys_file_info$upload', '上传文件', 'guns', 'SysFileInfoController', 'upload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/upload', 'POST', 'N', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$add', 'guns-backend', 'guns-backend$sys_menu$add', '添加系统菜单', 'guns', 'SysMenuController', 'add', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$delete', 'guns-backend', 'guns-backend$sys_menu$delete', '删除系统菜单', 'guns', 'SysMenuController', 'delete', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$detail', 'guns-backend', 'guns-backend$sys_menu$detail', '查看系统菜单', 'guns', 'SysMenuController', 'detail', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$edit', 'guns-backend', 'guns-backend$sys_menu$edit', '编辑系统菜单', 'guns', 'SysMenuController', 'edit', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$get_app_menus', 'guns-backend', 'guns-backend$sys_menu$get_app_menus', '获取某个应用的菜单', 'guns', 'SysMenuController', 'getAppMenus', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/getAppMenus', 'GET', 'N', 'Y', 'Y', 'Set[\"getAppMenus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$list', 'guns-backend', 'guns-backend$sys_menu$list', '系统菜单列表(树)', 'guns', 'SysMenuController', 'list', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$tree', 'guns-backend', 'guns-backend$sys_menu$tree', '获取系统菜单树,用于新增,编辑时选择上级节点', 'guns', 'SysMenuController', 'tree', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/tree', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$tree_for_grant', 'guns-backend', 'guns-backend$sys_menu$tree_for_grant', '获取系统菜单树,用于给角色授权时选择', 'guns', 'SysMenuController', 'treeForGrant', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/treeForGrant', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$add', 'guns-backend', 'guns-backend$sys_organization$add', '添加系统组织机构', 'guns', 'SysOrganizationController', 'add', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$delete', 'guns-backend', 'guns-backend$sys_organization$delete', '删除系统组织机构', 'guns', 'SysOrganizationController', 'delete', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$detail', 'guns-backend', 'guns-backend$sys_organization$detail', '查看详情系统组织机构', 'guns', 'SysOrganizationController', 'detail', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$edit', 'guns-backend', 'guns-backend$sys_organization$edit', '编辑系统组织机构', 'guns', 'SysOrganizationController', 'edit', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$list', 'guns-backend', 'guns-backend$sys_organization$list', '获取全部系统组织机构', 'guns', 'SysOrganizationController', 'list', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$page', 'guns-backend', 'guns-backend$sys_organization$page', '分页查询系统组织机构', 'guns', 'SysOrganizationController', 'page', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$update_status', 'guns-backend', 'guns-backend$sys_organization$update_status', '修改组织机构状态', 'guns', 'SysOrganizationController', 'updateStatus', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/updateStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$add', 'guns-backend', 'guns-backend$sys_position$add', '添加系统职位', 'guns', 'SysPositionController', 'add', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$delete', 'guns-backend', 'guns-backend$sys_position$delete', '删除系统职位', 'guns', 'SysPositionController', 'delete', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$detail', 'guns-backend', 'guns-backend$sys_position$detail', '查看详情系统职位', 'guns', 'SysPositionController', 'detail', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$edit', 'guns-backend', 'guns-backend$sys_position$edit', '编辑系统职位', 'guns', 'SysPositionController', 'edit', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$list', 'guns-backend', 'guns-backend$sys_position$list', '获取全部系统职位', 'guns', 'SysPositionController', 'list', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$page', 'guns-backend', 'guns-backend$sys_position$page', '分页查询系统职位', 'guns', 'SysPositionController', 'page', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$update_status', 'guns-backend', 'guns-backend$sys_position$update_status', '更新职位状态', 'guns', 'SysPositionController', 'updateStatus', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/updateStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$add', 'guns-backend', 'guns-backend$sys_role$add', '添加系统', 'guns', 'SysRoleController', 'add', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$delete', 'guns-backend', 'guns-backend$sys_role$delete', '角色删除', 'guns', 'SysRoleController', 'delete', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$detail', 'guns-backend', 'guns-backend$sys_role$detail', '角色查看', 'guns', 'SysRoleController', 'detail', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$drop_down', 'guns-backend', 'guns-backend$sys_role$drop_down', '角色下拉', 'guns', 'SysRoleController', 'dropDown', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/dropDown', 'GET', 'N', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$edit', 'guns-backend', 'guns-backend$sys_role$edit', '角色编辑', 'guns', 'SysRoleController', 'edit', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$get_role_data_scope', 'guns-backend', 'guns-backend$sys_role$get_role_data_scope', '角色拥有数据', 'guns', 'SysRoleController', 'getRoleDataScope', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/getRoleDataScope', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$get_role_menus', 'guns-backend', 'guns-backend$sys_role$get_role_menus', '角色拥有菜单', 'guns', 'SysRoleController', 'getRoleMenus', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/getRoleMenus', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$grant_data', 'guns-backend', 'guns-backend$sys_role$grant_data', '授权数据', 'guns', 'SysRoleController', 'grantData', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/grantData', 'POST', 'N', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$grant_resource', 'guns-backend', 'guns-backend$sys_role$grant_resource', '授权资源', 'guns', 'SysRoleController', 'grantResource', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/grantResource', 'POST', 'N', 'Y', 'Y', 'Set[\"grantResource\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$page', 'guns-backend', 'guns-backend$sys_role$page', '查询角色', 'guns', 'SysRoleController', 'page', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$add', 'guns-backend', 'guns-backend$sys_user$add', '系统用户_增加', 'guns', 'SysUserController', 'add', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$change_status', 'guns-backend', 'guns-backend$sys_user$change_status', '系统用户_修改状态', 'guns', 'SysUserController', 'changeStatus', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/changeStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"changeStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$delete', 'guns-backend', 'guns-backend$sys_user$delete', '系统用户_删除', 'guns', 'SysUserController', 'delete', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$detail', 'guns-backend', 'guns-backend$sys_user$detail', '系统用户_查看', 'guns', 'SysUserController', 'detail', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$edit', 'guns-backend', 'guns-backend$sys_user$edit', '系统用户_编辑', 'guns', 'SysUserController', 'edit', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$export', 'guns-backend', 'guns-backend$sys_user$export', '系统用户_导出', 'guns', 'SysUserController', 'export', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/export', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MULTIPLE_CHOICES\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_TEMPORARY_REDIRECT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SEE_OTHER\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_REQUEST\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PRECONDITION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_MODIFIED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GONE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FORBIDDEN\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GATEWAY_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_EXPECTATION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SWITCHING_PROTOCOLS\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$grant_data', 'guns-backend', 'guns-backend$sys_user$grant_data', '系统用户_授权数据', 'guns', 'SysUserController', 'grantData', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/grantData', 'POST', 'N', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$grant_role', 'guns-backend', 'guns-backend$sys_user$grant_role', '系统用户_授权角色', 'guns', 'SysUserController', 'grantRole', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/grantRole', 'POST', 'N', 'Y', 'Y', 'Set[\"grantRole\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$own_data', 'guns-backend', 'guns-backend$sys_user$own_data', '系统用户_获取用户数据范围列表', 'guns', 'SysUserController', 'ownData', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/getUserDataScope', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$own_role', 'guns-backend', 'guns-backend$sys_user$own_role', '系统用户_获取用户的角色列表', 'guns', 'SysUserController', 'ownRole', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/getUserRoles', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$page', 'guns-backend', 'guns-backend$sys_user$page', '系统用户_查询', 'guns', 'SysUserController', 'page', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$reset_pwd', 'guns-backend', 'guns-backend$sys_user$reset_pwd', '系统用户_重置密码', 'guns', 'SysUserController', 'resetPwd', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/resetPwd', 'POST', 'N', 'Y', 'Y', 'Set[\"resetPwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$selector', 'guns-backend', 'guns-backend$sys_user$selector', '系统用户_选择器', 'guns', 'SysUserController', 'selector', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/selector', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_avatar', 'guns-backend', 'guns-backend$sys_user$update_avatar', '系统用户_修改头像', 'guns', 'SysUserController', 'updateAvatar', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updateAvatar', 'POST', 'N', 'Y', 'Y', 'Set[\"updateAvatar\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_info', 'guns-backend', 'guns-backend$sys_user$update_info', '系统用户_更新信息', 'guns', 'SysUserController', 'updateInfo', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updateInfo', 'POST', 'N', 'Y', 'Y', 'Set[\"updateInfo\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); +INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_pwd', 'guns-backend', 'guns-backend$sys_user$update_pwd', '系统用户_修改密码', 'guns', 'SysUserController', 'updatePwd', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updatePwd', 'POST', 'N', 'Y', 'Y', 'Set[\"updatePwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL); + -- ---------------------------- -- Table structure for sys_role -- ----------------------------