2020-12-11 10:18:48 +00:00
/*
Navicat Premium Data Transfer
2020-12-26 14:45:51 +00:00
Source Server : local
2020-12-11 10:18:48 +00:00
Source Server Type : MySQL
Source Server Version : 50732
Source Host : localhost : 3306
Source Schema : guns
Target Server Type : MySQL
Target Server Version : 50732
File Encoding : 65001
2021-01-13 12:42:31 +00:00
Date : 13 / 01 / 2021 20 : 41 : 23
2020-12-11 10:18:48 +00:00
* /
SET NAMES utf8mb4 ;
SET FOREIGN_KEY_CHECKS = 0 ;
2020-12-19 15:15:42 +00:00
-- ----------------------------
-- Table structure for hr_organization
-- ----------------------------
DROP TABLE IF EXISTS ` hr_organization ` ;
CREATE TABLE ` hr_organization ` (
` org_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` org_parent_id ` bigint ( 20 ) NOT NULL COMMENT ' 父id, 一级节点父id是0 ' ,
` org_pids ` varchar ( 500 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 父ids ' ,
` org_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 组织名称 ' ,
` org_code ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 组织编码 ' ,
` org_sort ` decimal ( 10 , 2 ) NOT NULL COMMENT ' 排序 ' ,
` status_flag ` tinyint ( 4 ) NOT NULL COMMENT ' 状态: 1-启用, 2-禁用 ' ,
2020-12-24 06:41:42 +00:00
` org_remark ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 描述 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 删除标记: Y-已删除, N-未删除 ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 更新时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 更新人 ' ,
PRIMARY KEY ( ` org_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 组织机构信息 ' ROW_FORMAT = Dynamic ;
-- ----------------------------
-- Records of hr_organization
-- ----------------------------
2021-01-12 03:21:43 +00:00
INSERT INTO ` hr_organization ` VALUES ( 1339554696976781407 , - 1 , ' [-1], ' , ' Guns总公司 ' , ' guns_level_one ' , 1 . 00 , 1 , NULL , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` hr_organization ` VALUES ( 1339554696976781408 , 1339554696976781407 , ' [-1],[1339554696976781407], ' , ' 北京分公司 ' , ' guns_beijing ' , 2 . 00 , 1 , NULL , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` hr_organization ` VALUES ( 1339554696976781409 , 1339554696976781408 , ' [-1],[1339554696976781407],[1339554696976781408], ' , ' 北京东直门分公司 ' , ' guns_beijing_dongzhimen ' , 3 . 00 , 1 , NULL , ' N ' , NULL , NULL , NULL , NULL ) ;
2020-12-19 15:15:42 +00:00
-- ----------------------------
-- Table structure for hr_position
-- ----------------------------
DROP TABLE IF EXISTS ` hr_position ` ;
CREATE TABLE ` hr_position ` (
` position_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` position_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 职位名称 ' ,
` position_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 职位编码 ' ,
` position_sort ` decimal ( 10 , 2 ) NOT NULL COMMENT ' 排序 ' ,
` status_flag ` tinyint ( 4 ) NOT NULL DEFAULT 0 COMMENT ' 状态: 1-启用, 2-禁用 ' ,
2020-12-24 06:41:42 +00:00
` position_remark ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 备注 ' ,
2020-12-26 14:45:51 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 删除标记: Y-已删除, N-未删除 ' ,
2020-12-19 15:15:42 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 更新时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 更新人 ' ,
PRIMARY KEY ( ` position_id ` ) USING BTREE ,
UNIQUE INDEX ` CODE_UNI ` ( ` position_code ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 职位信息 ' ROW_FORMAT = Dynamic ;
-- ----------------------------
-- Records of hr_position
-- ----------------------------
INSERT INTO ` hr_position ` VALUES ( 1339554696976781332 , ' 总监 ' , ' zg ' , 1 . 00 , 1 , ' ' , ' N ' , ' 2020-12-16 13:35:58 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` hr_position ` VALUES ( 1339554696976781333 , ' 总经理 ' , ' zjl ' , 2 . 00 , 1 , ' ' , ' N ' , ' 2020-12-17 19:21:47 ' , - 1 , ' 2020-12-17 20:45:43 ' , - 1 ) ;
INSERT INTO ` hr_position ` VALUES ( 1339554696976781334 , ' 董事长 ' , ' dsz ' , 3 . 00 , 1 , ' ' , ' N ' , ' 2020-12-17 20:02:16 ' , - 1 , NULL , NULL ) ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_app
-- ----------------------------
DROP TABLE IF EXISTS ` sys_app ` ;
CREATE TABLE ` sys_app ` (
2020-12-19 15:15:42 +00:00
` app_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键id ' ,
` app_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 应用名称 ' ,
` app_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 编码 ' ,
` active_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 是否默认激活: Y-是, N-否,激活的应用下的菜单会在首页默认展开 ' ,
` status_flag ` tinyint ( 4 ) NOT NULL COMMENT ' 状态: 1-启用, 2-禁用 ' ,
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 是否删除: Y-已删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2021-01-01 14:43:10 +00:00
PRIMARY KEY ( ` app_id ` ) USING BTREE ,
UNIQUE INDEX ` APP_CODE_UNIQUE ` ( ` app_code ` ) USING BTREE COMMENT ' app编码唯一 '
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 系统应用 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Records of sys_app
-- ----------------------------
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_app ` VALUES ( 1265476890672672821 , ' 系统应用 ' , ' system ' , ' Y ' , 1 , ' N ' , ' 2020-03-25 19:07:00 ' , 1265476890672672808 , ' 2021-01-08 20:51:51 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_app ` VALUES ( 1265476890672672823 , ' 业务应用 ' , ' business ' , ' N ' , 1 , ' N ' , ' 2020-03-26 08:40:33 ' , 1265476890672672808 , ' 2021-01-08 20:49:58 ' , 1339550467939639299 ) ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS ` sys_config ` ;
CREATE TABLE ` sys_config ` (
2020-12-19 15:15:42 +00:00
` config_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` config_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 名称 ' ,
` config_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 编码 ' ,
2020-12-29 14:36:33 +00:00
` config_value ` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 属性值 ' ,
2020-12-27 14:53:12 +00:00
` sys_flag ` char ( 1 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT ' Y ' COMMENT ' 是否是系统参数: Y-是, N-否 ' ,
2020-12-11 10:18:48 +00:00
` remark ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 备注 ' ,
2020-12-27 14:53:12 +00:00
` status_flag ` tinyint ( 4 ) NULL DEFAULT 1 COMMENT ' 状态: 1-正常, 2-停用 ' ,
2020-12-11 10:18:48 +00:00
` group_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 常量所属分类的编码,来自于“常量的分类”字典 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2021-01-10 06:05:01 +00:00
PRIMARY KEY ( ` config_id ` ) USING BTREE ,
UNIQUE INDEX ` code_unique ` ( ` config_code ` ) USING BTREE COMMENT ' 配置编码唯一索引 '
2020-12-11 10:18:48 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 参数配置 ' ROW_FORMAT = Dynamic ;
2020-12-13 11:14:29 +00:00
-- ----------------------------
-- Records of sys_config
-- ----------------------------
2020-12-19 15:15:42 +00:00
INSERT INTO ` sys_config ` VALUES ( 2 , ' JWT安全码 ' , ' SYS_JWT_SECRET ' , ' 1928374650abcdef ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 3 , ' JWT过期时间 ' , ' SYS_JWT_TIMEOUT_SECONDS ' , ' 259200 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 4 , ' Linux本地文件保存路径 ' , ' SYS_LOCAL_FILE_SAVE_PATH_LINUX ' , ' /data/home/rays/dev/tmp ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 5 , ' Windows本地文件保存路径 ' , ' SYS_LOCAL_FILE_SAVE_PATH_WINDOWS ' , ' d:/tmp/file ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2021-01-02 14:42:40 +00:00
INSERT INTO ` sys_config ` VALUES ( 6 , ' 不需要过滤的url ' , ' SYS_NONE_SECURITY_URLS ' , ' /assets/**,/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**, ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2020-12-27 14:53:12 +00:00
INSERT INTO ` sys_config ` VALUES ( 7 , ' 附件上传方式 ' , ' ATTACHMENT_UPLOAD_METHOD ' , ' tencent_cloud_file_config ' , ' Y ' , ' ' , 1 , ' file_config ' , ' N ' , NULL , NULL , ' 2020-12-09 16:03:01 ' , 2020 ) ;
INSERT INTO ` sys_config ` VALUES ( 8 , ' session过期时间 ' , ' SYS_SESSION_EXPIRED_SECONDS ' , ' 3600 ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 9 , ' 账号单端登录限制 ' , ' SYS_SINGLE_ACCOUNT_LOGIN_FLAG ' , ' false ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 10 , ' 携带token的header头的名称 ' , ' SYS_AUTH_HEADER_NAME ' , ' Authorization ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 11 , ' 携带token的param传参的名称 ' , ' SYS_AUTH_PARAM_NAME ' , ' token ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 12 , ' 系统默认密码 ' , ' SYS_DEFAULT_PASSWORD ' , ' 123456 ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 13 , ' 会话信息是否增加保存在cookie中 ' , ' SYS_SESSION_ADD_TO_COOKIE ' , ' true ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 14 , ' 会话保存在cookie中时, cooke的name ' , ' SYS_SESSION_COOKIE_NAME ' , ' Authorization ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 15 , ' beetl自动检查资源 ' , ' RESOURCE_AUTO_CHECK ' , ' true ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 21 , ' 系统发布版本 ' , ' SYS_RELEASE_VERSION ' , ' 20210101 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 22 , ' 多租户开关 ' , ' SYS_TENANT_OPEN ' , ' false ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 23 , ' 验证码开关 ' , ' SYS_CAPTCHA_OPEN ' , ' false ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2020-12-29 14:36:33 +00:00
INSERT INTO ` sys_config ` VALUES ( 24 , ' 系统名称 ' , ' SYS_SYSTEM_NAME ' , ' Guns快速开发平台 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 25 , ' Beetl默认边界符开始 ' , ' DELIMITER_STATEMENT_START ' , ' @ ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 26 , ' Beetl边界符的结束 ' , ' DELIMITER_STATEMENT_END ' , ' null ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 27 , ' 自定义标签文件Root目录 ' , ' RESOURCE_TAG_ROOT ' , ' common/tags ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 28 , ' 自定义标签文件后缀 ' , ' RESOURCE_TAG_SUFFIX ' , ' tag ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 29 , ' 获取文件生成auth url的失效时间 ' , ' SYS_DEFAULT_FILE_TIMEOUT_SECONDS ' , ' 3600 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 30 , ' 服务默认部署的环境地址 ' , ' SYS_SERVER_DEPLOY_HOST ' , ' http://localhost:8080 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 31 , ' 系统默认头像Base64 ' , ' SYS_DEFAULT_AVATAR_BASE64 ' , ' /9j/4AAQSkZJRgABAQEAeAB4AAD/2wBDAFA3PEY8MlBGQUZaVVBfeMiCeG5uePWvuZHI////////////////////////////////////////////////////2wBDAVVaWnhpeOuCguv/////////////////////////////////////////////////////////////////////////wAARCAIcAhEDASEAAhEBAxEB/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF/8QAJRABAQACAgIBBQEBAQEAAAAAAAECESExAxJBBCIyUWETcRSB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAER/9oADAMBAAIRAxEAPwDxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAIAAAAAAAKAaNAaNAaNAaNAaNAaNAaNAaNAaNAaNAapqgetPWgetPWgetPWoL609aB609aB609aB609aB609aaHrQ0ZFBQAAAAAAAAEAAAAAUAAAUkQNICyba/zvwCXGzuIAAAACgAAACAAoAAAAAAAoA5jSCgAAAAAAAAAAAgACgDWOvkEk3eF9aglAPjg7BdT9tTOyaFanklmrGcsJreIM6v6QQAABQAAQAUUEAABQAAAAAHMaQUAAAAAAAAAAAWcpZoFmNy6TVnYOlwn+e52sxxyxnxQYv20kl7QPaziJ7X9qJsAlXYIAull18orUzny1PXL+AxljZWRAAAABQAAAAAAANgbNgbNgbAYFBQAAAEAAABQAFgJ1XSSUGsftykiZ/lYisXeNXLU5lVGLdgIAACgbWWAuy2WczlAkTfIrWOWu2rhMpvEHK8CoAAgAAAAbNgGwNmwNmwNmwNmwNgIKCgAAAIAAACgAGwKuN0Drr2w4vMc7lf/qCZXbKgAAAAAoC8Lx8oN+ks3jWbLPgVn/rWN10DXkxtx3pyVEAAAAAAAAAAAAAAAAAFAAAAQAAAABRABQaxysvBnZeUGBQAAAAAFBZpqaqC6s66WXXIq3GZf9Y9csQax8lnGSZ4/M6BzsRUAAAAAFAAAAAAAAAQAUAAABAAAFQBFAAAXYCAAAAAAAA1bCA3zOiVFaljUy9b+4gmcl50xrnXwoZYcbjnoAVAAAAAQAAAAVAUAAZFBQAAQAABQBFEAAAAAAAAAAAAAFBZbOnTGzLsFuOuD1s65ZVZuT+JvHLjqqG7izlJeYDGgRFAAAAAAAAAAAABkUFAABAAAFASooAAAAAAAAAAAAAACrsHTHKyc8xuXXMRW5zOY55eOZc43VBiZ3HjKcFk7x6BmxBAAAAAAAAAAAAABkUFAABAAVAUBEUAAAAAAAAAAAAAAAUGsctTVbl+Yit/6RMvuu5wgnfFmyY6vCjGXFZEAAAAAAAAAAAAAGRQUAAEABQBKCCgAAAAAAAAAAAAAACgEugWrM9IOkzla2Kzcd87250EBAAAAAAAAAAAAGRQUAQABQABFEAAAAAAAAAAAAAABQAEAUAl03MkVZlYa3zAYoIAAAAAAAAAAAAyKCgCAoAAAVlQAAAAAAAAAAFXQJZpAVAVAFAQFQBQXbWO98IqZdoIAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAABdAGgVSINa2zcdAIC6X1BmzRpQ0aEAEAVZQa40zYgAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAFAURV0ugNIK1GtbiDPqzcdKirKBcWNaoL2mgXXG2aICiKC9raggAAAAAAAAAAAMiigKIAAAAIigAAAAAKBpdIppdAuhFVLAWXTUoLYa2DOWGkgNT+mWIOd4awntNKjN44ZBFVEAWKAIAAAAAAAAAAAyKKAogAAAAyKAAAAACrICyLpFXTXqip0IGjWwLE5lUdMbuLALPhicXQLcVn6qDOePyxjxko15J8uSogqAAsBRAAAAAAAAAAAGRRQFEAAAEoIKAAAAACrEVqLEVqLEF0zYAsBUs3AZx4rpFUvTGXcEbn9LNdIHccrNVRrvHTllFiIioACwFEAAAAAAAAAAAZFFVAAAAASggoAAAAKC6WIrUWIrUXSKAJQFICZT5awu4o1lOHPOcSiN484xfjSDPVTKCsXitZY7xVHCzSNMgAoKIAAAAAAAAAAAyKKqAAAAAlBBQAAAAWAqxFajUZVqLBVNAaTQJZoAT8buA3LuGU3jYqM+PrTpUGdFgrGUan4g4+SarDUZqCoLAUQAAAAAAAAAABkUVUAAAABKCCgAAACkFai6RValQaioqqAgKmgTS63ATVjWN3FRmT1rp2CWIgzZyY9aFYzm3GxqM1BUFgKIAAAAAAAAAAAyKKqAoIAKAlBEUAAAAUgNRYjStTlBY1EFUUAABZBF1tPVQ1xyToDabAZs5RUscvJjqrErCNMiwFEAAAAAAAAAAAZFFVAUEUAAAZvaKAAAKACtRUVY1EGosQaBVQAgKbVEucjN8sA95UmQFrPILjlq8t9opYx5JuLEcKjTIsBRAQAAAAAAAAFAZFFVBQAAACAmUZUAAAUAFWNILK1KirtZUGtqACgIzlWblVGeU0C6WSg1IvqB6tSIDOX40HmvY2iLBFEEFBUAAAEAFABRBkUWKgoAAACwDLpzWAAAKAAptdoGzdA9q1MgblalZVraygqKrFZ0iLpZAamMa9VDQAIDOXVB5r3UbQVEEAFFEAAAAABAABFUFQUAAABYgvw53tYIKACgCAKKvqetQPWgNRqVFalalQaBUsTQIly0If6rPJuKLM2plKgoAlB5svyrLSNY47p8iIAgCqAgKAIAAIAAiqCoKAAAAsQVjLtYMigAoAANRFdMdNcILqJcIKxcdMgsreNB0ioIzaKxbpyyvKxDG6d/DzhVqLl4/mMyWIrpFQEoPP5JrKstI6Y8Y7YoiAIAoAAAAAAIAAiqCoKAAAAsQVjPtRkUAFAAUWXQHtV96g3Ll67WZ67RW7qzcc8oDDpiDri1UEYorGUZuG1QnitrvjJjNRUKSIq6VAqUHn8s+5idtI7ZTWDkCAiAKAIAoAAoIgACKoogoAACAsUWJlAcxQAUFAAEAG/HLbJ8O+eEuKK5YZet1W84iuNbwB2xbqDKWCsWEEWNRRo0CiCJQcfJOXPXKjp5LxI5qiAiKAAgoACoAAgACKoogoAAACxBYt5ijnYyoAKCggCjUkamMQdMdY9NbRUslMvxBxrWAO2LaCAJYxoVY1BGoKAglZoMWbqeqjPkYVmoAigAIKAAAogIAAiqLFQBAABQWINAJY52KIKKCjUQLE0DUjciK1IqCsZUHOrjeVHbFtAAXTNgJpYDUVQSglZqDN7akBw8n5MqygoigAIKAAAogIAAiqLFQBAABQWINQUGMoDAooKNRBrRpFakaiCgFc7RWKuPao74tooCLFBmxFFiwFQGalRWflq8YiPPe6jTKAIoACCgAAKICAAIqixUAQAAUFiDUFBL0DmigoDURW41EVVQUFZrnlVRhrHtR2xdPhkAFgAigoCAiVBJ2nkuppRwFZQBFAAQUABUBQQAAZVRYqAIAAKCxBqCgA55dsqCgLEVvFuJVaEFBWcunHK8rERrHtR2xdIyAAbAVQAEBGagThxzu8lRm3YqCAigAIKAAqCgIAAMqosVAABAAFgNQUARnKOaqKACt41uVmq1FQUFc/Jl8OTUQax7B1xdsWQqAICxQBQQEZvSDnnnxqObSAIgCKAAIoAAg0AgAAyqixUAAEAEFiq1AABL050AUAVY3jUqtytRkUvQPPnd1lpFJQdsK6SorVrNykQWXa6BFgKKIIIxnftoOE5q3hpEBEARQAAAQBQUAQABlVFEFABAAFijUUEAK55QERRQUalQblblRVTO6xB56NIANY5adcc2arc5S4yoNYzTQFhFAAEErn5PxUcZxVqogIgCKCgIAAACgFQABlVFEFABAAFijUUEAGbAYsFAFFgNS
2021-01-02 14:42:40 +00:00
INSERT INTO ` sys_config ` VALUES ( 32 , ' 用于auth模块权限校验的jwt失效时间 ' , ' SYS_AUTH_JWT_TIMEOUT_SECONDS ' , ' 604800 ' , ' Y ' , NULL , 1 , ' auth_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2021-01-10 06:05:01 +00:00
INSERT INTO ` sys_config ` VALUES ( 33 , ' Druid监控界面的url映射 ' , ' SYS_DRUID_URL_MAPPINGS ' , ' /druid/* ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 34 , ' Druid控制台账号 ' , ' SYS_DRUID_ACCOUNT ' , ' admin ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 35 , ' Druid控制台账号密码 ' , ' SYS_DRUID_PASSWORD ' , ' ' , ' Y ' , ' 默认是空串,为空会让程序自动创建一个随机密码 ' , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 36 , ' Druid控制台的监控数据是否可以重置清零 ' , ' SYS_DRUID_RESET_ENABLE ' , ' false ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 37 , ' druid web url统计的拦截范围 ' , ' SYS_DRUID_WEB_STAT_FILTER_URL_PATTERN ' , ' /* ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 38 , ' druid web url统计的排除拦截表达式 ' , ' SYS_DRUID_WEB_STAT_FILTER_EXCLUSIONS ' , ' *.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/* ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 39 , ' druid web url统计的session统计开关 ' , ' SYS_DRUID_WEB_STAT_FILTER_SESSION_STAT_ENABLE ' , ' false ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 40 , ' druid web url统计的session名称 ' , ' SYS_DRUID_WEB_STAT_FILTER_PRINCIPAL_SESSION_NAME ' , ' Authorization ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 41 , ' druid web url统计的session最大监控数 ' , ' SYS_DRUID_WEB_STAT_FILTER_SESSION_STAT_MAX_COUNT ' , ' 1000 ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 42 , ' druid web url统计的cookie名称 ' , ' SYS_DRUID_WEB_STAT_FILTER_PRINCIPAL_COOKIE_NAME ' , ' Authorization ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 43 , ' druid web url统计的是否开启监控单个url调用的sql列表 ' , ' SYS_DRUID_WEB_STAT_FILTER_PROFILE_ENABLE ' , ' true ' , ' Y ' , NULL , 1 , ' sys_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2021-01-16 02:50:09 +00:00
INSERT INTO ` sys_config ` VALUES ( 44 , ' 阿里云短信的accessKeyId ' , ' SYS_ALIYUN_SMS_ACCESS_KEY_ID ' , ' 你的accessKeyId ' , ' Y ' , NULL , 1 , ' sms_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 45 , ' 阿里云短信的accessKeySecret ' , ' SYS_ALIYUN_SMS_ACCESS_KEY_SECRET ' , ' 你的secret ' , ' Y ' , NULL , 1 , ' sms_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 46 , ' 阿里云短信的签名 ' , ' SYS_ALIYUN_SMS_SIGN_NAME ' , ' 签名名称 ' , ' Y ' , NULL , 1 , ' sms_config ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2021-01-17 07:20:58 +00:00
INSERT INTO ` sys_config ` VALUES ( 1350666094452482049 , ' 获取XSS排除过滤的url范围 ' , ' SYS_XSS_URL_EXCLUSIONS ' , ' /sysNotice/add,/sysNotice/edit ' , ' Y ' , ' ' , 1 , ' sys_config ' , ' N ' , ' 2021-01-17 12:47:46 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_config ` VALUES ( 1350666483050553346 , ' beetl自定义支持HTML标签 ' , ' HTML_TAG_FLAG ' , ' tag: ' , ' Y ' , ' ' , 1 , ' sys_config ' , ' N ' , ' 2021-01-17 12:49:18 ' , 1339550467939639299 , NULL , NULL ) ;
2020-12-13 11:14:29 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_database_info
-- ----------------------------
DROP TABLE IF EXISTS ` sys_database_info ` ;
CREATE TABLE ` sys_database_info ` (
2020-12-19 15:15:42 +00:00
` db_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` db_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 数据库名称(英文名称) ' ,
` jdbc_driver ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' jdbc的驱动类型 ' ,
` jdbc_url ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' jdbc的url ' ,
` username ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 数据库连接的账号 ' ,
` password ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 数据库连接密码 ' ,
2020-12-11 10:18:48 +00:00
` remarks ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 备注,摘要 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除, Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` db_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 多数据源信息 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_dict
-- ----------------------------
DROP TABLE IF EXISTS ` sys_dict ` ;
CREATE TABLE ` sys_dict ` (
2021-01-16 15:41:55 +00:00
` dict_id ` bigint ( 0 ) NOT NULL COMMENT ' 字典id ' ,
2020-12-26 14:45:51 +00:00
` dict_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 字典编码 ' ,
2020-12-19 15:15:42 +00:00
` dict_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 字典名称 ' ,
2020-12-26 14:45:51 +00:00
` dict_name_pinyin ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典名称首字母 ' ,
` dict_encode ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典编码 ' ,
` dict_type_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 字典类型的编码 ' ,
2020-12-11 10:18:48 +00:00
` dict_short_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典简称 ' ,
` dict_short_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典简称的编码 ' ,
2021-01-16 15:41:55 +00:00
` dict_parent_id ` bigint ( 0 ) NOT NULL COMMENT ' 上级字典的id(如果没有上级字典id, 则为-1) ' ,
` status_flag ` tinyint ( 0 ) NOT NULL COMMENT ' 状态:(1-启用,2-禁用),参考 StatusEnum ' ,
2020-12-19 15:15:42 +00:00
` dict_sort ` decimal ( 10 , 2 ) NULL DEFAULT NULL COMMENT ' 排序,带小数点 ' ,
2020-12-26 14:45:51 +00:00
` dict_pids ` varchar ( 1000 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 父id集合 ' ,
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除, Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
2021-01-16 15:41:55 +00:00
` create_user ` bigint ( 0 ) NULL DEFAULT NULL COMMENT ' 创建用户id ' ,
2020-12-11 10:18:48 +00:00
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
2021-01-16 15:41:55 +00:00
` update_user ` bigint ( 0 ) NULL DEFAULT NULL COMMENT ' 修改用户id ' ,
PRIMARY KEY ( ` dict_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2021-01-16 15:41:55 +00:00
-- ----------------------------
-- Records of sys_dict
-- ----------------------------
INSERT INTO ` sys_dict ` VALUES ( 1348235720908619802 , ' M ' , ' 男 ' , ' n ' , ' male ' , ' sex ' , NULL , NULL , - 1 , 1 , 1 . 00 , ' [-1], ' , ' N ' , ' 2021-01-14 14:46:13 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1348235720908619803 , ' F ' , ' 女 ' , ' n ' , ' female ' , ' sex ' , NULL , NULL , - 1 , 1 , 2 . 00 , ' [-1], ' , ' N ' , ' 2021-01-14 14:46:13 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1348235720908619804 , ' 1 ' , ' 启用 ' , ' n ' , ' male ' , ' user_status ' , NULL , NULL , - 1 , 1 , 1 . 00 , ' [-1], ' , ' N ' , ' 2021-01-14 14:46:13 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1348235720908619805 , ' 2 ' , ' 禁用 ' , ' n ' , ' female ' , ' user_status ' , NULL , NULL , - 1 , 1 , 2 . 00 , ' [-1], ' , ' N ' , ' 2021-01-14 14:46:13 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1348235720908619806 , ' 3 ' , ' 冻结 ' , ' n ' , ' female ' , ' user_status ' , NULL , NULL , - 1 , 1 , 2 . 00 , ' [-1], ' , ' N ' , ' 2021-01-14 14:46:13 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1350457799368257537 , ' low ' , ' 低 ' , ' d ' , NULL , ' priority_level ' , ' 低 ' , ' ' , - 1 , 1 , 1 . 00 , ' -1 ' , ' N ' , ' 2021-01-16 23:00:04 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1350457870780477442 , ' middle ' , ' 中 ' , ' z ' , NULL , ' priority_level ' , ' 中 ' , ' ' , - 1 , 1 , 2 . 00 , ' -1 ' , ' N ' , ' 2021-01-16 23:00:21 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_dict ` VALUES ( 1350457950417727489 , ' high ' , ' 高 ' , ' g ' , NULL , ' priority_level ' , ' 高 ' , ' ' , - 1 , 1 , 3 . 00 , ' -1 ' , ' N ' , ' 2021-01-16 23:00:40 ' , 1339550467939639299 , NULL , NULL ) ;
2021-01-14 07:32:22 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS ` sys_dict_type ` ;
CREATE TABLE ` sys_dict_type ` (
2021-01-16 15:41:55 +00:00
` dict_type_id ` bigint ( 0 ) NOT NULL COMMENT ' 字典类型id ' ,
` dict_type_class ` int ( 0 ) NULL DEFAULT NULL COMMENT ' 字典类型: 1-业务类型, 2-系统类型,参考 DictTypeClassEnum ' ,
2020-12-26 14:45:51 +00:00
` dict_type_bus_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典类型业务编码 ' ,
` dict_type_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典类型编码 ' ,
` dict_type_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典类型名称 ' ,
` dict_type_name_pinyin ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典类型名称首字母拼音 ' ,
2020-12-11 10:18:48 +00:00
` dict_type_desc ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 字典类型描述 ' ,
2021-01-16 15:41:55 +00:00
` status_flag ` tinyint ( 0 ) NULL DEFAULT NULL COMMENT ' 字典类型的状态: 1-启用, 2-禁用,参考 StatusEnum ' ,
2020-12-26 14:45:51 +00:00
` dict_type_sort ` decimal ( 10 , 2 ) NULL DEFAULT NULL COMMENT ' 排序,带小数点 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
2021-01-16 15:41:55 +00:00
` create_user ` bigint ( 0 ) NULL DEFAULT NULL COMMENT ' 创建用户id ' ,
2020-12-11 10:18:48 +00:00
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
2021-01-16 15:41:55 +00:00
` update_user ` bigint ( 0 ) NULL DEFAULT NULL COMMENT ' 修改用户id ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` dict_type_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 字典类型 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2021-01-16 15:41:55 +00:00
-- ----------------------------
-- Records of sys_dict_type
-- ----------------------------
INSERT INTO ` sys_dict_type ` VALUES ( 1348235720908619811 , 1 , ' base ' , ' sex ' , ' 性别 ' , ' xb ' , NULL , 1 , 1 . 00 , ' N ' , ' 2021-01-14 14:47:32 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict_type ` VALUES ( 1348235720908619812 , 2 , ' system ' , ' user_status ' , ' 用户状态 ' , ' yhzt ' , NULL , 1 , 2 . 00 , ' N ' , ' 2021-01-14 14:47:32 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_dict_type ` VALUES ( 1350457656690618370 , 1 , ' notice ' , ' priority_level ' , ' 优先级 ' , ' yxj ' , ' ' , 1 , 5 . 00 , ' N ' , ' 2021-01-16 22:59:30 ' , 1339550467939639299 , NULL , NULL ) ;
2021-01-14 07:32:22 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_file_info
-- ----------------------------
DROP TABLE IF EXISTS ` sys_file_info ` ;
CREATE TABLE ` sys_file_info ` (
2020-12-19 15:15:42 +00:00
` file_id ` bigint ( 20 ) NOT NULL COMMENT ' 文件主键id ' ,
2021-01-01 08:15:42 +00:00
` file_code ` bigint ( 20 ) NOT NULL COMMENT ' 文件编码,本号升级的依据,解决一个文件多个版本问题,多次上传文件编码不变 ' ,
` file_version ` int ( 11 ) NOT NULL DEFAULT 1 COMMENT ' 文件版本, 从1开始 ' ,
` file_status ` char ( 1 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ' 1 ' COMMENT ' 当前状态: 0-历史版,1-最新版 ' ,
2020-12-19 15:15:42 +00:00
` file_location ` tinyint ( 4 ) NOT NULL COMMENT ' 文件存储位置: 1-阿里云, 2-腾讯云, 3-minio, 4-本地 ' ,
` file_bucket ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 文件仓库(文件夹) ' ,
` file_origin_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT ' 文件名称(上传时候的文件全名) ' ,
` file_suffix ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 文件后缀,例如.txt ' ,
` file_size_kb ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 文件大小kb为单位 ' ,
2021-01-01 08:15:42 +00:00
` file_size_info ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 文件大小信息,计算后的 ' ,
2020-12-19 15:15:42 +00:00
` file_object_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 存储到bucket中的名称, 主键id+.后缀 ' ,
2020-12-11 10:18:48 +00:00
` file_path ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 存储路径 ' ,
2021-01-01 08:15:42 +00:00
` secret_flag ` char ( 1 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 是否为机密文件, Y-是机密, N-不是机密 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` file_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 文件信息 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-14 15:32:18 +00:00
-- ----------------------------
-- Records of sys_file_info
-- ----------------------------
2021-01-01 08:15:42 +00:00
INSERT INTO ` sys_file_info ` VALUES ( 10000 , - 1 , 1 , ' 1 ' , 4 , ' defaultBucket ' , ' defaultAvatar.png ' , ' .png ' , 12 , ' 11.56 kB ' , ' 10000.png ' , NULL , ' Y ' , ' N ' , ' 2020-12-29 20:07:14 ' , NULL , NULL , NULL ) ;
2020-12-14 15:32:18 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_log
-- ----------------------------
DROP TABLE IF EXISTS ` sys_log ` ;
CREATE TABLE ` sys_log ` (
2020-12-19 15:15:42 +00:00
` log_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` log_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 日志的名称,一般为业务名称 ' ,
` log_content ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 日志记录的内容 ' ,
2020-12-11 10:18:48 +00:00
` app_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 服务名称, 一般为spring.application.name ' ,
2020-12-19 15:15:42 +00:00
` request_url ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 当前用户请求的url ' ,
` request_params ` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT ' http或方法的请求参数体 ' ,
2021-01-07 12:48:32 +00:00
` request_result ` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT ' http或方法的请求结果 ' ,
2020-12-11 10:18:48 +00:00
` server_ip ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 当前服务器的ip ' ,
` client_ip ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 客户端的ip ' ,
2020-12-19 15:15:42 +00:00
` user_id ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 用户id ' ,
` http_method ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 请求http方法 ' ,
` client_browser ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 客户浏览器标识 ' ,
` client_os ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 客户操作系统 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` log_id ` ) USING BTREE
2020-12-11 10:18:48 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 日志记录 ' ROW_FORMAT = Dynamic ;
2021-01-13 12:42:31 +00:00
-- ----------------------------
-- Table structure for sys_login_log
-- ----------------------------
DROP TABLE IF EXISTS ` sys_login_log ` ;
CREATE TABLE ` sys_login_log ` (
` llg_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` llg_name ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 日志名称 ' ,
` llg_succeed ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 是否执行成功 ' ,
` llg_message ` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT ' 具体消息 ' ,
` llg_ip_address ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 登录ip ' ,
` user_id ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 用户id ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
PRIMARY KEY ( ` llg_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 登录记录 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS ` sys_menu ` ;
CREATE TABLE ` sys_menu ` (
2020-12-19 15:15:42 +00:00
` menu_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
2021-01-06 10:01:57 +00:00
` menu_parent_id ` bigint ( 20 ) NOT NULL COMMENT ' 父id, 顶级节点的父id是-1 ' ,
2020-12-19 15:15:42 +00:00
` menu_pids ` varchar ( 1000 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 父id集合, 中括号包住, 逗号分隔 ' ,
` menu_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 菜单的名称 ' ,
` menu_code ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 菜单的编码 ' ,
` app_code ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 应用编码 ' ,
` visible ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' Y ' COMMENT ' 是否可见: Y-是, N-否 ' ,
2020-12-29 12:23:55 +00:00
` menu_sort ` decimal ( 10 , 2 ) NOT NULL DEFAULT 100 . 00 COMMENT ' 排序 ' ,
` status_flag ` tinyint ( 4 ) NOT NULL DEFAULT 1 COMMENT ' 状态: 1-启用, 2-禁用 ' ,
2020-12-11 10:18:48 +00:00
` remark ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 备注 ' ,
2021-01-05 08:45:55 +00:00
` layui_path ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 菜单的路径, 适用于layui-beetl版本 ' ,
` layui_icon ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 菜单的图标, 适用于layui-beetl版本 ' ,
` antdv_router ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 路由地址, 浏览器显示的URL, 例如/menu, 适用于antdvue版本 ' ,
` antdv_icon ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT ' icon-default ' COMMENT ' 图标, 适用于antdvue版本 ' ,
2021-01-07 10:45:35 +00:00
` antdv_component ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 前端组件名, 适用于antdvue版本 ' ,
2021-01-05 08:45:55 +00:00
` antdv_link_open_type ` tinyint ( 4 ) NULL DEFAULT 0 COMMENT ' 外部链接打开方式: 1-内置打开外链, 2-新页面外链, 适用于antdvue版本 ' ,
` antdv_link_url ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 外部链接地址, 适用于antdvue版本 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` menu_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 系统菜单 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-17 13:15:49 +00:00
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639301 , - 1 , ' [-1], ' , ' 主控面板 ' , ' blackboard ' , ' system ' , ' Y ' , 10 . 00 , 1 , NULL , ' ' , ' layui-icon-theme ' , ' dashboard ' , ' dashboard ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 20:52:34 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639302 , 1339550467939639301 , ' [-1],[1339550467939639301], ' , ' 工作台 ' , ' board_platform ' , ' system ' , ' Y ' , 10 . 10 , 1 , NULL , ' /view/dashboard/workplace ' , ' layui-icon-rate-solid ' , ' workplace ' , ' shop ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , 1339550467939639299 , ' 2021-01-08 20:52:34 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639303 , 1339550467939639301 , ' [-1],[1339550467939639301], ' , ' 分析页 ' , ' board_analyse ' , ' system ' , ' Y ' , 10 . 20 , 1 , NULL , ' /view/dashboard/analysis ' , NULL , ' analysis ' , ' rocket ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 20:52:34 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639304 , - 1 , ' [-1], ' , ' 组织架构 ' , ' org ' , ' system ' , ' Y ' , 20 . 00 , 1 , NULL , ' ' , ' layui-icon-template-1 ' , ' orginfo ' , ' apartment ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:47:06 ' , 1339550467939639299 ) ;
2021-01-09 04:32:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639305 , 1339550467939639304 , ' [-1],[1339550467939639304], ' , ' 用户管理 ' , ' org_user ' , ' system ' , ' Y ' , 20 . 10 , 1 , NULL , ' /view/user ' , NULL , ' user ' , ' user ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639306 , 1339550467939639304 , ' [-1],[1339550467939639304], ' , ' 机构管理 ' , ' org_main ' , ' system ' , ' Y ' , 20 . 20 , 1 , NULL , ' /view/organization ' , NULL , ' organization ' , ' table ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639307 , 1339550467939639304 , ' [-1],[1339550467939639304], ' , ' 职位管理 ' , ' org_position ' , ' system ' , ' Y ' , 20 . 30 , 1 , NULL , ' /view/position ' , NULL , ' position ' , ' solution ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639308 , - 1 , ' [-1], ' , ' 权限管理 ' , ' auth ' , ' system ' , ' Y ' , 30 . 00 , 1 , NULL , ' ' , ' layui-icon-vercode ' , ' authority ' , ' build ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 17:20:19 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639309 , 1339550467939639308 , ' [-1],[1339550467939639308], ' , ' 应用管理 ' , ' auth_app ' , ' system ' , ' Y ' , 30 . 10 , 1 , NULL , ' /view/app ' , NULL , ' application ' , ' appstore ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:45:55 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639310 , 1339550467939639308 , ' [-1],[1339550467939639308], ' , ' 菜单管理 ' , ' auth_menu ' , ' system ' , ' Y ' , 30 . 20 , 1 , NULL , ' /view/menu ' , NULL , ' menu ' , ' menu ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:45:55 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639311 , 1339550467939639308 , ' [-1],[1339550467939639308], ' , ' 角色管理 ' , ' auth_role ' , ' system ' , ' Y ' , 30 . 30 , 1 , NULL , ' /view/role ' , NULL , ' role ' , ' slack ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:45:55 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639312 , 1339550467939639308 , ' [-1],[1339550467939639308], ' , ' 资源管理 ' , ' auth_resource ' , ' system ' , ' Y ' , 30 . 40 , 1 , NULL , ' /view/resource ' , NULL , ' resource ' , ' bars ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:45:55 ' , 1339550467939639299 ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639313 , - 1 , ' [-1], ' , ' 基础数据 ' , ' base ' , ' system ' , ' Y ' , 40 . 00 , 1 , NULL , ' ' , ' layui-icon-component ' , ' base ' , ' coffee ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:47:41 ' , 1339550467939639299 ) ;
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639314 , 1339550467939639313 , ' [-1],[1339550467939639313], ' , ' 系统配置 ' , ' base_sysconfig ' , ' system ' , ' Y ' , 40 . 10 , 1 , NULL , ' /view/config ' , NULL , ' sysconfig ' , ' file-done ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639315 , 1339550467939639313 , ' [-1],[1339550467939639313], ' , ' 字典管理 ' , ' base_dict ' , ' system ' , ' Y ' , 40 . 20 , 1 , NULL , ' /view/dictType ' , NULL , ' dict ' , ' icon-default ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639316 , 1339550467939639313 , ' [-1],[1339550467939639313], ' , ' 接口文档 ' , ' base_apis ' , ' system ' , ' Y ' , 40 . 30 , 1 , NULL , ' /view/api ' , NULL , ' api ' , ' api ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639317 , - 1 , ' [-1], ' , ' 系统功能 ' , ' sys ' , ' system ' , ' Y ' , 50 . 00 , 1 , NULL , ' ' , ' layui-icon-set ' , ' system ' , ' thunderbolt ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:47:49 ' , 1339550467939639299 ) ;
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639318 , 1339550467939639317 , ' [-1],[1339550467939639317], ' , ' 文件管理 ' , ' sys_file ' , ' system ' , ' Y ' , 50 . 10 , 1 , NULL , ' /view/file ' , NULL , ' file ' , ' tags ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639319 , 1339550467939639317 , ' [-1],[1339550467939639317], ' , ' 操作日志 ' , ' operate_log ' , ' system ' , ' Y ' , 50 . 20 , 1 , NULL , ' /view/log ' , NULL , ' logs ' , ' global ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-11 15:12:40 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639320 , 1339550467939639317 , ' [-1],[1339550467939639317], ' , ' 在线用户 ' , ' sys_online ' , ' system ' , ' Y ' , 50 . 30 , 1 , NULL , ' /view/onlineUser ' , NULL , ' online ' , ' laptop ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639321 , 1339550467939639317 , ' [-1],[1339550467939639317], ' , ' 定时任务 ' , ' sys_timer ' , ' system ' , ' Y ' , 50 . 40 , 1 , NULL , ' /view/sysTimers ' , NULL , ' timer ' , ' inbox ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639322 , - 1 , ' [-1], ' , ' 通知管理 ' , ' notice ' , ' system ' , ' Y ' , 60 . 00 , 1 , NULL , ' ' , ' layui-icon-tips ' , ' notice ' , ' bell ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:47:56 ' , 1339550467939639299 ) ;
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639323 , 1339550467939639322 , ' [-1],[1339550467939639322], ' , ' 通知发布 ' , ' notice_update ' , ' system ' , ' Y ' , 60 . 10 , 1 , NULL , ' /view/notice ' , NULL , ' noticePublish ' , ' cloud ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-13 12:42:31 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639324 , 1339550467939639322 , ' [-1],[1339550467939639322], ' , ' 我的消息 ' , ' notice_find ' , ' system ' , ' Y ' , 60 . 20 , 1 , NULL , ' /view/message_list ' , NULL , ' noticeLook ' , ' sound ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639325 , - 1 , ' [-1], ' , ' 监控管理 ' , ' monitor ' , ' system ' , ' Y ' , 70 . 00 , 1 , NULL , ' ' , ' layui-icon-console ' , ' monitor ' , ' monitor ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , ' 2021-01-08 16:48:52 ' , 1339550467939639299 ) ;
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639326 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' SQL监控 ' , ' monitor_druid ' , ' system ' , ' Y ' , 70 . 10 , 1 , NULL , ' /view/monitor/druid ' , NULL , ' druid ' , ' database ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639327 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' 性能监控 ' , ' monitor_quality ' , ' system ' , ' Y ' , 70 . 20 , 1 , NULL , ' /view/quality ' , NULL , ' quality ' , ' fire ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639328 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' Redis监控 ' , ' monitor_redis ' , ' system ' , ' Y ' , 70 . 30 , 1 , NULL , ' /view/redis ' , NULL , ' redis ' , ' lock ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639329 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' Tomcat信息 ' , ' monitor_tomcat ' , ' system ' , ' Y ' , 70 . 40 , 1 , NULL , ' /view/tomcat ' , NULL , ' tomcat ' , ' pushpin ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639330 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' 服务器信息 ' , ' monitor_server ' , ' system ' , ' Y ' , 70 . 50 , 1 , NULL , ' /view/monitor/systemInfo ' , NULL , ' server ' , ' desktop ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639331 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' JVM信息 ' , ' monitor_jvm ' , ' system ' , ' Y ' , 70 . 60 , 1 , NULL , ' /view/jvm ' , NULL , ' jvm ' , ' rocket ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639332 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' 请求跟踪 ' , ' monitor_trace ' , ' system ' , ' Y ' , 70 . 70 , 1 , NULL , ' /view/trace ' , NULL , ' trace ' , ' switcher ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639333 , 1339550467939639325 , ' [-1],[1339550467939639325], ' , ' 磁盘监控 ' , ' monitor_disk ' , ' system ' , ' Y ' , 70 . 80 , 1 , NULL , ' /view/disk ' , NULL , ' disk ' , ' hdd ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu ` VALUES ( 1339550467939639334 , 1339550467939639317 , ' [-1],[1339550467939639317], ' , ' 登录日志 ' , ' login_log ' , ' system ' , ' Y ' , 50 . 21 , 1 , NULL , ' /view/loginLog ' , NULL , ' logs ' , ' global ' , NULL , NULL , NULL , ' N ' , ' 2020-12-29 19:51:14 ' , NULL , NULL , NULL ) ;
2020-12-14 15:32:18 +00:00
2021-01-08 15:01:12 +00:00
-- ----------------------------
-- Table structure for sys_menu_button
-- ----------------------------
DROP TABLE IF EXISTS ` sys_menu_button ` ;
CREATE TABLE ` sys_menu_button ` (
` button_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` menu_id ` bigint ( 20 ) NOT NULL COMMENT ' 菜单id, 按钮需要挂在菜单下 ' ,
` button_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 按钮的名称 ' ,
` button_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 按钮的编码 ' ,
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
PRIMARY KEY ( ` button_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 菜单下的按钮 ' ROW_FORMAT = Dynamic ;
2021-01-09 04:07:39 +00:00
-- ----------------------------
-- Records of sys_menu_button
-- ----------------------------
INSERT INTO ` sys_menu_button ` VALUES ( 1347753823522807838 , 1339550467939639311 , ' 角色管理_新增角色 ' , ' BUTTON_ROLE_ADD ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu_button ` VALUES ( 1347753823522807839 , 1339550467939639311 , ' 角色管理_修改角色 ' , ' BUTTON_ROLE_EDIT ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu_button ` VALUES ( 1347753823522807840 , 1339550467939639311 , ' 角色管理_删除角色 ' , ' BUTTON_ROLE_DELETE ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu_button ` VALUES ( 1347753823522807841 , 1339550467939639311 , ' 角色管理_分配菜单和按钮 ' , ' BUTTON_ROLE_ASSIGN_MENU_BUTTON ' , ' N ' , NULL , NULL , NULL , NULL ) ;
INSERT INTO ` sys_menu_button ` VALUES ( 1347753823522807842 , 1339550467939639311 , ' 角色管理_分配资源 ' , ' BUTTON_ROLE_ASSIGN_RESOURCE ' , ' N ' , NULL , NULL , NULL , NULL ) ;
2021-01-10 05:53:36 +00:00
-- ----------------------------
-- Table structure for sys_message
-- ----------------------------
DROP TABLE IF EXISTS ` sys_message ` ;
CREATE TABLE ` sys_message ` (
` message_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` receive_user_id ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 接收用户id ' ,
` send_user_id ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 发送用户id ' ,
` message_title ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 消息标题 ' ,
` message_content ` varchar ( 512 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 消息内容 ' ,
` message_type ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 消息类型 ' ,
` priority_level ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 优先级 ' ,
` message_send_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 消息发送时间 ' ,
` business_id ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 业务id ' ,
` business_type ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 业务类型(根据业务id和业务类型可以确定业务数据) ' ,
` read_flag ` tinyint ( 4 ) NULL DEFAULT 0 COMMENT ' 阅读状态: 0-未读, 1-已读 ' ,
` del_flag ` char ( 1 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
PRIMARY KEY ( ` message_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 系统消息 ' ROW_FORMAT = Dynamic ;
-- ----------------------------
-- Table structure for sys_notice
-- ----------------------------
DROP TABLE IF EXISTS ` sys_notice ` ;
CREATE TABLE ` sys_notice ` (
` notice_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` notice_title ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 通知标题 ' ,
` notice_summary ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 通知摘要 ' ,
` notice_content ` varchar ( 512 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 通知内容 ' ,
` priority_level ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 优先级 ' ,
` notice_begin_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 开始时间 ' ,
` notice_end_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 结束时间 ' ,
` notice_scope ` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT ' 通知范围( 用户id字符串) ' ,
` del_flag ` char ( 1 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
PRIMARY KEY ( ` notice_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 通知管理 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_resource
-- ----------------------------
DROP TABLE IF EXISTS ` sys_resource ` ;
CREATE TABLE ` sys_resource ` (
2020-12-19 15:15:42 +00:00
` resource_id ` bigint ( 20 ) NOT NULL COMMENT ' 资源id ' ,
` app_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 应用编码 ' ,
` resource_code ` varchar ( 200 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 资源编码 ' ,
` resource_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 资源名称 ' ,
` project_code ` varchar ( 64 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 项目编码, 一般为spring.application.name ' ,
2020-12-11 10:18:48 +00:00
` class_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 类名称 ' ,
` method_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 方法名称 ' ,
2020-12-19 15:15:42 +00:00
` modular_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 资源模块编码, 一般为控制器类名排除Controller ' ,
` modular_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 资源模块名称,一般为控制器名称 ' ,
2020-12-11 10:18:48 +00:00
` ip_address ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 资源初始化的服务器ip地址 ' ,
2021-01-05 07:14:33 +00:00
` view_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 是否是视图类型: Y-是, N-否\r\n如果是视图类型, url需要以 \ ' / view \ ' 开头,\r\n视图类型的接口会渲染出html界面, 而不是json数据, \r\n视图层一般会在前后端不分离项目出现 ' ,
2020-12-11 10:18:48 +00:00
` url ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 资源url ' ,
` http_method ` varchar ( 10 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' http请求方法 ' ,
2020-12-19 15:15:42 +00:00
` 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-否 ' ,
2020-12-13 11:14:29 +00:00
` 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 ' 接口返回结果的字段描述 ' ,
2020-12-11 10:18:48 +00:00
` 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 ' 更新时间 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` resource_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 资源 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-13 11:14:29 +00:00
-- ----------------------------
-- Records of sys_resource
-- ----------------------------
2021-01-13 12:42:31 +00:00
INSERT INTO ` sys_resource ` VALUES ( 1349328285015863297 , ' guns ' , ' guns$hr_organization$update_status ' , ' 修改组织机构状态 ' , ' guns ' , ' HrOrganizationController ' , ' updateStatus ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/updateStatus ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"b36a1cdcf2af424ab11f7aaa7e7210b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"24549473b93443d791bd1f804b6bd06a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"118a00bb8804437fafa69e192367a337\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1c6e7db95ce14a2f874a502673e3bd71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4190ed9285d14801960583f17a0c5208\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"3246bb33587b479a92bf71b82fde3036\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"bc699a22449648169876be01c3d7850c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8f1abe43f038466aaf3a7a6913b425e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"dd881991da99496a8408016da9f90b7c\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a4ffd9237c2946fe9d2933b994c2a429\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6bec16bed7d14e3597a0e1de3e437b50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"792807ee4eed43c5b7b02d998fd03b5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"758414814e6d4fc481d1c2e9a8a213f7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285057806338 , ' guns ' , ' guns$hr_organization$edit ' , ' 编辑系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' edit ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5273cef932e9492ca0f8d357791dc7c5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"80e3edc06bb440b2b0b3bbda5161f2c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9485e24da7ec4b08ab1f0e9c4a16c132\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b78beb726b8841fd812bb9618e9805dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"1b091eb396da4782829a2903204a5c75\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"2d2e49a836944975bb16bd0c51720074\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"f4c97638461f4d87b818e93430a42cc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0d098909addd45368f03c2adbb23ee86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d6659439bb7a47b8a590ef6989a4b1af\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"281efb1061c2484b811f545d67ad0a1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"79f5c2d424664a079c9846279ed6d56e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"14cf6f60f8da43cc91928a562e702b11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d647f391cd6e412eb76a583fd86a3f39\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285066194946 , ' guns ' , ' guns$hr_organization$list ' , ' 获取全部系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' list ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9cdf30cdaff44fbba39bbe60c36f5d88\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"10e87cfb708c48c9b02d912418310fd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d024442eeb3749e2b1cc10e2ba6c9023\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"fda91b02fe29423c908b99020b96232f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"24a8730250224f8f9a8ad7c6251f0702\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5274542e7d3b4af1857744b71e2a4f1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"da15a138ad0348ab8e0d6c0dac359df3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"d4f682960ae54f86887d63b135c4b8da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"69c10f493d0141f3baca6899b27a2870\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"03f99126e2fe477e81a351d21761124d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6ba7d7bb7d394942aa1efe4af70d435a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d396bccbe3814a7b8bf46f510ca91190\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1ff2d34bb6a249c6989e11d934739605\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285070389249 , ' guns ' , ' guns$hr_organization$detail ' , ' 查看详情系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' detail ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b04de9625e0f434ea0251e5395f6691e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"124b13508d0c430fbe8de2e7eb301f69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"e71cc5299f594a51a403a37c04145ff1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"cb74abeb215c4471ab1e35a97ed9cf9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0b5570fbe99f4728af11be92e84410cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"66d309f3e72e467ca9534f122c89cc7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"896005a614fc4319bf250351b526e21d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8b36f48cca7b4a68954c5af8c33259bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"67910932637844b5803e8458b32121d6\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"91c15c0a64434adfba265890d1ddf5e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e54a4653e5d34fb4bbaef963d0bbad3b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"25c5131d55da478fbd14c0527d248262\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"70accc0bbcf9421d82ff333a818750e2\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285078777858 , ' guns ' , ' guns$hr_organization$page ' , ' 分页查询系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' page ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"88dccfab44b342cdbcb9ce6cf390ad3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b14c87339e10498aafb8202c3b90a122\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6653d5acde1244bca7fbb73510e0a8a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"7a7ba099c3e244339f56b7a397eb9bc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"2995a3374e084d3e8e61c7fe1cc66079\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"ad0ea00eb79f4a0b8d8d3b085710dd53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1e9fba3351dc47c6905548a98f155d25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"98881314e46c4e748c22e42ae9a98025\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3371a2b70f9b4d74b4e0c2a63638652d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4c3b09f34993493797970e400da1e943\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d39626006b824f06a8ab4ca74b94895d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d9aed86ad5d64048ae68a7e116af1f03\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"800419c9eb394214bb71a97afd0d307e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285091360769 , ' guns ' , ' guns$hr_organization$tree ' , ' 获取全部系统组织机构树 ' , ' guns ' , ' HrOrganizationController ' , ' tree ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/tree ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2504ea797c844d78a9ce3aef6c97dab9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"547aa02e0da14893971b784a10f0c6a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e16e42a5a6904c00ba05081763308fd0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e83bc8312acf4117b75067861e3ad7bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"ab09e10ce8b64ccc90720ddfc1b229d8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b2f4e0ab272f432d98e2d458c48407a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"ba6d8f936db9473685c17da86d060c8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"682379badbc24e73bff80bd83269db80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d6d12d16b5004606b2a552a8618042e0\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9f08957e1c814225bd5803542226b0a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3a1ebe51a4dd49099e30c6d2aa269102\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9aea76fdee044a47a89e35926cfeaab2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"115dfb8c521444bcb138b3d3a68a4169\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285091360770 , ' guns ' , ' guns$hr_organization$tree_layui ' , ' 获取全部系统组织机构树 ' , ' guns ' , ' HrOrganizationController ' , ' treeLayui ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/treeLayui ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"caaaade76c644ca6b7c5763333137d55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"aa898281e5b04891b1b04343c9290dfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"f7b4a20de55b4fd0922591e1af822884\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fbc693a8b1614e64a770af079ba586f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c7732ef308f14e9ca9ecbb02d17c8740\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"9ecfd715d3ab43c79920506caff6f298\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"0799e9817bee42e28f5453907461ff8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"2bbf7421dec6430789684366264a6be1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e948b27160b044238e6b1f847d3739f3\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"51ba7ff1045a440984b8adbbd0ec5f58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b63903e878dc450ea96e2061875bccea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"63d6ccc6d4314dc687e930d0dfd111c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2a8cb55947884b9ebbd2f62b735092a0\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285099749378 , ' guns ' , ' guns$hr_organization$tree_with_children ' , ' 获取zTree形式的组织机构树( 用于角色配置数据范围类型, 并且数据范围类型是指定组织机构时) ( antd vue版本) ' , ' guns ' , ' HrOrganizationController ' , ' treeWithChildren ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/treeWithChildren ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"orgZTree\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4e6f52ea3d37493f98b6a1d46b0bc456\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"d6b7b711020140778549d4c302b692eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"8aa9a7c050cd4eabbf84ce8d4b14314f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a539ad5db7724a9fa435783149e3a61a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"d2930126aede490bb11a8eb02ef8b951\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"125bc4eb0e094202ba5b8dfb0a5493d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"362f10281e184fd489d675416041025b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bdbec81c7c23429e859ad993e62364b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"d00ad09bf33b49649f48217f398d0b73\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"dd471a6944894b74865bdee6d887ea80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"07f2500ec76c49faafd723a8177d2ad7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"230639c1090c43c8a1e4f4ab97062cb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"345219dd1b184fbaa026c7718297e988\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285108137986 , ' guns ' , ' guns$hr_organization$add ' , ' 添加系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' add ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"b3a0f1731ba64666a82af007249b8db5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c4381a70e02f45cbbb01afc817e1d421\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6bb35caefccd4c1dbf71b08ed0a74779\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9c3887c5cb874996bb0a5c045c862e02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5a94583985514850bd20ced518eb7ee7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"d492f27e23d84070a7c0ce03524c33c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"13e2cc47ef52405abc22382658683899\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"d99774e4ff724ee48c1ba4ff21d904a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1860bd0ed43a4fa69f046dd799738903\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"92c27815d877453fb5c2984761e69b58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1987a6aaeb73498784d94ed64127aba0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"73f882a659f94deead5e21d242e37e4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b9dea947aa8f414b86cad3b4df1a272f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285108137987 , ' guns ' , ' guns$hr_organization$layui_select_parent_menu_tree_list ' , ' 获取zTree形式的组织机构树( 用于角色配置数据范围类型, 并且数据范围类型是指定组织机构时) ( layui版本) ' , ' guns ' , ' HrOrganizationController ' , ' layuiSelectParentMenuTreeList ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/zTree ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"orgZTree\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0e57583d56a84b08a7c92ddd38c59bf2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"458c233b29ff45859a09449c67fac73f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a1c2d2a2c24a427c96e79ab0028a1b24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"f3c5ca4b520646c3865d76e1515c990a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cf0cf1bdda534f4dbb5344d35710fe6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"594bf07629904dc295ee4778609da333\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"e1d5cef6a3704befa22a73bbf7c1d857\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"57f2e424e150436d98877275dfc35da3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"ecd04d953631487b85303c577a48842f\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285108137988 , ' guns ' , ' guns$hr_organization$delete ' , ' 删除系统组织机构 ' , ' guns ' , ' HrOrganizationController ' , ' delete ' , ' HrOrganization ' , ' 系统组织机构管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrOrganization/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9276d5d8aa9c4cafb9216d7009d6e63e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d252fb6d003c4c2eb9597352f496be4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"599204d6e0eb4b74a77dc905a44686a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"dd9ea4c3f19d4b9cbc116ed6703d47ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"orgZTree\":Set[\"NotNull\"]},\"metadataId\":\"c06f601c9bae47eda800877d5048bc4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f6a4013d3871428bab4bdceab25706c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"c5db7e47634448b2be9f0b354af506a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"metadataId\":\"1524a5fff88e422eabd8daded237abb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"ae57fe3d9107400fa96d751c616180bf\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"61f2225b34d240e2848f361c2dca68bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a0f73d15bc1349f38ed424c5732803bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1d0b0614642e4be0ab53019a12151cff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b2c094dccc4446a9824212cae2625f5e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285108137989 , ' guns ' , ' guns$file_view$file_index ' , ' 文件管理首页 ' , ' guns ' , ' FileViewController ' , ' fileIndex ' , ' FileView ' , ' 文件管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/file ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7ccc11366d414fa3a8190bba6435818a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4ad33e5707844808b1a4eb9734f23bb2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"821d16560cac41928777c89f4b09079a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"ad7c0893c2f043ad8f5d2d03c3fffd3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"9e57d65d0daf446c9ec40c60ba9b5961\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285116526594 , ' guns ' , ' guns$menu_view$menu_add ' , ' 新增菜单界面 ' , ' guns ' , ' MenuViewController ' , ' menuAdd ' , ' MenuView ' , ' 菜单管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menu/add ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"7d685541e0814de99605a4c51b325675\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"759b866c68af4b378a330631359500a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"e62fa42817ba443d8c2520e1a463b331\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"b4fa5c7a63064aeb9faef2505b4588ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"8056804ecff447429d102a53b46d106d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285120720898 , ' guns ' , ' guns$menu_view$menu_edit ' , ' 修改菜单界面 ' , ' guns ' , ' MenuViewController ' , ' menuEdit ' , ' MenuView ' , ' 菜单管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menu/edit ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"293a8edc126443e192fbaf30d6e9e747\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"149f3c8d284b43bca56f0a7e6bd41539\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0ac77af434384472b98c0b643ad26bc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"42905217a164489a8d86265fec51b885\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"9d332ffa5db14edcaaf1cbc38b78845e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285120720899 , ' guns ' , ' guns$menu_view$menu_index ' , ' 菜单管理首页 ' , ' guns ' , ' MenuViewController ' , ' menuIndex ' , ' MenuView ' , ' 菜单管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menu ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b828f6f9ac364f11a80a924b79763776\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"41643a8f15e44373996e7091d2468a79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"62e33223d3c04cd39f38989368dbbe24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"d0bbdf26875748e28bead37b562c7ae8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"983418c27ac846c69e8fdd007a56a6ce\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285124915202 , ' guns ' , ' guns$message_view$view ' , ' 操作日志管理列表 ' , ' guns ' , ' MessageViewController ' , ' view ' , ' MessageView ' , ' 系统消息相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/message_view ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"fe5e5758af0f43268e5974ceabbe6231\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"52c6b0aaf00349419b66798ee94b4f6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5b6a67bb074d47b892014a597cc28881\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"a509097f8b724e8c826a07f2a3f3d0da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"ba841aa5be9d4ccfa6c920798d501809\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285124915203 , ' guns ' , ' guns$message_view$message ' , ' 系统消息界面 ' , ' guns ' , ' MessageViewController ' , ' message ' , ' MessageView ' , ' 系统消息相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/message ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"292594d4805d4fc98f34da24582f9af6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"c63c4dcbefb5473383a81e5152c14b24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"a71f8543e1ef4952af92792948eea05b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"04662df8b6674b8fa1afb2dfc9ed2aac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"24443168f06c46fa9b4829afcc631afb\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285124915204 , ' guns ' , ' guns$message_view$index_view ' , ' 操作日志管理列表 ' , ' guns ' , ' MessageViewController ' , ' indexView ' , ' MessageView ' , ' 系统消息相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/message_list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ed95017de1d347a8954695b475ccd55c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"80c034563af74061aa80f070e71a3c15\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"10bcc2e4c33c43698051ceca364b5095\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7b5a967a1a4a4b0f8721124cce5b23d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0e34e899941a4b5294571b10f42ef0bf\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285124915205 , ' guns ' , ' guns$dashboard_view$platform ' , ' 工作台 ' , ' guns ' , ' DashboardViewController ' , ' platform ' , ' DashboardView ' , ' 工作台和分析页面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dashboard/workplace ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"3f81ed319e324cdcaf8672f566d35432\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"002be6844f8b4343b96497d695a8a32b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"475bf03e347d4526a3a316a9f1db406f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"84650a83445a46dc90f8431cecfa4f13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"5e2883b446f94962af5b8efe7e105d2e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285133303809 , ' guns ' , ' guns$dashboard_view$analyse ' , ' 分析页面 ' , ' guns ' , ' DashboardViewController ' , ' analyse ' , ' DashboardView ' , ' 工作台和分析页面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dashboard/analysis ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"d38f132fa1274c49960f84f41bd5a81a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b9c249d09a604c27aa9275b385d7a7e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"84b6623ff5254a61bc1204eb0aed5763\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"bcfc4743a19f43a4b237eac94b695f5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"5c50854515164c9983a2da026148704a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285133303810 , ' guns ' , ' guns$role_view$role_assign_api ' , ' 分配接口界面 ' , ' guns ' , ' RoleViewController ' , ' roleAssignApi ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role/assignApi ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"cb409584255445c088fe1310866e8ee6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"308d271746b7459d96091bae001943ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"79528f2e01db4da1930aebda3d0fd712\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"96ee440d6ff84c3c97ab2bb6a02c29a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"281c8acf2f4242d2ba02f368823eb2de\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285133303811 , ' guns ' , ' guns$role_view$role_assign_menu_button ' , ' 分配菜单界面 ' , ' guns ' , ' RoleViewController ' , ' roleAssignMenuButton ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role/assignMenuAndButtons ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"61f99eef695e4283b65c6a116147a219\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"cf23630aa63540318959bcaaa382d93c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"de3df4ea67124d9c935a3dd1d3667ea1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"97c965a10a984c81a23a689e9a612b83\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"92ddb4ff837b41e18be8b44c8a0183f4\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285133303812 , ' guns ' , ' guns$role_view$role_index ' , ' 应用管理首页 ' , ' guns ' , ' RoleViewController ' , ' roleIndex ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"fcf5fe93da2345fdba0b9fa801275283\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0f63b6f711ca406085b641510b81070c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e0862cadb0ae40049fc484ceb6bd0380\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"1905b629a8c845ce9688e6b51eb26ab1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"431d249b58b94c8bb8572beb41d173f4\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285137498114 , ' guns ' , ' guns$role_view$role_add ' , ' 新增角色界面 ' , ' guns ' , ' RoleViewController ' , ' roleAdd ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role/add ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"492ba2f0031042548fae82b621ba59bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"dbbbe412052a45cd90ed2be440f50d1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"a7e63fa43fcd4f058869d75545401bb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f3ad8e800b8d405b9c51af028f027bb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"5cdf4d4e17e14d139e2f957071607c18\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285137498115 , ' guns ' , ' guns$role_view$role_edit ' , ' 编辑角色界面 ' , ' guns ' , ' RoleViewController ' , ' roleEdit ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role/edit ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"df328732081d4fef8153b0cdf0e3f724\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a1c4ede351944c638e9bba2eff0c3221\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"890151f7048e4a149543cfe78b0c3d26\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"4a573a34cb6b4713a53dbafba2a57330\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"3bc4cef2ff5a4e24a162e8b74b8f38b1\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285137498116 , ' guns ' , ' guns$role_view$role_edit_data_scope ' , ' 修改数据范围界面 ' , ' guns ' , ' RoleViewController ' , ' roleEditDataScope ' , ' RoleView ' , ' 角色管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/role/editDataScope ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"2a41802361f549d5be0aab69de54d2e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"8c66fa500e864f58952b0b7bb0eab649\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"1b6afa2238524ca58e9331f29be314d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"58465865714944d8a2a5d460a2f99f80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"2a7bb890afe24a2488ba920057987d73\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285137498117 , ' guns ' , ' guns$timers_view$edit_view ' , ' 定时管理-修改-视图 ' , ' guns ' , ' TimersViewController ' , ' editView ' , ' TimersView ' , ' 定时管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/sysTimers/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"6554d985c34645e795d5a6307c2f4935\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"4062e424bb8a46f3b51738b55a224ded\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"beb445f0e2314a5f8c4fccbc235b7a5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"19b8cc8a88224ff7bd2a49b658efa139\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"147edc35089741658c7adfee1b55420c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285137498118 , ' guns ' , ' guns$timers_view$add_view ' , ' 定时管理-添加-视图 ' , ' guns ' , ' TimersViewController ' , ' addView ' , ' TimersView ' , ' 定时管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/sysTimers/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"36b0c33287754ffb9ddbfff386d969c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"82c2d41c24294a7488d050d23df22d1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"6d7c855f696c4195ab8fc779ab11dee5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"9d4ee9167d2349378090de9b25be5d8f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"6b16d803917540be9cbd1b3b542ec391\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285141692417 , ' guns ' , ' guns$timers_view$index_view ' , ' 定时管理-首页-视图 ' , ' guns ' , ' TimersViewController ' , ' indexView ' , ' TimersView ' , ' 定时管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/sysTimers ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b1fd94c1d0824be396001cc44b8ebe34\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0616685ae9dd4bd5a2d68dbd80f21b00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"1d2fb482ee474c0fa36c10bf69cb0d33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"145d284b740b459aab8ad6e88e2130e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b6f50f19d49f42d399c9464d3e3d757c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285141692418 , ' guns ' , ' guns$log_manager$delete ' , ' 删除日志 ' , ' guns ' , ' LogManagerController ' , ' delete ' , ' LogManager ' , ' 日志管理控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /logManager/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"e67654e71c7f45139092abbc16075f73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"4434acbeaae048d8861b287ed5e7ee30\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"b5b8a4a5b8414d9f8f4c02eda0bd7570\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"c0c3d4696b604016a24f39da93e471c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"518efbcbb8a74ac7ba7ebc9a8a5cbbe8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"e054acd9ab0142689df7cfd868cb7a8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"22feeac4ae204955953559dc85bedd8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"4a27033925054f858fff4df76352d5b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"c67db55d8c664be38250ba79a343ea8a\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8094efbaf4674251833b9dd940ceaeff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7ec332529948475a99eb9dd5ec66c973\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8ab515ab241442c4bbcd42b5b35b07d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"597c9a93e74442338cc1fc97c3d84eda\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285145886722 , ' guns ' , ' guns$log_manager$detail ' , ' 查看日志详情 ' , ' guns ' , ' LogManagerController ' , ' detail ' , ' LogManager ' , ' 日志管理控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /logManager/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"331a2b9237084c33ade1368a876e069b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"8ba61af563ea428d8252c284a9062307\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"50951132e91543b2a755e92d18f36cbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"8552ccddb238487ca8253fc6f61900e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"03dd9ff06d484307a98d985214b04ba2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"27c4b517c851453f9b2d2ff3b31b4369\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"daf55718980a4151b3d54938d72b8650\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"299e521b9e76461b8de4326e4c033539\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"c0fa21c86081422abb56442f920361da\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"75c47be74de14a2b8ecde180fc62b37a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c0229e9ddab140629ee4c6f73e43ad8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ee3d395b14674055830c715245b77c92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c94ebc8f06bc43fbb4568aa3cd94c4a9\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285145886723 , ' guns ' , ' guns$log_manager$page ' , ' 查询日志列表 ' , ' guns ' , ' LogManagerController ' , ' page ' , ' LogManager ' , ' 日志管理控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /logManager/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"8d7a92afb7ab4784b036215724c627ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"0ecf1be0d5434385a3dcf2752ec7ccfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"ea4ed267cd0840fe975e2a7c04b805b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"b625ef3cfe4f497b9e0d05a529702fa2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"45f53b334d2f450d9650a3f379baa5f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"f00d07acda4a416eabb0a1c4eef54556\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"dd8ace4bc591496aa38d881be844d94e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"3514e2b6ace74ebba79473d85251504c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"f5e871f28b464e9a9f8f485a687ea1e6\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1f874d3d2d1849608ae299e88251f87c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6627542f99054f8788abd1b398c8285f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"8dd28a94f688442b8f6a17238d62ab51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"76a18717e470471883c2bbacbbf8daa2\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081026 , ' guns ' , ' guns$log_manager$list ' , ' 查询日志列表 ' , ' guns ' , ' LogManagerController ' , ' list ' , ' LogManager ' , ' 日志管理控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /logManager/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"95087e745d404bdf8a7aba45de310aa2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"3cbf4e83a5634aaa9acf617c99a03cf1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"86f7b6c06d314a57a740640a39a686c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"85853f359c1d4b309a1c2e57ce5f1d4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"05b62071d2c64cada855a4ef71398f5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"fede013acb02434b87d231bebc512333\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"d33c6383b6b54204848969611fc20d39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"983887b91b29498eb5dbfd021d2329fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"90a9279b77464886bd871f509258f33d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"68e8a157f9c44875853780d0e5404ec2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f80dba063ac1454381a880d0b1882da7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ff0db7ebf5864777a53861eb963eb9f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"97132ed48987469f89e496e9b3547971\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081027 , ' guns ' , ' guns$log_view$detail_view ' , ' 业务日志详情-视图 ' , ' guns ' , ' LogViewController ' , ' detailView ' , ' LogView ' , ' 操作日志管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' Y ' , ' /view/logdetailView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"af852b34b4bc42fdb7ba9e907c505bfe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"3177ace69d1b452a89df52d5c9001f38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"11dc0d0f548040e3a26f101115553d72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"f201ede7a6b24ceaa4c4a322e0ddbcf3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"2f9fe744bec24812aa4b2faffbb51ae7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081028 , ' guns ' , ' guns$log_view$index_view ' , ' 操作日志管理列表 ' , ' guns ' , ' LogViewController ' , ' indexView ' , ' LogView ' , ' 操作日志管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' Y ' , ' /view/log ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"e51297d2fd52443da20e3d6cc10c270b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"d8b2c059a0bd49e9a278be689557f0be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"2e9d34e0d4d5439b920552fe17d26460\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2abf9b6b1bf642f68c3c6b3ff78ba651\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"7f8c458cc4f54094aece8e9f615a655d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081029 , ' guns ' , ' guns$sys_app$detail ' , ' 查看系统应用 ' , ' guns ' , ' SysAppController ' , ' detail ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"990bb1e39f274ce996927175165e22a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e13547d23aac468cb33286b89b89fbc7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6a6577c957f64befb189141b3209f34c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2f431ca547fa4df3b88966497231db14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"923ed4c7096044a197065ef81f62bb35\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"158af9fa3b5e45a3b47be0650f173f82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"25d5da891dd44b3fa4398c935aa7678a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b4e2c4709bce4a389bd8d3fae9709ef8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a67d3cc613db4db08fe2cb52b4e0e109\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081030 , ' guns ' , ' guns$sys_app$delete ' , ' 删除系统应用 ' , ' guns ' , ' SysAppController ' , ' delete ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"d31705aa164c4ad4aa9971acdd77b66a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"cbeb9569a63c4ab89f2d56acd02867f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9876803c16264c04abb23c604d0d12c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a04476eaf2fa4b6a94ffd6cb8baaa5d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fdaf1bd610c040acab72607ae0c414e9\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5fcabaf40c4a4150b2567fa1d37fe6d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"947268af3f974815b243958127f009d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9eaaee3fd16f43b38a46f92b1e5f097c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a57ed47533d44fa4a0db24e311f105b3\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081031 , ' guns ' , ' guns$sys_app$set_as_default ' , ' 设为默认应用 ' , ' guns ' , ' SysAppController ' , ' setAsDefault ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/updateActiveFlag ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateActiveFlag\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"515aa8c8e59b4af99655a33ea5fb0dfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"1a4866690ee04955ba1573faa885fe88\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"09b516c0d6be403e8f897a007fe4fd4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"77295f3bda474b64bf56bf5a529b49b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3fe572440e2642fc868b5eddd3877e91\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1e9b09695b2e4816a9793da1f0c07257\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b4196accacca44d8893d0f75c36dbc40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"48332bde0110436981ff9d0f942fc8a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6c50ccea0f104a8999a62962fbba1e13\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285150081032 , ' guns ' , ' guns$sys_app$edit ' , ' 编辑系统应用 ' , ' guns ' , ' SysAppController ' , ' edit ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"64397f5229e44bae997032207870960d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"064c9656784948e694cc8918c030cb31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e7b18460f5624a2d86227333761b9a64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"631f48973c2a4727a867279283173cb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"191bed4b79994d198c39a4a428aab70e\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1c4e99e44a7b4ea5b1ceb8824f82a4ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"88a98137a233400d818d14fb92d147b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"88fda3415c624412af1a227966debcd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f45c85b7f18040959d8b0bd64f1cef45\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285158469634 , ' guns ' , ' guns$sys_app$add ' , ' 添加系统应用 ' , ' guns ' , ' SysAppController ' , ' add ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"2df4c6046f024e789f1fd4ce7b1cd93c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"915d6246043f4605b309b8777cf60518\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4dc160900ab141cb8becc2a7de58d3bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"8664ae3444a5431eb8e3ad4d55a2a3cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9eb8be3ddea2496e96b843f29ef016e3\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"32b47b33b8494f82a0947e44356c6ba0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b40b8268eb9548f781d31c208fa3929f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"40f66d40e8e34d509b5c41678b51b324\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0a5b8927ed7e4b6e95cc7008401ae781\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285158469635 , ' guns ' , ' guns$sys_app$page ' , ' 查询系统应用 ' , ' guns ' , ' SysAppController ' , ' page ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b2534361e83a4121a3a1cea7a34068a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3d9c220a94884d1f899ccf8dc687095c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"f41a7e0a14d6477f884c6e01d58437c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"894845b6ddd04c9cb67c6ef27de96f4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"624bd2ab1b2940b5a588c19ea4855829\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"757befee28b44643b2ea1b8b9d009bc8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7cff690556c74239bf4713b94717fccb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"83b5aaeb7cbd40fdae00e0f2e623d2dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"cc5ec90a658a4609be744f0a8b71c2e5\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285158469636 , ' guns ' , ' guns$sys_app$update_status ' , ' 修改应用状态 ' , ' guns ' , ' SysAppController ' , ' updateStatus ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/updateStatus ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"01535aa5491c44c686444a1deeff3e9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c9d15a6a96734d13a37402606ff2cc52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"32af22723e7d406483dae5007b8d1ecb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"f9a6b424ad4244ffa0abda31cc563f3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"504f27fc51a64561be27124babad0c89\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9145f42ec21d4863810d26b5f0df3735\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a5bfa6b0bf3e41d1955dfa3594962e73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"60ef23bac3ea4063be340bb8f4bfc133\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8294dce8b1334c048ab6df5a6e712c68\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285162663938 , ' guns ' , ' guns$sys_app$list ' , ' 系统应用列表 ' , ' guns ' , ' SysAppController ' , ' list ' , ' SysApp ' , ' 系统应用 ' , ' 192.168.11.1 ' , ' N ' , ' /sysApp/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"5985e685f19d4f44bbce892421630bdd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"metadataId\":\"7ada3034f3f34978b89b75734bfac755\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateActiveFlag\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a08e6594adf54585bb07b32a0a35fefc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f55d3ce9a5594339b7de4f75c48baa6d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"eedd0255d6a94217a9a979e3af6298ea\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ae5b43b3813c43049ba0f25d0fb2f958\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0f60ade149f0479699d16325c6021cec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"959717038bac4c898f035e1234203dc3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7d41821eeb154225aaad5d9b288a8ec2\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285162663939 , ' guns ' , ' guns$sys_file_info$private_preview ' , ' 私有文件预览 ' , ' guns ' , ' SysFileInfoController ' , ' privatePreview ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/private/preview ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"78aabdc982fa492aa334ed7352e66237\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"d6cf965f8adc4041a458f1c66c87d1e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"32ab7782cae944228bb9d3f17789215b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"0408741cae734b469243a726ccb46e45\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"9d65c20b185c4965bb7b8dacece6a696\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"69fc1d7ff67d4e378483401dbfd12da4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"c10afccd2bd449ae8100d437dcb27d6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"7fa788cafb0f430a8a629dbec77b1f08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ab1248d8291a4d44a0d683a1a7c4964f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a5eb9bcc14d14d0891ca4bd072327bf0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"3a681a581c8a4b27b4570986704761ea\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285166858242 , ' guns ' , ' guns$sys_file_info$public_preview ' , ' 公有文件预览 ' , ' guns ' , ' SysFileInfoController ' , ' publicPreview ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/public/preview ' , ' GET ' , ' N ' , ' N ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ec08f94b380e469db955e5ee4e088021\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"75f931a1d92c479584ae631a9ea0c267\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"b0faf8a6864145868771131c7aad1167\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"39fa8ddbc40642579df62b442cdea4e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e5562f082dae44a9b6a0d0f4a287bf67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"570aa15e8ee3449da9962adb71671b5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"f9c36e45fe18410e88aae5ee23ec93a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"462ef354cba8471fbb69ffa30429b96b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"0e013756b9e34f4090399efe38e9e756\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"d8029bc15173415ca28b4984fcab1507\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"c203a136e3ea4ecc90459fe7d673f530\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285166858243 , ' guns ' , ' guns$sys_file_info$private_packaging_download ' , ' 私有打包下载文件 ' , ' guns ' , ' SysFileInfoController ' , ' privatePackagingDownload ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/privatePackagingDownload ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b229e53706064816b180fd01990ca53a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"f4bba9782642471a87ca68d2a6e1dd11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"54fb40b15d5b47fc9991ce85def77e5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"d124a54a8f024a36b6b56733bf6dca8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"7c5586138d22452dae0842824c711a47\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285166858244 , ' guns ' , ' guns$sys_file_info$public_packaging_download ' , ' 公有打包下载文件 ' , ' guns ' , ' SysFileInfoController ' , ' publicPackagingDownload ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/publicPackagingDownload ' , ' GET ' , ' N ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"559b05aead3b48498617b12b8019b2db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"3d7c9a58ce9441aca6877b2e904b500b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"dd0c577baa6541699b1b3a6f64a4d25a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"6e68b3e7454d4e9782453f6e57a0f76e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"410ac740eebc46a9919da1ad123fbc23\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285166858245 , ' guns ' , ' guns$sys_file_info$version_back ' , ' 替换文件 ' , ' guns ' , ' SysFileInfoController ' , ' versionBack ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/versionBack ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"versionBack\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"9756c92b05ba4facb26f4a1380c18064\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"57877ed0815743b68de340e3d594c8d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9d717e71de324b3994c7646ce7bc301f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"23111fcf5e0741cca9aa838f0a71aac6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"1911580eaf5246ba81c0af65d12b3b7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"fbdc3ec260a1436f89c4f38b6618a113\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"27ab217521f64b48a1613a227ec0e601\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"cedf442d1ad94093a56fdec9ddea8395\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"4da89ca6a13942909d3ac07a026243be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"aeacd12278974981bfeee603be2b466b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"faa3196c5dcf4f5eb619c09ae1a7f517\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"365452a66d7543ee8864c14bb6cb0cec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"14c88ae6c6304b7eabfa5a053dc6f0f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c807c3e21ecf4631958a28e3856ca1a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8dc9ed0831e34cdead6d2dad7d610c92\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285175246849 , ' guns ' , ' guns$sys_file_info$file_info_list_page ' , ' 分页查询文件信息表 ' , ' guns ' , ' SysFileInfoController ' , ' fileInfoListPage ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/fileInfoListPage ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"94e999fe62aa4025ae99d49cb7a9203a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"f1e8c726280a4ba59d2a5ef0f0b621b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"c585d70a31d94f469daedd0198f10876\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"e46fe3c9623443deb8f2d6ba640e522b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"06141094c95342acbe8fbb641236e9ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"816c7de7829049a78a7095eca649952f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"99705d86dbc5488cb9de47ef2dff00af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"15109e56a67545a1bb492eb732de1a99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"dac6b8ee687947968c6c00d81913d59a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"67810bc23144488fb82debac9cf0dd94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"43542492d8cf41d0b0f5817c94bc0c25\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d6a832a1ac38449a91132334d15a3e1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b0aef29aebb14450a6c96afa1b6af084\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"193fc359e38c4ccb93fe386291dd1097\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d9d376e4734d480795a4f0f1f7e8450f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285175246850 , ' guns ' , ' guns$sys_file_info$preview_by_bucket_name_object_name ' , ' 文件预览, 通过bucketName和objectName ' , ' guns ' , ' SysFileInfoController ' , ' previewByBucketNameObjectName ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/previewByObjectName ' , ' GET ' , ' Y ' , ' N ' , ' Set[\"previewByObjectName\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"dee00edd69854cadbc698d580c96a32c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"297a4535ff9948ce9c5771196669004d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"5d6092bee2ba409fb286b96c66b04735\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"b6ad3b0ecbf24a84b963243dffa73bed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c1fac84b06474b84be45845de6ec90cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"4a9676c07c5b445092eed55bbdba52d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d852eb7cdb9f43f0baee07d12e892d40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"f6a99c10a1624dde9045d188f711fb13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"f3a05ed8784140888ab85627575a3595\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"be429817ede6429b80121da4e074491d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"2a4d456f6baa42db93155c88ca997da5\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285179441153 , ' guns ' , ' guns$sys_file_info$confirm_replace_file ' , ' 确认替换附件 ' , ' guns ' , ' SysFileInfoController ' , ' confirmReplaceFile ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/confirmReplaceFile ' , ' POST ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a1a56ec211cc40ab9e68edd70d43db70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f39dd917cd51477dbe6359dfd0199d6d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f7226131a3cd4458b10f41117c385878\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a6ba5b7309344eb39fa26562c751e779\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285179441154 , ' guns ' , ' guns$sys_file_info$get_file_info_list_by_file_ids ' , ' 根据附件IDS查询附件信息 ' , ' guns ' , ' SysFileInfoController ' , ' getFileInfoListByFileIds ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/getFileInfoListByFileIds ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"836bef7bfb3c442c8aa4a5e270b1ab69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"bc2a3540508d420fa3a5b36e0711bee7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"74a39cc55c7c4ba1bb6af2fc0326f2d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"32afe5ead3d743c99527cae8db9049a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2f10383c9fc246a6b24b364bf1dbe5b2\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6a9f114649fc44c885aac42aa396859b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ac17a80721dd49f996a7aa7783fef54e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"23e8ccf457d44d1bb3c28a75e1727d96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e27f745215714748830f291ca3e002c7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285183635458 , ' guns ' , ' guns$sys_file_info$detail ' , ' 查看详情文件信息表 ' , ' guns ' , ' SysFileInfoController ' , ' detail ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"11168b94506a4ee4a8fc07c7f230804b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"1ace1d67c14e4f348088448089a4e865\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"442bb600667a48658233c2e95eb3ff2d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"1fe9dcdaec4c4891a0451af564c666e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"8345170ed26d4be3934d69fdbced839e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"f62946a017e04c0b8df13fd57a38a4c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"717fdda2f9ba407ca96a0d6d2ce47447\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"d90ae6a42191474bb684e808b1facdda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5615ae13fbce40458c876fceb39c6083\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"46789ba3eac043538572a2028826a58c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"22bf314b83c349269261f939f5fa3ebc\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"cf331886f5aa40cca708bed26d230b5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"43a63892bb9143c1852d665ea6a0ea8c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"23a99566e0cf4757adcc5ca6dbbe44a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"35a6e71b892c41268daf82405e52796e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285183635459 , ' guns ' , ' guns$sys_file_info$update ' , ' 替换文件 ' , ' guns ' , ' SysFileInfoController ' , ' update ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/update ' , ' POST ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"bf580707a633478ca3080301fa01aad9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"100baf05063942f5b1cfc47b0b9a87ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6c03dfe800b54503b18e1b6f43ebc24d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d1ebb9beab534f5ebfff763c02946779\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285187829761 , ' guns ' , ' guns$sys_file_info$private_download ' , ' 私有文件下载 ' , ' guns ' , ' SysFileInfoController ' , ' privateDownload ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/privateDownload ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"73886d8b09c74ebb8582ba7a4fbb128a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"82c719f89c814b9ab11d444ce389a22d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9b41da3b24144d83984964c388009085\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"37e265ec49104622944d51dd776c88dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"890146608ea146cbbc1938f3499792c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"ba75c0fc56fd47538de9bb77f13b18d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"a388d200f4b4496f92d079e40be82ab4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"c7a77c344ae147788404283aeee65568\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"9b90bea548094e93a80d56f34bdd01c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"7be8a719b5154fa580d55a5ba61b2608\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"335ea09392974b13bb0186318cceb334\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285187829762 , ' guns ' , ' guns$sys_file_info$upload ' , ' 上传文件 ' , ' guns ' , ' SysFileInfoController ' , ' upload ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/upload ' , ' POST ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"75f1ef5ee7054c76bb1672e5513b3f1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"dbaa1cc88f714983a2ff9a3759df8497\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"80ceb96efab145b5abcba775b72bd80a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"754e5a4da1564dfd8357f4edcf61465f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285187829763 , ' guns ' , ' guns$sys_file_info$public_download ' , ' 公有文件下载 ' , ' guns ' , ' SysFileInfoController ' , ' publicDownload ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/publicDownload ' , ' GET ' , ' N ' , ' N ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"dcbe3ee8827848c1be02493a0336c6a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ed06aa90e2e447fdad3b47342d50c287\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"8730f3072e1443909cf79527f7af80e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"3982a3d479744b78b556ef98379bfb51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"ea0b89c7a7704a8ca5a8ae76facf7256\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"abdff8a9b0404ec09a5c3371d486ccb7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"aeb185d7aac843b1a1a421061802d948\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"bd482e6711344d1ebe307aeb4245f1b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"77ab5e48595d4a4ea1a486e501966757\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"195cb7c032a94ad2a6bb02c64704aace\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"0e476ceb7db04d91a537ad65a26d66ae\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285192024066 , ' guns ' , ' guns$sys_file_info$delete_really ' , ' 删除文件信息(真删除文件信息) ' , ' guns ' , ' SysFileInfoController ' , ' deleteReally ' , ' SysFileInfo ' , ' 文件信息相关接口 ' , ' 192.168.11.1 ' , ' N ' , ' /sysFileInfo/deleteReally ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"b414de0d5e3c4a66bc7d0fe3a93d2bf3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"b4988d482f414942871912395037ec5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"previewByObjectName\":Set[\"NotBlank\"]},\"metadataId\":\"e5f385a8d41c48219640d4497480b855\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fbf7f436fd16439e986dc16be800e001\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"24efe6e0af0d475b9dae9f9fbf530407\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"versionBack\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"]},\"metadataId\":\"9985a6e949e142c98f1c72df3d375bd9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"afe87fdcaba54c51895fcf313c9eb268\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"secretFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"dd3df5bada1b4f9eb0be77ce51ac74de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"1d06a24e6e214d7e8dc441bebbadcde0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"metadataId\":\"b4ede3e7215f4c96a5d718da43d7b2f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"8cb6970133014eff9415c31688680340\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5f9ef94ed308493a9f1439d778d6aacd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a88355f064544337979c9615cfc1dd86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ab051b6c60e3457ab6e8e41f5eb55681\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c92926c54a954cba96786cdd0f6d5527\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285192024067 , ' guns ' , ' guns$sys_menu_button$batch_delete ' , ' 批量删除多个系统菜单按钮 ' , ' guns ' , ' SysMenuButtonController ' , ' batchDelete ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/batchDelete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"batchDelete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"459a3cd1669e4ff0909a0419c708a1f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"b4b32dcae37b441a906be37baf98f277\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9e3a60aa92e248b3afb5cd90e7359a43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"fbace2814ad2422a9154dbc5cc636dcb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"bb3f13ebaa71450fb604a46d3357fbd6\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"086b6a09ef224a8587c315a6035491d8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"27e40783e2024b6a9f1d11a5526d225e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3f32a19f286941adb34e009898c472a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4f811904e6224b77b339fed8b1534c9d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285192024068 , ' guns ' , ' guns$sys_menu_button$add ' , ' 添加系统菜单按钮 ' , ' guns ' , ' SysMenuButtonController ' , ' add ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"a6a0f8f84a09406fbb30f320c33a1fc3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"142258b5f953430093ec17f555e7a0e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c5a0c08820944029ba478c40d196877b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"6523bf6f4f1444d79ee49051754e5457\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"81b0e0c7ee3842718cee11e53baa0ffc\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"fa0b0848d43a4af08f7f50d2c96e69d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9880540f789f49e4b77865c4ad451ca9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"107b6f8dceeb4d6d9434e44dc6620aac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"82b495bb8ced402c90a27543caa4970b\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285196218369 , ' guns ' , ' guns$sys_menu_button$delete ' , ' 删除单个系统菜单按钮 ' , ' guns ' , ' SysMenuButtonController ' , ' delete ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a33cb726474340a2bb677dea9001eea2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3c01c0c088d243dba69991ac2b4a8a68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"328d9b57a0564139ac61739e8cb9f69e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"32728094ba774a57bb30574b02151ccf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"58d40998d2914e4793d1b77b2e7e421d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9dc8726c055640bfb2e65bfa07b67c7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"822a5bd0d5bd4b228f481c16f35723c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"60ec3861a7a14cc9afe0258b9844059c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"983007e05ee04332b5a8892f5ba7b36c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285196218370 , ' guns ' , ' guns$sys_menu_button$edit ' , ' 编辑系统菜单按钮 ' , ' guns ' , ' SysMenuButtonController ' , ' edit ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6db8ae4df9cb4ad6a9a884ebed93a05b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4bb730b907284e019d8f3578be98900e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"db008fa29da74345be83045d531f5c51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b7a29b7c57a04fa2815c764bf6da5960\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"0216d773ec0a48c689e9fbff046d6f62\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"083875e34dcb4ef594d3cbe4f15f7b1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2ed0ea307a554b2aacf078f81e55726e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c49d84e2de804a2f9897048325707917\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6aedc52b790b4c738fff8aec755ddabd\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285196218371 , ' guns ' , ' guns$sys_menu_button$page_list ' , ' 获取菜单按钮列表 ' , ' guns ' , ' SysMenuButtonController ' , ' pageList ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/pageList ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"list\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"4058ae6827ba4a45a528fd0be2286d91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"dd5d27fd8779472995c2ae4cb144a722\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b1d5a12285654e91a6f6415290844f27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"fe220109c185434983c32782ae0dab65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"a75877cfc89b47ab86a1543f18f7b813\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0e836b0cca2548ae90d2b6185b432f96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d4575a82d0a842df9fc392c9c155c6bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6565b3572162450183eb4e7ffd96bfd0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"83c4c317ec0a449cbaed692d78ada23c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285196218372 , ' guns ' , ' guns$sys_menu_button$detail ' , ' 获取菜单按钮详情 ' , ' guns ' , ' SysMenuButtonController ' , ' detail ' , ' SysMenuButton ' , ' 菜单按钮管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenuButton/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"list\":Set[\"NotNull\"]},\"metadataId\":\"45940a00967d40fd84431c7b09628836\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"5480613ce0b94b84a2c1d1b6824ebe84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"buttonName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3b93bf53945347ab8586cb68a694e21f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"buttonId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b5bd6a305469439c8d356f9c787a9f97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"Set\",\"fieldName\":\"buttonIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"batchDelete\":Set[\"NotEmpty\"]},\"metadataId\":\"b53e8e952f5742bebe6a6a34d2a9b20b\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"80412e9128c741fab38b34875dd550eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"63d8cb1998c5421bac8fc2a38a0916c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"90b8e88e46834e839e195f175ebb79b2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e371880ba18443249d1e3c666e14a681\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285200412674 , ' guns ' , ' guns$dict_view$index_view ' , ' 字典管理-列表-视图 ' , ' guns ' , ' DictViewController ' , ' indexView ' , ' DictView ' , ' 字典管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dict ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"368d0e8dd55749da8555826e7636d4b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"842cd41a6406415584aa3b00b7cc13c6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"ee056c640d48461bb3c49fd5ed4da382\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"58d7dface9484fb584f2c47297f52798\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"422a0fbbe4d3498ba274760d540e64d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"58834118d4ea4c02934f5a5a80cc740e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"178c418e84674489921568b985bd1ae7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"13e66c6f274d4a4094aec17575fd92ac\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285200412675 , ' guns ' , ' guns$dict_view$add_view ' , ' 字典管理-添加-视图 ' , ' guns ' , ' DictViewController ' , ' addView ' , ' DictView ' , ' 字典管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dict/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"884e53f6ce3241739ec093a2d7743f7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"48c113a356244f8a95e5d2eb28d634d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"52b58f6ffc724b9583f0db60f83d9a59\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"1e6ae3ff99024e56b0b66fb1af6b73fb\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"69bb93b2035d48339787e2e978dae323\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"6baf6874d0e5444c9535bfe70493fdee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"43db1478760b4c1ba9776428ecd2fa1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"7fb1b8df381c4e19ac3767224e440f1f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285200412676 , ' guns ' , ' guns$dict_view$edit_view ' , ' 字典管理-编辑-视图 ' , ' guns ' , ' DictViewController ' , ' editView ' , ' DictView ' , ' 字典管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dict/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"7cf8faf21f794114b007c7607f3b9cc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"9ecc49d90aa04ade859dae29a91afdba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"da2d937220b84ac48c55a88f6380ae9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"6e0b1aea2fe2480ebe983cb834976da3\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"HttpStatus\",\"fieldName\":\"status\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"fd5aed6bffbd4a479f7d8c78a9e85564\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"boolean\",\"fieldName\":\"cleared\",\"metadataId\":\"79a22eae1fef42fd9963446cba670a56\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"Object\",\"fieldName\":\"view\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"733eac9d18494c7a9bc0db7875e7fbb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Nullable\"],\"fieldClassType\":\"ModelMap\",\"fieldName\":\"model\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"e1eddec12fa840d4bb2070b76d523f30\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285204606977 , ' guns ' , ' guns$config_view$index_view ' , ' 系统配置-列表-视图 ' , ' guns ' , ' ConfigViewController ' , ' indexView ' , ' ConfigView ' , ' 系统配置相关页面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/config ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"9148b7c1f12e46ec99f18103df664e1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"d9011c1bd8394193ac107d3e560c23a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"8fa4710bb272414bb2b3d98c9b61df78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"fe459169e8974bfba1e140b8c74322a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"081f5ad3dd09497996f0021cf905c3b3\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285204606978 , ' guns ' , ' guns$config_view$edit_view ' , ' 系统配置-修改-视图 ' , ' guns ' , ' ConfigViewController ' , ' editView ' , ' ConfigView ' , ' 系统配置相关页面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/config/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c415c57197bc4344be089ad356a8de32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4fcb47b3c1c94b62a8d77a4990bd3683\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"3ad9208e47694baf845b09c3f210d621\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"91039e03893d4c62949f621962ce1d40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"c8dd40233aef4203938fc721b234afb3\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285204606979 , ' guns ' , ' guns$config_view$add_view ' , ' 系统配置—新增-视图 ' , ' guns ' , ' ConfigViewController ' , ' addView ' , ' ConfigView ' , ' 系统配置相关页面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/config/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"9d50adc4545f4791ac29a59e7d8ef417\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"52aff9ebbd2d4df2a83fc2f926dcb326\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"aabe15a6b861476a89cb0e63e2d6278a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"5ef8c9d1eea342ce866f2a6abf5e5bb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"61581a146de34c719ca197f50920efa2\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285204606980 , ' guns ' , ' guns$online_user_view$online_user ' , ' 在线用户查看界面 ' , ' guns ' , ' OnlineUserViewController ' , ' onlineUser ' , ' OnlineUserView ' , ' 在线用户查看界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/onlineUser ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"da87dfe6edfb444f961a2d77bef31b81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"4039bd71b21448868c9c0ab11cf97454\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"f20cda8a7d5d47cb936474ccc71efd84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"429b14bc25d64d37a30681b4d0f21bdf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3ddc71e2ea024867be391faea3729657\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285204606981 , ' guns ' , ' guns$sys_role$delete ' , ' 角色删除 ' , ' guns ' , ' SysRoleController ' , ' delete ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"631c1c657d2040e6967ed5624d290a82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5c1cd99b4925405f82d4e3fae3d09d06\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"7da5aef232a64bf795e83f249442c5e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9ddf415b928b4f03b4cdbd0c6d300f75\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"db8a9f45b60847e7b3728190a913efb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"cfc3bac8927a4f22a9f1c00b2a3c98aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c9642b88bbc1457d97cf4e770258cc05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"7ddaafd70e014d538d783bdd9927785e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"a38046f6eed54e5eb096611a77b8126f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"d667cdb6693348cb860bcd265f996cdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fb4f7defa59d4782b311ea2ec6ec6a15\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"658c3107a66340879eaa2e60ddcc7904\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metad
INSERT INTO ` sys_resource ` VALUES ( 1349328285208801281 , ' guns ' , ' guns$sys_role$add ' , ' 添加系统 ' , ' guns ' , ' SysRoleController ' , ' add ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"7e9c98ad8a6841599ef9a3bd3def2c81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f39aba1bc09045bf87b4d283e21755a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"6a9cf66fcc82434b8aeaeb010b9de2e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c74324bcd57f4c97a6e441251ab7dd69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"17316fe6530642d1b4075ad879a32905\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"3c23b042a6564f2ba919b01dd5f85c49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"bf0aa26b521042e88b67f807283587c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"e9f8e58e498141c58597ccfeedd923ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"537274ef59444de79bff3d1421843616\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d312e66d997041c8974b3d0bfd108b41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"3c9e5242596b4fb49e462a3f2789a51d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d31c3e2e519e40328a00a1675bdba02c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2b4
INSERT INTO ` sys_resource ` VALUES ( 1349328285208801282 , ' guns ' , ' guns$sys_role$edit ' , ' 角色编辑 ' , ' guns ' , ' SysRoleController ' , ' edit ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c564340d05ef4312b75f14bbd1201bcb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"6080be5234d44fb5b1d291d8fd3da55a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"565aa7c99ee9461e875eaa7d09c39d23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"1d77ae3c43b04afda9bd036ff7a4a83e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"dd1bbc813bc145da98b491fbdfa5b7bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"5b4d9655a29442289f54441c37c7f741\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3fc11584f6e24b019284e304d360464a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"a11ec166275d4d92b30426c79d4ed589\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"816afd50572843dfb4eef9a30aa346fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6bf41334471e4d18b7ef7d500c6c9874\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6ad8bc9958f84b958fe0974608cd435f\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a93b39af87344a68ab202f7431a6395f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":
INSERT INTO ` sys_resource ` VALUES ( 1349328285208801283 , ' guns ' , ' guns$sys_role$page ' , ' 查询角色 ' , ' guns ' , ' SysRoleController ' , ' page ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0aa95dd7783043adaa12a6c14f3674ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"93057d3dfe7f408e8de0ca7eff435b96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"a1ae1a711ff4408984fc4c3a31199a82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"dc0b9335fd36491eac89a72e00496d40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"dd78deda7a0943a7a959e8fc8cc9191a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"0a7f4de23c654b339ceb69bbc01731e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"f694786a8113493981ae38ae0831b9ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"26cc219499ff472097a1fe37ebfe8dbe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"db548b2a71d24db1a4994414848d8093\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"24e79c86dd444fa6a2346e780f9890af\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"6dbac6cfb78443f3928f9f29cf6d5790\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"15379c3e749c450a895d8e82a71739a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c3d21159de7a49
INSERT INTO ` sys_resource ` VALUES ( 1349328285208801284 , ' guns ' , ' guns$sys_role$grant_resource ' , ' 授权资源 ' , ' guns ' , ' SysRoleController ' , ' grantResource ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/grantResource ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"grantResource\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"6a29dd1d92304f1da41515b27252e2b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"8c778c68fc644be18ac062aca4de29bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"23157f98167d45d7b27aaab08c04608f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"7f59f58eb84d49409a3f4f9af65cdd65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"016dc347cce24e639ea712a8bd9ba8d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e0eeefed16ad4c3ea78ddc44fdf152a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"600785085e574ab7890bd9fbd1cb2059\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"65803d7b8748470a89d23bd8daf37ea8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"8ba309c8471b4aa89a544523dc875bb3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"809608aad3eb44f19de2d535d7e3e9d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"a8671f239be445f68c97c621f0d3e757\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9ffe114d39ab44efa7339fb6624edca4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\
INSERT INTO ` sys_resource ` VALUES ( 1349328285208801285 , ' guns ' , ' guns$sys_role$detail ' , ' 角色查看 ' , ' guns ' , ' SysRoleController ' , ' detail ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"eaa09b071bb6463f9fcfcaec4b7dbf9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9ecc09dfea804cc193411d25ddbde9bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a22b850e2bc44a9ea81eadc4de7c0691\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"3896d7e57fb344d38072a0d268ea645a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"9680d85abe574683b955584037ad6c1a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"a07d87f620134dda91d95db10280164f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6d2edbfb7eed48598873fb9572bf4091\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"5ee62bbe1fa147e4946e2d0734c70d7b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"593b458eeb194b67bbaaf50ec06a776e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"4e73099278b34fb184b0ce7b33b5d2e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"fd4c652d06b646f2a49ac9dba282a321\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a5da9c9837e148ba9d5a7fcfa506ce70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metada
INSERT INTO ` sys_resource ` VALUES ( 1349328285217189890 , ' guns ' , ' guns$sys_role$grant_data ' , ' 设置角色绑定的数据范围类型和数据范围 ' , ' guns ' , ' SysRoleController ' , ' grantData ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/grantDataScope ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"grantDataScope\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8b20c89fb64d4247bfd9a941253eb015\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"17e63a075e1243918b0762b9d7b66de7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"45f456ce74fe40588da7a8ef6daf96cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"64318d5d0c73464ab3eb1d2dbe0c47b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"d2e246431b36402cb1ab7fb9aec3b4f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"5d6bf708e2c7446399d3711accba4880\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0e62fbdd5e9b4e70af44a64ec2356ca4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"57061830af64493b8ac700ed5477be98\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"0f1248ee78224ed4b447cc07c07936bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"f3bcdcdf0cc048f3bd54a5d3679a7d82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"547a400f745b41268294026143699229\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b7070f0cffd34f95a01de6c45b5bcd3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadat
INSERT INTO ` sys_resource ` VALUES ( 1349328285217189891 , ' guns ' , ' guns$sys_role$get_role_data_scope ' , ' 角色拥有数据 ' , ' guns ' , ' SysRoleController ' , ' getRoleDataScope ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/getRoleDataScope ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"f502c1c25c0e490b80d0d17d4ffaf920\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"34654235d66f4e2faa8822f5f56259ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"7ae634eeaafc4b3281245dc7dc576681\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"8952953721ec46c9a0065bad6f531576\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"4e291b91edf845ec8cf10336ba521cdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dd83d7d0e97a439ab87b8910687d9a46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"d5ab183a6b364064af5cab4cc24f9c15\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"56d32ea47ea9464c82ed16af551eb1d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6ff6458a681b4535a3dea770a3afc047\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c05f57afafa84dd085c3928080baa6df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0b6d0a36e0f24e248a541148da5af27b\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0b8ab1b1f82b4649b13dd25f517b8eed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Bo
INSERT INTO ` sys_resource ` VALUES ( 1349328285217189892 , ' guns ' , ' guns$sys_role$grant_menu_and_button ' , ' 授权资源 ' , ' guns ' , ' SysRoleController ' , ' grantMenuAndButton ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/grantMenuAndButton ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"grantMenuButton\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"fe4eeccdee1d414380229ab43fd4f8d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f88eea1a187d4c87a2710c956e9d7f96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"b3a200b3757c457db4a7dbf8019613a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"53d6af3bc2f248a5929e077bfa57b178\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"0e19914ed0984b2591031d08db2d019b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"e6d0b795962f45718d633ac07303b23b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"1bd41ffd24ea4201ac6ec1e7eace4ddf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"dd2074e585ae4fd9abf3410ac29ebf20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"cf8e9d55baf54b2c9c9b403a111b7557\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cfcc4e270bda4bdaa7a6afc9651fc0c6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"bf8c2f2a2722425eb2e5dd3e35bfbd59\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b7b954cc368b4e5a925f573672c19578\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType
INSERT INTO ` sys_resource ` VALUES ( 1349328285217189893 , ' guns ' , ' guns$sys_role$drop_down ' , ' 角色下拉 ' , ' guns ' , ' SysRoleController ' , ' dropDown ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/dropDown ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8f2576574ffa4e21b10f592dffe48a7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4554259426d3492989d73875971ad3ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b09864b6c8d8423fb04e94777528cfce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"130a708e165c4a2faf4c468b8bb961c8\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285221384193 , ' guns ' , ' guns$sys_role$get_role_menus ' , ' 角色拥有菜单 ' , ' guns ' , ' SysRoleController ' , ' getRoleMenus ' , ' SysRole ' , ' 系统角色管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysRole/getRoleMenus ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"da5192661f284603bc11eec036ca23d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"773c4aa34dec4933af5dc5ee1aa6a85f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"10ee8c68b9b84f2582b73863fe31a02b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"591663cc323541c099bea5baf7524b39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"f8e2cf0fabe6421ab6fbce06ffe26b5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"44de9e4ead744ea68ed39b83dad7096c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"cfed5f41ad8840908a831424f4ea45c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"5916b3d0ceab4a7d842f47830b56c223\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"ffdd466e83464def82e02b5f811235a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ba18d1cfea324fe38e098724e18ff608\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"2643c66aea2c43539d5cf8614c201feb\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d6b911305623414a8ed76c2c1d39b60a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fiel
INSERT INTO ` sys_resource ` VALUES ( 1349328285221384194 , ' guns ' , ' guns$resource_view$resource_detail ' , ' 资源管理详情 ' , ' guns ' , ' ResourceViewController ' , ' resourceDetail ' , ' ResourceView ' , ' 资源管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/resource/detail ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"bbb7d29d4fea44e69566420c02bba6ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"31abf6e845304a53ba67e478b3d6b2d8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"9909b1e692dd48eb83ec39e31d6ea09e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"90fecbf7669a44c18ec2b671875a6abb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"e1293c5205b843b7baea5bcc4205b331\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285221384195 , ' guns ' , ' guns$resource_view$resource_index ' , ' 资源管理首页 ' , ' guns ' , ' ResourceViewController ' , ' resourceIndex ' , ' ResourceView ' , ' 资源管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/resource ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"70055cf8dc784e8ca1957999d6913ef4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"55603fc9c04c4c10abe15916cd93ed88\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"a46dfe91b182479e930095ef3121967d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"1b622046083f42f1b7f09edfbf85aa2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"de23025ea4ef41c3964ccc84af40642a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285221384196 , ' guns ' , ' guns$sys_user$grant_role ' , ' 系统用户_授权角色 ' , ' guns ' , ' SysUserController ' , ' grantRole ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/grantRole ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"grantRole\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"90bb7f218bea41b086aaf7c6fac7b852\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3e2b7e6e30e14a579949cd767e4303bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"557023b59b604ae9a6195988b98f5d84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"25c84b1cf342401585d46c134c6191d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"d6c53efc45ba4e4784298bd5da750a0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"f260e1d51b414ed98dc12260dd02bfb1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"a1724ea4686949ec9a0fd4894192f3ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"8e7da089f2c24e14ab4af3f8411fd48c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"ac831a41e9484467acbb2953ba68b523\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5709e95de26c4af9bf676ff38610172f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"632125a5b21f47a295c01d25adc223b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"j
INSERT INTO ` sys_resource ` VALUES ( 1349328285229772801 , ' guns ' , ' guns$sys_user$update_avatar ' , ' 系统用户_修改头像 ' , ' guns ' , ' SysUserController ' , ' updateAvatar ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/updateAvatar ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateAvatar\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"8edd35cf427b433b97b0ac6801b086c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"95a5928579f54ab19cb576389b59b58c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"8ee48154bffe490fa5954b9383b93f81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4eb5f8cc49e64df0991543b59fcb6163\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"3ba92e30e35b48e684167e1d4f5ab86c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"34ee3ac53b0b42dcb8ee09cde19c3082\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"069590548cfc45848c97e160062d281b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"24ab65bb4169468196a0c603d71a965d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c804cdcd6e114471af288a3d4269d3f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"6991444300a34c6b97189166702f69b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"j
INSERT INTO ` sys_resource ` VALUES ( 1349328285229772802 , ' guns ' , ' guns$sys_user$add ' , ' 系统用户_增加 ' , ' guns ' , ' SysUserController ' , ' add ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"853bf48c00d8448690167f30c1f0418f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"ac528382de474e0eaaa285cc14c11262\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"d207ec451d45483e8b50a06ee871fa67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"2ff2fb9e3c584ec3a84158a840548bb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"36599555c8e849d79450c8f276036a39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9efbaa355327452badb0115e6e23fa14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"b0f3aa3eb1b84aca9bba09f664f3ddea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c1ac5bfcf9e749c0a8f165b799f0fc34\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"8919f89c5b044284bf7f7745c9c7f246\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ddbb66c89d524238b65c6e154caaa64f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"3bbbc80140ab43538d1ba13f00726a96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"79e7618414a64b9
INSERT INTO ` sys_resource ` VALUES ( 1349328285229772803 , ' guns ' , ' guns$sys_user$selector ' , ' 系统用户_选择器 ' , ' guns ' , ' SysUserController ' , ' selector ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/selector ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e9ea387eb5984234a7df747611a8021b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"beacf47965f64c8e9fb1b166e82f15a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"f45250e42a564b0a8849e124b11adb94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"89a8b59539914fb7b1f040fd10a67a02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c9d53a37595b4d7d97c9b61a53d8ad09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"f9f6d485ed6c4b998e3fa64af956eab4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"a0a59336d7724503875d4456bfcc80ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"d9916e1520b643e88b29e0b5d29bef53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"60ae5162531943be9fe9dbefb9eb115c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"80c3c7855cd943c3ba30f943e7ff8081\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"26f45f64ab1148fe898fca6e3ece1d1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusV
INSERT INTO ` sys_resource ` VALUES ( 1349328285233967105 , ' guns ' , ' guns$sys_user$own_data ' , ' 系统用户_获取用户数据范围列表 ' , ' guns ' , ' SysUserController ' , ' ownData ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/getUserDataScope ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"8a22325448d9431d902b212b4e13af52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"eabdb9053ac4478e9880129e4636f8e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8b9ccd116a9442e38304e72ec2068ad7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"1bda7725c1ac4526969da1d01c212a97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"e72be98b8fdd419a9612989c901df0ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"93de876cd9a642bfb207b96df115ab38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4c85f009e2294a2d8aa545d8f97b38bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"5cabc8c640ed427bbba4a0dbbe473b8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"a53d6a4152a5428bb44a90f9f5de29cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2151d7611aad4341a744a78d98691f70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"9f0c715d8e7a4bc090e07362098ec2fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\"
INSERT INTO ` sys_resource ` VALUES ( 1349328285233967106 , ' guns ' , ' guns$sys_user$edit ' , ' 系统用户_编辑 ' , ' guns ' , ' SysUserController ' , ' edit ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"3af69257913146e992a12a9c5026f023\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"1ad2ebecc1614856a356cae6e3bfc411\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"2bff71a5bfe348808291e0845fa3db27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e988c4d3ec1649b387c613e9579e12a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d92b9de7e2a642abbfb5d0866ac295c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"434f803ec10e463eb17515306feb76bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"fc270e1eb4f444d39f9d83a9b5fedbb0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"3a6cf467e4124228b6c456e29ff0ffe4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"60b08987447941b2a370ebf1e79251cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a6ede42b2d594898acbe23d0a03420bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2b2dff249e974ebd9bf681f4e552ac48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\
INSERT INTO ` sys_resource ` VALUES ( 1349328285233967107 , ' guns ' , ' guns$sys_user$change_status ' , ' 系统用户_修改状态 ' , ' guns ' , ' SysUserController ' , ' changeStatus ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/changeStatus ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"changeStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"813cdd4198304354bafe33842458f8de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"40ad83d8b4584fe7b959b1c9f02cd227\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"d7327425ee304e74992d47e81feae372\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"e6a32907a02448a59875a0703df5ad6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"1ad178d031984868ba290f1e01178f2f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"a357355ffe814f008d78f8e2003efe09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"62784dee522a4fc6bb96ce2a701838de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0773b2dfb3254898bb5b2958cf20a92c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"da6d80b7f6954106a7175b4d6f848088\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"1d42866c1f7a4e5f95f76b1050257dba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"66e1dd2105db43e78fd2e8b535ca0644\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"268fb759701e45d3aaabe0843d551adb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":
INSERT INTO ` sys_resource ` VALUES ( 1349328285233967108 , ' guns ' , ' guns$sys_user$page ' , ' 系统用户_查询 ' , ' guns ' , ' SysUserController ' , ' page ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4209a034e61842a78f515597ea625a64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"c0519b2642ae4443853799a173c33a7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"6d9210ed3e3b43ccbb7caf0a96bdb8f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"482a86e3b021456eb0dd3eaa0edca2cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"287f76bf798d4a3dbe2114f62fcd53ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2f89e008dbd34426953ec430a7206a3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"488b944851e44607958e2b7cfcd73420\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"78978c9917b2402896e41611009125ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"61d740111c8c4aacb5abb889869e2e36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"bdfe5b67846a4cf2bdecc8b6d3a0cf4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3f6ae294ba0b43809e25fcfeda218224\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"a5c68
INSERT INTO ` sys_resource ` VALUES ( 1349328285233967109 , ' guns ' , ' guns$sys_user$grant_data ' , ' 系统用户_授权数据 ' , ' guns ' , ' SysUserController ' , ' grantData ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/grantData ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"grantData\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"ef2c418c7612491a8b35fd2d4b70fd53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"b8ba7cb728984ddfafa4b07a4ed92d51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"94357bf75285494aac6b5dd963c01a05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"735e392488a645869067b16ef9588110\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"091100750b474edcb4c1811773f96d68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"dd19b6899228469d944c08610ec7074a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"2717b4173958493fb8e951822560a6ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"da23590989c4433c99215c21341871a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"7e28b27e019f4c3abab0597d20707f71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7ad45c5f119a4d9a9720a0a73b58fcef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"39b4559040cc45839f0e1594676b5855\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"5426a65db7594266ac5edaa7ffe468b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldNam
INSERT INTO ` sys_resource ` VALUES ( 1349328285242355713 , ' guns ' , ' guns$sys_user$reset_pwd ' , ' 系统用户_重置密码 ' , ' guns ' , ' SysUserController ' , ' resetPwd ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/resetPwd ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"resetPwd\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"e908eff5717346bcad283129685cccf8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"21ae1133ecf64072a1950b8e28741b4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"a90f68f75a7b4effbd3d6681362fb868\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4fe19611cb794a73b3e306c8ff3d8337\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"d82d272d03114b3a95d01e4b39f4c492\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"9fe111bd394d49329f19b5d924d60f3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"3a1cdb0ab57a46cc90a73e04c82c14c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0c4fd30f63284aa382c5b5056f5c25a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"5ca86a567c2b4d8ab111abb711be5552\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"eef0015ba80f44819a23e646ed2e2b70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d402908e5349402ab76ccf27177fe17d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNu
INSERT INTO ` sys_resource ` VALUES ( 1349328285242355714 , ' guns ' , ' guns$sys_user$current_user_info ' , ' 获取当前登录用户的信息 ' , ' guns ' , ' SysUserController ' , ' currentUserInfo ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/currentUserInfo ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"103c041a15be49488c410fcef76bab4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1d7b929f96764d4cb44de5ab5da66421\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d0f57e3f187349b6a4681f127c221a8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7e2a29695bc24de7aeefcadeaf127b94\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285246550017 , ' guns ' , ' guns$sys_user$update_pwd ' , ' 系统用户_修改密码 ' , ' guns ' , ' SysUserController ' , ' updatePwd ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/updatePassword ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updatePwd\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"308b6aaa5b8f43cfa1aed14f4c31da6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2526eebfe9fb4500a45f056dfd12d388\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"d8b2d48fcde94b4a84b382dba8217cd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"a14fd29fdfbd47edb092829cae0557bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"0ad0f9cf6e5643f2be52639df779fe74\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5947e85acc51403dabee4d74d3cedca5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4ae48e1ecfe94c809ceb61a0470ba922\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"c27a391f267541569b317fdb10649a28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"7518cc6b6cd64f2b910795c2db6397d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"44ccca8f704e41cdac79edadfc3f6917\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"82034c50b5a04de897ba584ce4ee2005\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassT
INSERT INTO ` sys_resource ` VALUES ( 1349328285246550018 , ' guns ' , ' guns$sys_user$export ' , ' 系统用户_导出 ' , ' guns ' , ' SysUserController ' , ' export ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/export ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\",\"metadataId\":\"afd1e808445d4479b8b3b06c22fe07c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\",\"metadataId\":\"46f89ce71a4e4f53bbdfb4d7daed7679\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\",\"metadataId\":\"f37b6dce62ac4034851f86f0259c1ddf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\",\"metadataId\":\"8f08980acaf4489d927ff678873bbf16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\",\"metadataId\":\"1ea1f8f3ba524a498851c15017fe0114\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_MODIFIED\",\"metadataId\":\"0e61a951b97a4b94843db3c6f67a758d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\",\"metadataId\":\"e14a556ab13e4afa8b6fad0a5e49a9e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\",\"metadataId\":\"87244bda19674810a1cb3ab5e38e87a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\",\"metadataId\":\"232956fcd0a2436c8205d24e8ddf753f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\",\"metadataId\":\"4ad4d15b9c8147ef9712cc387302f915\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\",\"metadataId\":\"f74505b428374de1b36d906034d24680\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\",\"metadataId\":\"0690aa9d797d4a24850378558c3bd451\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\",\"metadataId\":\"179c009f1f68465d9bffe4523b4ffd66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\",\"metadataId\":\"5483ea4d2ad54259acfb053ae4bfbcce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\",\"metadataId\":\"149c9190828244129d707cb353986fbf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\",\"metadataId\":\"cb1b059ceb404cccb438c36b30f39dbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\",\"metadataId\":\"09da71ef80e94ff081cbbde54a54f063\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\",\"metadataId\":\"0a511739e5d54d358494dc81a0c1282d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\",\"metadataId\":\"df36ee96c86140219852241deec59780\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744321 , ' guns ' , ' guns$sys_user$detail ' , ' 系统用户_查看 ' , ' guns ' , ' SysUserController ' , ' detail ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"1d95c39e9f9849f6bc3d47c0f30e3c11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"80ecc2e5d944416385f174c268160902\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"0a0d7a572c5e4a159af7db6500f39b5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9daed1fd664a4bcc98aa186e3fb23b5c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0ec4fb23aa1d42768f80f824fb9fdb0a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"06f1c33e7bee4ad487dae97ab6f6f968\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"29f179d5c953465d8357ba1c890ac2db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"80c4a9b05eda4d33927a09c1f2c7d6eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"606c0b56096f49b8b9e72fa02fdf3f97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7b35fa68e22b4ad0b06e74c4ade0eb4e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"d211ebb9d5394c5ab42aedbb419751fe\"},{\
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744322 , ' guns ' , ' guns$sys_user$update_info ' , ' 系统用户_更新个人信息 ' , ' guns ' , ' SysUserController ' , ' updateInfo ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/updateInfo ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateInfo\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"68b6720b05e848dda05db4fbc66e04d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0a2cf15211dd4204a0d5203d8c8ec154\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"803da5867dcd4a72a49986165d4812f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"703819c6064b4fdfab616ef6092b4075\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"4c78b97a1e8c4b2f842a70f2a4f6e7df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"b306d23932324b649d2835c4709fdb6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"67de0d24fee04ea4893156a8d3e165a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"86909ac7e8c64fe38b41f718218b7127\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"921b504bd23c4b228e1918f579ff9bb1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"88e7df3bdd59494c820fbfc595b0f123\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"59c05ee2793340409f54ef7a4beb6460\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"g
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744323 , ' guns ' , ' guns$sys_user$delete ' , ' 系统用户_删除 ' , ' guns ' , ' SysUserController ' , ' delete ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"a4496639305d422cb3c061c26214fd9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f858245db59a4be98eb5dfcfc266de04\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"70abe4fa8b7745248d3afc458baee1f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b0391edc8b574f85b7a3d88cf68a0bf3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"62c21826cd804c0584262e4dfb608fbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"031e9fd52abb4b7294d370f70d59eec6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8ec10011c6fa48359d30b44af4688a39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"899b32cae9a34886aa895ca086bd4499\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"ad9b718d0b184645ba04387bece820c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"babd470d6e4f480ea414946973961863\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"e1a2584cbe2e495d94aa84f418ab3d63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"f
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744324 , ' guns ' , ' guns$sys_user$own_role ' , ' 系统用户_获取用户的角色列表 ' , ' guns ' , ' SysUserController ' , ' ownRole ' , ' SysUser ' , ' 用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/getUserRoles ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"e89679caf9d343049eca665b39db9c04\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"updateInfo\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ce1c282483814f979a7a3f18fc3cec27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"91f68993b4334644ad630620d6b82c1a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c0c06af915b640e7adebe0d95875c08d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"67b3a48e9e4c46608a06ecdbb4b6d282\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d5728a18d3e44dea94dfa66a2f5a863b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"7be923a084334636b8ea5566a7503c7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"03cb8e707aa648a48975cdac45e03cca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"1ea13ecfc8af46faa25cf6748048df77\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"21f3e3521b3b49c6914c9e74e78ca87f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"bc423bc578434f97a3b061967ee6e960\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744325 , ' guns ' , ' guns$sys_config$delete ' , ' 删除系统参数配置 ' , ' guns ' , ' SysConfigController ' , ' delete ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"914fe9c4378a48c7a0c3926c79cdcacf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8b6f945750124dd1b4ba10dfccf3b8bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"4b81d07800cf41e685ca47c6779fb81b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4f6a4fd848d54049b3d859c5ae392766\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"e1bd2caaa1e242d7afea53153c4ae10f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"5a7fcfce9fcb4a729016f23c26224b49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"66eebc69ae8c4db6bed2c309ba07f3cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"71ee74c0a3024ff4aa90ddc6322c0ec2\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c4f2500e6fe7413c838f89d646734ee6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"811367f96e834a6dac6f619bd07a5de6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b95249a1e84f42d18212ab8608e67a7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ec2278ec4ac343f997036ff2fbfe2940\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744326 , ' guns ' , ' guns$sys_config$edit ' , ' 编辑系统参数配置 ' , ' guns ' , ' SysConfigController ' , ' edit ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4c8a720d8a944c6596953f060ee14ddc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"417e8e629613466caf553347913f6373\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"fb33390a50f5467fa4b5822eaafdb414\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"aa5657446b6247558d982830cd82c0fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1829cdb547d94ca8bd0f8d415422fc98\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a6baa24b4d1746128e1f2fd3ca32b720\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1363ff515d4f46fd904160efe302174f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"66192eee12b24028b6d433c174be7a31\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"43d156a54ed84c9584ba2210d5e70cdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"dfda1f10ac304c8590888c15e49ce5ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"44e5edb8b85b40ada02d72735bdef1a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f13c74496e8f481dbb876f8b9d02b239\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285250744327 , ' guns ' , ' guns$sys_config$page ' , ' 分页查询配置列表 ' , ' guns ' , ' SysConfigController ' , ' page ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"203c5c65b9fc464ebdafc7f66f369610\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"3d62a25c8aaf413da8ca050fb72a5eef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d70e8db43d83415f8323d894da2001ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"bd1e842c610d4932878e85545e996c2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"e2c6fddb0d144c00b590375c63d4ca22\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"db31f78f223a4a7b8995f5f908bc42cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"49633787106f4ee48f32347aea6153f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"24c43bbb37044e46be21cbf36bc75cb5\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"698dddfd53124d35aa306e6de2be5d7b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7e386564c91a4b788b3f067c4f63b88d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e0359abeaa8a43888b29775294d8af89\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c075a4c661a1405e9a9e438d96254084\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285259132930 , ' guns ' , ' guns$sys_config$detail ' , ' 查看系统参数配置 ' , ' guns ' , ' SysConfigController ' , ' detail ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2aac6fa249ea49c693e970633bc09511\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ee64ffec05c344f88ce41fc730f6fda4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"f4b306210c66400883e95f37d27e6b83\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cd242b852c964d9a89bfec93ac04e1e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"68a16b0896e346d884451f1e15de2e5e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b22ad3d84bca4145a97d484470fa364a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"20cf23bb9fdd48f6b0aacc160ef5ce91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"8b942ca1085746f486fbc4705044fb1d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e3b18d66b5b447d7a0d632e5e7363e89\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2ab940a593004802a30aa4bd112e8ff1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2dd8aa27ea284a41bb2ad40e42abd3ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"61ad4f709fc04eb39661b627d063f621\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285259132931 , ' guns ' , ' guns$sys_config$add ' , ' 添加系统参数配置 ' , ' guns ' , ' SysConfigController ' , ' add ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"85c21dafba4b4267bb76c60a9a96bbf0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1d36635ca678423999fd9d57de8e8632\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"ceefb4ae753443539be80ebca4c8e7c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"32c20fc775f142d6a9a2c0f5b4fd5b0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fb01a43b3f424887b2ef9c5a62453bca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"486b2c99387a4aae840c178d72c2fbe0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"319d516b7a9b44dabf1cc366ba770d9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3b6fbb949e9342c1921c3c9673e8d480\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f0c2d0b2d69a41bba9c9bc038cde5f28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e0d32fcac303460ebedddcd018964aec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7892d41a99a84cffb737e4fb0d224c8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a127397331334445ac3e93992a4830df\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285263327233 , ' guns ' , ' guns$sys_config$list ' , ' 系统参数配置列表 ' , ' guns ' , ' SysConfigController ' , ' list ' , ' SysConfig ' , ' 参数配置控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysConfig/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"71019a7ce679400b9404da55c775c976\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"64cc40b87c8f47f5af95c9541e5109d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"3f3ff5cb5db348f58a99c04f29ec2a4b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"9ea6cdee9a1f4efe9d70f69c6338a30c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b9285d4e511d4a708c3479c8f1d9a6f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"3e5892106a554ad396af4c668db0fb66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2e93c6b8c5e440288483bdf10857bcdc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"dcf51c333e464c79bb49fb8eb7b674aa\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ec56d9e92d2144e39850477fe60572df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5ce23ed030f24bdc987b990a70b4b966\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"071b71089ba44a6b8853b013e5b39d2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d592eb8ca4ca430e941c8385300b75d5\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285263327234 , ' guns ' , ' guns$dict$layui_select_parent_menu_tree_list ' , ' 获取zTree形式的字典树( layui版本) ' , ' guns ' , ' DictController ' , ' layuiSelectParentMenuTreeList ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/zTree ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"dictZTree\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"8745ea18a34c4796bae5275b3e5eaa7f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e74423cf381543458c84d8446ce0117a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"e829c04eaa574f6d88bf37972ea5a7f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"e24dd69bef1543d88ce180fdca3d95a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"4b3bbaed1f674f2683ea5094b8541be8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"c6d99b18b45646a8be16fa060ffbdd40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"48fc18a40cd54b26a8f2a8c0a582b387\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4f97d7ce889f41a1bd20ef43d51f37a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"d971efac3e2e42a481122e9a54a47d8f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7163adc7afd74b0da11bf2f7be05a033\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"994da3d1549949a58580a4ef948227f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"83344034c2444ed6b1187ceb00d9affc\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285267521538 , ' guns ' , ' guns$dict$get_dict_list ' , ' 获取字典列表 ' , ' guns ' , ' DictController ' , ' getDictList ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/getDictList ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3b9dd4e1582c4a2299745ff92bb1d6ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"ce629a5b546148c99731cd9659ee4d79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"06a2e7b43da145e8ad0a0212cb029418\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"b78d7437a4524912af0188f7558537d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a1e2be53160f41c9a5bcd5d1a02db121\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"4cbb88c7accf41b1a9f78d4a5e4dc304\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"a0553f64cc974e4c88b94aceb6e056aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"f8e676a18037424eab294bed0851d880\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"7b18e299c2944a0c8fffabfa5f957801\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e6d4986d62724adda9c6d294fa85fd57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"486f9d793a544261958d483651944ee0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"93eeb6e00b384ab59ab67cadfd7b99ac\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a70915da712c42dca0a2f452672a2c9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"109
INSERT INTO ` sys_resource ` VALUES ( 1349328285267521539 , ' guns ' , ' guns$dict$get_dict_list_exclude_sub ' , ' 获取字典列表(排除下级) ' , ' guns ' , ' DictController ' , ' getDictListExcludeSub ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/getDictListExcludeSub ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"a1ef4beba5234a68a58f142ab1a7f3b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"f9b1d5925ac74730bd61d4d416986d75\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"166825dfd4ce443e906ffd7abeec07c0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"8c4a09aed34c42e795d2e1c2a71abd21\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"24f749cba30241cf9317b1667b09125d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"31fb1854a54847c9b9b295d7cc7bcf62\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"dfc88bff8f7348e284d123cc29428147\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"59d8bcac3d97496ba20396735b446dda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a357599f694940ffa9c16973f2f25be5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"53473a4bf7f44f84bb694d375c9a7917\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"32ec9c14f61e496ab80335fd00024f9a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285267521540 , ' guns ' , ' guns$dict$validate_code_available ' , ' code校验 ' , ' guns ' , ' DictController ' , ' validateCodeAvailable ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/validateCodeAvailable ' , ' GET ' , ' Y ' , ' N ' , ' Set[\"validateAvailable\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"9ad8f3c423f14bfeb6549274ab8a7ac3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"6bace9523be74bf9af07b5eefa9e17e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"4a06f74223314128856aff304fb3053b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"86f380bfe07744de9648f065d417ac01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"52d052b22c28403abda540034c16ed6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"19b3af3ba94a4b1e9aac3b4cb9ac3e66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"9c2bf639657d4fc3996ab21a2b0553c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5bdd4a4d3ca542798b455ef482df44fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ec977913ad35484d94d8ece94b27695a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f251e846c6fd4e6eb5cd94673a20c080\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d2d222fea04b4c00a6e7923e4feb3ff8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"c56f072ad53c4935b7ad4dcb2c4d5ab8\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6eae32d2371a4d40aef9369c0fb91a5d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fi
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715842 , ' guns ' , ' guns$dict$add_dict ' , ' 添加字典 ' , ' guns ' , ' DictController ' , ' addDict ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/addDict ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"b6c2d909d474472181ec742fbb3e6593\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"a7ee000014394334a8e91e1e7d6e66bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"e443b0329dd441ecb1b953e1b9f1c9d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"4f9c00e4ad7a4127adb1dd85f7d3e099\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"ccc565925527436c8f4062310730bcaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"5869a570e5724951aca05dca9319a8b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dafc345a15224aeab77d6c3adba83df7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"8393a5471eae4f87b0010cc77a10ed9c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"22cf71c106194c2b9845caca3506394f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"9ec1e8849fce4af497bf257d99ea6923\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"7d3728121ae446989358b581fb71b4c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"5da12ad2212f46e89375157648cc6558\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d9bd725199214b00a15a2bd1e29b8a5d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3617b4fb966f4d5
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715843 , ' guns ' , ' guns$dict$get_dict_detail ' , ' 获取字典详情 ' , ' guns ' , ' DictController ' , ' getDictDetail ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/getDictDetail ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"11a95af20ca243ac91c64390d1b3a8ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"dc9c46904b174f0b895faa068dfdf2c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"b5d2d4e462204d51b96657f5d7e97d09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"f77484646de549bcb5fce9d3f1282810\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"bb1acac82a4c4f899fed00fc07cbcc0b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"f2e269fe0a3b4d54a4f2bb0fe8a32129\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"e7608861cf2d410dab95f4da4f9d0c6c\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"84f59017b17b4407823fa9c26186098d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"066814b16fb7468b821a3a0a70be2a9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5c5beaf147f8412dafc7b2e03e005e6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4954f60e7d6c43d2b31157578e290076\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715844 , ' guns ' , ' guns$dict$update_dict ' , ' 修改字典 ' , ' guns ' , ' DictController ' , ' updateDict ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/updateDict ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"e7e72826ef10461fbf1a8ff42eee5811\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"d45983fa3ace492c9e7f8afa5bcc024f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"3b5f23e1ea064225accca4814b11d778\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"d122d3307a534e9cad9e7ad32e43d8aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"9476894df35348e483b43ee625b5057e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4136ba1035df416c83f47c9c0545ea58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"2645f9bdf6234e5c95783fe2f6c7a676\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"509b731f12d94f0b951b14a4c78d569e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a8760220cf0e4ccc9ee02dc5153a1d01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"45d3186688c34308a3835f3279564981\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"b5cc3c3a5ce0422c800cef484013ba77\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b1daa728d1274cf6808741bae148b89d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fc11d5f6e3e84862b88c83a3a726841c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715845 , ' guns ' , ' guns$dict$delete_dict ' , ' 删除字典 ' , ' guns ' , ' DictController ' , ' deleteDict ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/deleteDict ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"953026f216f440019fd7ccfad78e590b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"c6d01b6cfd514c1dae4da3659b57bbb1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"3d6b6128354c47988badd3d973a70f2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"1478c631891f44488a7984b1735051dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"d93e4a7520f64fa1ab9806826219f071\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b8ee01e49a3c4c1aae083b7a672f2e40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b2ca328d85f24d29bd6c3e84ff37d5b5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"6c3268a7df214e38817b492437196fe5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"47ed2a3aabeb4f699d41addf758cc9eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"e0d5a5f15e474b8b832c85bbb8597f24\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"4fef7fc849534886921ce5dbe1d3a53c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"4f963a10344f4ebe8ad4065689b72abe\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e34685658d1c44bab015d140723806d8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715846 , ' guns ' , ' guns$dict$get_dict_list_page ' , ' 获取字典列表 ' , ' guns ' , ' DictController ' , ' getDictListPage ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/getDictListPage ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8a551bedbbd84d01963452dabcbb8ae8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"4ebb2acd04a946ae9a4fe15dca3572ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"44004340a59640eb94be8ab205590134\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"af91fcd6a88c47a2b9e11141e3b1310d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"f359ab7d8db546d7b0bf4a12520ec49b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e42fe26c32e2428aa6807576085e3fe4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"3b70bde79817466c9f2bdc2af211660a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"473b917e8db34ec1906e79e765569332\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"65500581ca06446785bf30b267a31de4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"140c68a0306f45f0aa7a504ff1915515\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"48c2762f402b4fabbce9aff20e6bf5f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d72400fc20604562bff0a5db84c14382\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"be65ebeda4ab46c39956cf0e97378954\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadata
INSERT INTO ` sys_resource ` VALUES ( 1349328285271715847 , ' guns ' , ' guns$dict$update_dict_status ' , ' 更新字典状态 ' , ' guns ' , ' DictController ' , ' updateDictStatus ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/updateDictStatus ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"updateStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"370900b395014010a60ed02027cb3768\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"df393011f7234979828329a322d31539\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"f10603f1a73c49f2a3c7ffa3e9fb6fb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"6b95d1dd666b450cbd1dec8c6b956ab2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9910af3c083342eb9e0f0ed5a4bec33c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"e72ee20168a44ce5804ef61506469456\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e7fb444ce1e44c5c8e0a491ca0937c77\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"3316b3e3cb0a44d29b4b31cfbfa52385\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"c40f450138b442bea5e7f399ed356703\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"99ee7c3309ea45f48e56e195b1bb6f87\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e5ba514daab3450fa8388ac6a3e1a237\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"e37606fc14e849088184bcff219a3036\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a41a62116c904246b6223023b28cb09b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName
INSERT INTO ` sys_resource ` VALUES ( 1349328285280104449 , ' guns ' , ' guns$dict$get_dict_tree_list ' , ' 获取树形字典列表 ' , ' guns ' , ' DictController ' , ' getDictTreeList ' , ' Dict ' , ' 字典详情管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dict/getDictTreeList ' , ' GET ' , ' Y ' , ' N ' , ' Set[\"treeList\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"029c4e093ec244f6b5815bf306bccbbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"f1fd753228fe435997fa0bbc8947f26a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"bf0bced9d1e5478f9ca8c4fb7b0f6aed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"a80ede63a89141acb1399c85dd84eb29\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"],\"dictZTree\":Set[\"NotBlank\"]},\"metadataId\":\"49a29517b5bc426fa0c770a1c54e1f78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"44f82d3820ec4bceb88ebb1274d46f41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"513e10e867c546529485d1bbe8fd2238\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e99a2ebba098418b8bf189be73188394\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a9c7f8d12985440897b3cf0060d6552b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"07d2d45511a846d9924e846b734b4208\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"eb6a538e20ee4a818a84b84da8530b0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"39006616892845b79c9144238d2cf581\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"9efe91ae5b3141eca77ed7cacbe4838a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"
INSERT INTO ` sys_resource ` VALUES ( 1349328285280104450 , ' guns ' , ' guns$sys_timers$start ' , ' 启动定时任务 ' , ' guns ' , ' SysTimersController ' , ' start ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/start ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"startTimer\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0997c09678504d82b92e5bc79347eafb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c1364a4dcb13429ab38395d0c6d443a2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"8c722d607f5246e5a05be5cabe9a5387\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d5c2c34fff074c089791f4a05e1c39f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3f611fdb8cba4f2a85bc25b4fdaa1913\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"fa5703f942324b39ae887461257dd7ec\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1f4080530ea94995b03f5408a57bad1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"96905c3f1dd547189ff69035fd2ad74e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"49dae7d25f784944a6ad4edc2e42c6a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c828bcef706344a3ab078cc476e9eccc\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285280104451 , ' guns ' , ' guns$sys_timers$delete ' , ' 删除定时任务 ' , ' guns ' , ' SysTimersController ' , ' delete ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5b750a672ba84137879407a6a0798ebf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"da78ddc21f524d4ab2779698e7129ee6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ecd4c0f1957b48eebc97326c17a2c8a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c37a761278674282acba165036378a7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4527c30d57e94dea9e2d64f7de9e32de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"f1fc42140b8442c6abdad67c777d54f6\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7c1d5a957bcd472ca0c419bdfcf85239\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6f61b669543943ad8ed74adfac82b560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8c3f76d36bf14b9299c432ea413f7c26\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"27b799f6c54f448bab6ebee24ca3f95e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285284298753 , ' guns ' , ' guns$sys_timers$list ' , ' 获取全部定时任务 ' , ' guns ' , ' SysTimersController ' , ' list ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"17e3a84f92ee40c5b64530e1269ef7f0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d23e00633df1492e8b0079b33f527016\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"f20165548e8d45cd9f84f41d95177e63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8f66e019375d46e980b4b424ecb2f827\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"332b4b9fcdf04bb186691eb9e95730a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5e9b1ea2ef754ea4b4699df6a3abc72d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e105e3ec1b27444e8a60e3bf1653c365\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"da80244627ce4918a86f9c0e956fdb7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2c6fec031e174a9e93ff49b0ac50f6d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e28afe4a07d2411bb42010857a299724\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285284298754 , ' guns ' , ' guns$sys_timers$get_action_classes ' , ' 获取系统的所有任务列表 ' , ' guns ' , ' SysTimersController ' , ' getActionClasses ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/getActionClasses ' , ' POST ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"193858c25d5a4367b89c085c40230fb9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1124b5c3d7fe4535985fd5a720995980\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b6daf2f6dd064d1d96218edab2b6914d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"dcedd89b8629490ea37ff18c1bdd69f9\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285284298755 , ' guns ' , ' guns$sys_timers$detail ' , ' 查看详情定时任务 ' , ' guns ' , ' SysTimersController ' , ' detail ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"daff68cbebdd47f4a20e56db461ff4bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"128194c7ccd24fb2a800d0ad7066a53e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"041f467c0cb748d5abe819b21cc77b31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"cc11d0ccc6674348aa9f99925cd63fc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f3cb08ab003d480aa862a2e29e342c48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a4fa1365a38e4e0eacb3dddd66f4b308\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"75d5d34e1add4424894ce2911068b0b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7ebd233107b94219a5df2e0d3af061e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b3524ba25a2b4204a6fcfce1afdcc38b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"04e6e452be4a425095d66ac92cf7dd28\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285288493057 , ' guns ' , ' guns$sys_timers$page ' , ' 分页查询定时任务 ' , ' guns ' , ' SysTimersController ' , ' page ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"45bac417e73f43afa25f30aaa41b4f29\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c96176b1d17244938862d8675dc4c5f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3406f21382e94a3294d2135e2f1b37f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"66fdfa483a424772ae24c694c28003c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"dc1bb377fdbc442b948eca5dd6eb8952\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"49fb1bdd12614a1a9e1a2bff0a915736\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"996e9eeda0a946a4b40c0efa596f789a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"30ff170b8ce647d59baf22e4dcfce5f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c551da74884547fca1527b65205be312\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d316064f07db4623b595878e69890e2a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285288493058 , ' guns ' , ' guns$sys_timers$stop ' , ' 停止定时任务 ' , ' guns ' , ' SysTimersController ' , ' stop ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/stop ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"stopTimer\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"252cacccb78a4890b78a1879d26a1185\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"24480e62a2a94c72a4d6a1584ed8bdf2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"293500d9911147bdb46a6b8700e070ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d4b1b7dcaca74beb8e9bd6c2bec6ecc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d31ecf537fe84d609f97371da231a3e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"2602194875624c209c53d029f5646dd6\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d8a8daccf482444cb89bb08344937e2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9d59529eac2f46809b9872738670b7b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"bc719d47d170423082b92269506738b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"12c83571742d436da844e6f0d6a7154c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687361 , ' guns ' , ' guns$sys_timers$edit ' , ' 编辑定时任务 ' , ' guns ' , ' SysTimersController ' , ' edit ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ed6ea6aa912a4b0bb82025c2d0ff191c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"41e522195e4d421dbfb01715ec86b2bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2f0af2d1b8ef400a8ca18dcd12e2e768\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"b61146047eb64c0e96b2cb2e44c907a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8be6944fb61c4d6eb71d8b3a076fc3ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"f144333183054a48b827454a29f589f9\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"92a80562d17b44d3adbebc87522c06f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f274acf68064473aa51a16f88d27a8fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f218cab2d87543889f51e4f35405269e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"148a0cc7bae344369dc2e6b0783839de\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687362 , ' guns ' , ' guns$sys_timers$add ' , ' 添加定时任务 ' , ' guns ' , ' SysTimersController ' , ' add ' , ' SysTimers ' , ' 定时任务管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysTimers/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"timerName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9412bf212e994e2595635e76b45d3ab5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"8d3f63f43c8e48b28722f1b1a15736a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"jobStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"]},\"metadataId\":\"27f5eee84cd042bba38c42526a09f099\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"actionClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c8d1df54937342b2b6cee7036795666b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"timerId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"startTimer\":Set[\"NotNull\"],\"stopTimer\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"e5f310604a234350ad6cc5279d34eb58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"cron\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e261a9bf186244ba99d430240c945923\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"dcc8a6b32c2b47158eac4dee06521fc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e2ef719c41d740f5aab6abdb911b256e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"30b74984ac354c45a8ff36b8bf5b8635\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"69845fdbbd88490094fbb21d438211ff\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687363 , ' guns ' , ' guns$menu_button_view$menu_index ' , ' 菜单管理首页 ' , ' guns ' , ' MenuButtonViewController ' , ' menuIndex ' , ' MenuButtonView ' , ' 菜单按钮管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menuButton ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0d47e2c2aa9c4ba3b4d810f385c266fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"83bdbfca9eda4386a1fbf70d9c880e6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"333cf9be31cf4e60ad54a83340edf6fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f7a61894ea06486180222f024a4e0608\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c158339ae9e74ad1a99f0c1a935ee157\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687364 , ' guns ' , ' guns$menu_button_view$menu_edit ' , ' 修改菜单按钮界面 ' , ' guns ' , ' MenuButtonViewController ' , ' menuEdit ' , ' MenuButtonView ' , ' 菜单按钮管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menuButton/edit ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e9f773fd48cc46ccaa8a2fbf13e72a4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"8cb3312103ff4418b9ded84c1f650ba0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"ca172f50f7b24fef9e174fcc70ef6af0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"65da822a54154ae9bbc5451ede21b929\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"ffd274073fc64f06ad81315fca711c0f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687365 , ' guns ' , ' guns$menu_button_view$menu_add ' , ' 新增菜单按钮界面 ' , ' guns ' , ' MenuButtonViewController ' , ' menuAdd ' , ' MenuButtonView ' , ' 菜单按钮管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/menuButton/add ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"eb402ce21a1149b8a8a5918c8be994ed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"2e36ec5134044123aa69e7b80d9bb9b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"7d92f92dc7ef409cb98dc21ab96eb8ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"66cf7e4e2d5343bf9585d40d34076943\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"ab0b13e312f449b39d65ca49338dd6f6\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687366 , ' guns ' , ' guns$online_user$online_user_list ' , ' 当前在线用户列表 ' , ' guns ' , ' OnlineUserController ' , ' onlineUserList ' , ' OnlineUser ' , ' 在线用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/onlineUserList ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"a7405797898d494abfa2ee269660b742\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"metadataId\":\"b9726d40a42a4a60a5649946ed28568e\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"12d5ae188dac4678906b5904d0327550\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"316feb3904fc4ad194ab7f0f118c4e18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ddc8d7044b5b406f8931b3c523f4ec42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"03088ea45ef747749d36b07bd4107658\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687367 , ' guns ' , ' guns$online_user$remove_session ' , ' 踢掉在线用户 ' , ' guns ' , ' OnlineUserController ' , ' removeSession ' , ' OnlineUser ' , ' 在线用户管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysUser/removeSession ' , ' POST ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"token\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"3e40f507fe6547d2a2345e8388c46cce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"metadataId\":\"1c8ae2ed88bf4bed92a52e208b40b328\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2b2e87cfa6e24acf8fa7fab4c06acb02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"462ce56d24b24be1b494a696be965b86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"70169e1d4b0c4213af8388ed8697ec09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"c019e86e3b84499f92571414821c7b78\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285292687368 , ' guns ' , ' guns$app_view$app_add ' , ' 新增应用界面 ' , ' guns ' , ' AppViewController ' , ' appAdd ' , ' AppView ' , ' 应用管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/app/add ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"4b9a6a95705a4e00a31adf9793064dd5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"93c5c36bbb18451d81c8cc0fcc5d41d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"517798fc734340f98a3d947b7800bd44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"9ec08088800d4717b2565b6e9527161b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"20c903e8f36d47ee8292af9b004a509a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075970 , ' guns ' , ' guns$app_view$app_edit ' , ' 编辑应用界面 ' , ' guns ' , ' AppViewController ' , ' appEdit ' , ' AppView ' , ' 应用管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/app/edit ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"21d1fb65f0b9430aa7c6660e9aca9b5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"04895bffe5c84cf0aa450bc1b348e9fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"ad2d0569f1e24227b4e5987940a2730e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"f4839d99fb8b46b3bb94e2498a35d2df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"901344f12fc24b8f981ce6f1cd3295e4\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075971 , ' guns ' , ' guns$app_view$app_index ' , ' 应用管理首页 ' , ' guns ' , ' AppViewController ' , ' appIndex ' , ' AppView ' , ' 应用管理界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/app ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b42edb7a5742447984ad65a341953501\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0afcc5e5badd4fce8463cdcbf4de095a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"1bb1e48bf3bd45619029648f50fb504f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"4ec101f622ae4e39887d73f3be438db9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f5cbb705c6374234aaa0fbc158469104\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075972 , ' guns ' , ' guns$notice$detail ' , ' 查看通知管理 ' , ' guns ' , ' NoticeController ' , ' detail ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"28eae993a5354b4ebb60a5129b62f13c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"155164ba2c494de19b3a39151cef4d39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"ca93568ed6df4339b44be06be7af0734\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ec6c0b9b51774cd1a81f88ca5f51a40c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"866316f24c044394935276577bcdaf53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c3a994481e1d4f6197c7cbf5ecdabb15\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7b09dfdf9518464a8d72b22edbbb19d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"11dce94d851d47c797714202c62d0777\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"25d8b59d7b6e4744a4686aaee8d3a360\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5ee22d04bd1b4371b4a31039e9c41190\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"93c8383bc2fe462198d52fe00b7ee373\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1ed039213a1344a0a23bdbc17976da8c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075973 , ' guns ' , ' guns$notice$page ' , ' 查询通知管理 ' , ' guns ' , ' NoticeController ' , ' page ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"6163af2f9ce84747a40d6bb69a6a9c41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"86124956c48e4aaf8e0a5d6ecc766730\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"26049bcb71284450bc1f62e59b2ab614\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a065fd4356e643b3b7db6d347432d649\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"57f7b424b79b4768936676a2ae0a525e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"15aaa0a7ab354732a3a0446ac1dd5a65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"a7d17473e4184968aed5f5e290324eee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a99e5029432445c9944445bc1bb6d690\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c244167b560f4c10a9d81193308c7431\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0a26daeafbfe4c27a56c51efb5557875\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dcf1de3f902b4383835af022146e88cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b74fa13f21c54056948568a96fb7d040\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075974 , ' guns ' , ' guns$notice$edit ' , ' 编辑通知管理 ' , ' guns ' , ' NoticeController ' , ' edit ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"0e64a22457c24a1f9246524b9491e521\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e377a82558b14ac5991dd0b528506965\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7c17f9ca41c746778799ed8c51c847d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"2ba42b66e6dd42649ae3741e245d458c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"de46d5515cb94f438dc1ddaea14c1dfc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"de7f1832ca4541e183681dfa46a57eaa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"bfcef19339194f30b64a8977b5249421\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"02b9bdcb24834e5bbe2314eb2928be4b\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3faeeb9074f540cd8dc282a40ba06cb8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c8165907590743dab33eb38f6a22f425\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"617055adb78343848273788037433b88\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"62619382f1bd43ffb10eb984473ad140\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075975 , ' guns ' , ' guns$notice$add ' , ' 添加通知管理 ' , ' guns ' , ' NoticeController ' , ' add ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cc98174a4b124bd29c4fb3f2020392a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"54c51c3fca09446faf00d071e8018eaa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"5ab249f329e64f279cf802a5f8e50bed\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"3a4f705f72bf49bcb4a7d693a4a92f10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"d19a75b41fa843bd81b2b3236e887ade\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cfe82484b8db4124b30cbd3f124f43a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f6cb7428cfcd4dc2a857bc661a7ad09e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"86e9ff2d177643599fdf3eb0424c5932\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c5848f083be44dc8b961694c5e07f0fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ab7f70f72398493a8fb25208e7a1833f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3c41ec03824b4f6c86c3e6681a190bd9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"16b6d015af244387b4fec253bfc54c9e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285301075976 , ' guns ' , ' guns$notice$delete ' , ' 删除通知管理 ' , ' guns ' , ' NoticeController ' , ' delete ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"e0865ce7374241788e3f1dae71f73edf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2abf6a8dcd5643b7841977bdf94d7664\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"8c49a53cac5c40118986ecf0a5cde508\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"20765adf01ed49cc909de559d0b221cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ac131bc796ed4fbfa1452503aab3d655\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c5dbf4eadb1c4e3da18bbc9b76ba7f90\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"aec2aaf0ca7c4395ab8504d270daf4ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3edb8524fe4948cea0ef2ae16ca57ee4\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d8e75f2be86f4e7e8ba079f09ecd1616\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c8327f2e00a74ecbb258f9325dcd18bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"9ec93e5dbc5e47bea2fd8c664c942fce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"829040b03ffd47c5886253a6e0275ed7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285309464578 , ' guns ' , ' guns$notice$list ' , ' 通知管理列表 ' , ' guns ' , ' NoticeController ' , ' list ' , ' Notice ' , ' 通知管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysNotice/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"noticeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2c489fbb661c4e06b72bb0eb04b9faf6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeContent\",\"metadataId\":\"526d97b380f6447f9c56184ad2b77de0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeBeginTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6ded082fc9f5495d90819f2cdc71801a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"JsonFormat\",\"NotNull\"],\"fieldClassType\":\"Date\",\"fieldName\":\"noticeEndTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6d9d65040208449cb2aa8b7038a190e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeScope\",\"metadataId\":\"9ffd9d53339c4a91bfaff6a628ac388f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"noticeTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3b913da04052457e84571ab8effed6e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"16acdc2d069f42a8a24702cc729316c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"noticeSummary\",\"metadataId\":\"d6b5bd960bcd4c24b56dbcee9f5975fe\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"081a8463fd174fc2b13dda96debe2295\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"96e76ac6ad8d4e138f099f257acd3426\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"668b9fcf17c74574af6f5c0fd626229f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fc0f796ffb2344aa8765fc48b6e715dc\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285309464579 , ' guns ' , ' guns$dict_type$get_dict_type_page_list ' , ' 获取字典类型列表(分页) ' , ' guns ' , ' DictTypeController ' , ' getDictTypePageList ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/getDictTypePageList ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"031ffc4595364839a0e1da46707653cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"92ae0f3aa27d45feb6312af476d7a12c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fe89d79e8f064ac7a47e6b9ea414780a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"408d58731b664c9796f720b80b566115\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"36966e04f3ad4a1b8121c01f1611129a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"e704c20ee32e49c4be585c156fc5e213\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"cbe2a2824393499abfacc6a18e682a99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5a82ddf8fc8e42e991ec3c1bada43ecc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"4f47c11722a64a38a8c23856f53fa151\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0893a19d5f6841dc897ab4305bc2de97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7a262d35e99c4656bf45e099e0221248\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5d43ef00575e4640873e0dc64d58fb4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"77f11359115f44c688c3c62aa929ad22\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285309464580 , ' guns ' , ' guns$dict_type$delete_dict_type ' , ' 删除字典类型 ' , ' guns ' , ' DictTypeController ' , ' deleteDictType ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/deleteDictType ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"af56bd91739140c696389a7b803dbb28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3b6001edf0c64fab8322ffbe09fb55fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6d5526258f824b03a559fdcd100fb5dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ba653631e9a84450b02e759a7ecf44a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"eba5aaf04119477798649ffa56e9dca0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"62b587a93b8e4978a5d597bcccb91ff7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"8e143478e71e4c9c839e71c0b0f1f9ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"aee25fc68c5045a48767d0551a1ceb4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"5554fe94cc694992babee68a019fa0b3\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"72cfe46a25b54f3ebf5ab28c2d640ed5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a5f4998cd5134264bcf53ee331544261\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"08f65e33276b4f7e98d8bc0eca32cda2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fd57bae058604c79978e7378f29e5fa7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285313658881 , ' guns ' , ' guns$dict_type$update_status ' , ' 修改字典类型状态 ' , ' guns ' , ' DictTypeController ' , ' updateStatus ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/updateStatus ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"updateStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"ec81201758a54096849b6161185e37d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"46e601c533634586955e4064b4752ade\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"78d1837aabbe4ec0b5b3725e2139e792\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"e4d20d881a894f8b9096886dbb10a191\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"fe64132cf35c4946bfcf6bf6e535d7e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"365879c30dce4a8c9b13eba6858ecc9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"799d10c7e6a24d6aa19df4aa6acdc99f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"65481a69149a4dd6985a03971960587b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d5f7c9ea27404f2fb8b1f5333e795fb8\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f631af6b52b944fd876a7c14c45ed4dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"624b0fd62ef24b328419f70c6fee64eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bef594a5b7564352a527512665d91e80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5d1c4ead0ae040e7b1a709ef43c141f5\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285313658882 , ' guns ' , ' guns$dict_type$get_dict_detail ' , ' 获取字典类型详情 ' , ' guns ' , ' DictTypeController ' , ' getDictDetail ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/getDictDetail ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"b0c9e56c8446443da33ebd1f4f292cc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"3eb6920f052d4dc7b4cc0fa9e97ebcd6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"4a3a56e0fce841748ac93a1e74365cbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"526307f40d9d4c55ae86ffbf94ebe7c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"d8ccdcf8c01e472887626de56519d7a1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"af03a98eb6c44b13bb1555f807dfc3db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"f8d441eef0af4784986c32a7f98ee3a5\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"13ff076bd4f84e3a9bc49c3c5400c7e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b829b81d43b842cb9f148e2778aad25a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"332f6ac56a064faba279e96ae2347bcd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8ab68472e0124deaba358bcc42352350\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285313658883 , ' guns ' , ' guns$dict_type$validate_code_available ' , ' code校验 ' , ' guns ' , ' DictTypeController ' , ' validateCodeAvailable ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/validateCodeAvailable ' , ' GET ' , ' Y ' , ' N ' , ' Set[\"validateCode\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"f90fd93d147240139ca7d7c9c451913d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2e7fe25ed86e4b0c8c4e0d1c19e44a51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"2bd9ea976fb34994b5239b2f670b6742\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a3be093371e541af8d68ba099fd1f945\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"818f14877d5849c1b02123d60fcb5b95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"99167306155942a59545041a54c25bf9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"b825e603ea4942eaa156c5e3922de2a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"2e1f28c7ded941c184fa45206aa613aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a5b3cf2806b744d9a305e0169a440217\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ba46f19d6c0448c1970b90cc76aae171\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d64a0c5407a742599784dc6717c70696\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"03d3830cf8be4b25830a91b0e9241893\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"34cbca210a1941bbb152be694a815da0\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285317853186 , ' guns ' , ' guns$dict_type$get_dict_type_list ' , ' 获取字典类型列表 ' , ' guns ' , ' DictTypeController ' , ' getDictTypeList ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/getDictTypeList ' , ' GET ' , ' Y ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"eea4e1f9e2ce4a42a9bc666734305b7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f2a0e909b7a04e9086456e71f27b4608\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4daae0d8e6034147a69f7a045c50cef7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"cab8483cc5074051a659bec7bdaf9687\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"2e217f18810e4dca851b9e63ff35f592\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"51ff6e5267c744809901009956d9bbbf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"742c47694b034cf2b7815d5ebf583c53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"d85a9577d4674676a6a9ddab01c7b0d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"885679f7780e48eb9c82068853d5c2f1\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"923b03ad2f8247079017a3267793e32d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fe3d599b14394c9e9e5df973e47933df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"595363ec90f149f68ca0676dbed2e097\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bb0f3eea0250412294131ce1fde2f181\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285317853187 , ' guns ' , ' guns$dict_type$update_dict_type ' , ' 修改字典类型 ' , ' guns ' , ' DictTypeController ' , ' updateDictType ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/updateDictType ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"eac12a3f4f7c418b8be9e4ac1e6c996b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"efeca0e2c17f4157ad32c1d3595e8dcf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"743eec2993f640c7ac8e25e3e343283e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"70fa6e8fa11b4001a7ea8122feac72b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"69f789e3aaa144e39a528a4fa7aa3b96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"fedbda1e7ebe45d4a35f2e4e82f02cd5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"a0771b17cd454c1d8e0ecaf3424b5ba9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6c638bdaffae492aad40848915568d23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6b9750e3748a416a9595f2f9d5bbca70\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"270e90b8552344a0a8ba9846279cc3b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f1741fef703147ca80e4150956163f05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"69cfe572c8c1447089563e88c5e3d2b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1877715c20df41e9a493a20f08c8e97e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285317853188 , ' guns ' , ' guns$dict_type$add_dict_type ' , ' 添加字典类型 ' , ' guns ' , ' DictTypeController ' , ' addDictType ' , ' DictType ' , ' 字典类型管理 ' , ' 192.168.11.1 ' , ' N ' , ' /dictType/addDictType ' , ' POST ' , ' Y ' , ' N ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"cd0ed50938db416490854e58f8a5ad98\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"79ea10f665684168b36b6773d9884aa8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ab1770771b8c4b4293f23f0f05bee94b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7c3b2e2c80074e099ada7813816dbb84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"ed2339f1cccd4898ba9fa8d01c9e0b21\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"cbd329db31b24c79b1f6f10237848e63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"41df305a20744f4fa2666be511747a72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ca3774f528ed4dc282630691661d054d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"37037020d17a4c6ebc680a4a3d511339\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a82aef7a6a7d4ca28d1bba818d070e73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3b20da1b06504092921dd15b7c288d43\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7730cd6b2cf14fe3a0b346c7a84ad552\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0c407bd975ab4e1da64bb7f5e8bc7e3f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285317853189 , ' guns ' , ' guns$user_view$role_view ' , ' 用户管理-角色-视图 ' , ' guns ' , ' UserViewController ' , ' roleView ' , ' UserView ' , ' 用户管理界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/user/roleView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b29430aa4232480c904d697f2ee7a834\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"6412753d173344019437a4849932adab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"e02fe4a0e99b484d9a960a0f237a4676\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"71755bf6712a4f419faa4b1670b6ac55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"d6bd790a56db48589da6358bde48a262\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285317853190 , ' guns ' , ' guns$user_view$add_view ' , ' 用户管理—新增-视图 ' , ' guns ' , ' UserViewController ' , ' addView ' , ' UserView ' , ' 用户管理界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/user/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a579e61191b04fbd9408d019e7ade851\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"99557df38ed943b2abb4a8beb0abb037\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"eacc2bfdc7db4974a4f80ab3cd7243da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e3b4ad8ae4fa4f94a81fafb0ce19afa1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"301ddb9e76eb46deabbf87676d303661\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241793 , ' guns ' , ' guns$user_view$index_view ' , ' 用户管理-首页-视图 ' , ' guns ' , ' UserViewController ' , ' indexView ' , ' UserView ' , ' 用户管理界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/user ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"1e8d6614a00441db8318fbd1b04cb681\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"fff53a937f0140339ee8e1a179155f70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"9296028acbc84a52b5f3deb5526bfbc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"c0e397a337c149d480e2aaa4a7fad78e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"c44b9eee46c3440aae3409a815a7b39b\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241794 , ' guns ' , ' guns$user_view$edit_view ' , ' 用户管理-修改-视图 ' , ' guns ' , ' UserViewController ' , ' editView ' , ' UserView ' , ' 用户管理界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/user/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"265a3dd941434d588b14113646419fb2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"6a3865ef0cce4d7c97cd3f6eebb769dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"bc0e31835c7d4f76938e3bf2fc08e63c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"0e2c8731c7454f178cf119acc867dfb0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"714460b4760c4ea99aa0d8ffe52cc89e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241795 , ' guns ' , ' guns$resource$get_lateral_tree_children ' , ' 获取资源树列表,用于分配接口权限 ' , ' guns ' , ' ResourceController ' , ' getLateralTreeChildren ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/getLateralTreeChildren ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"652de7d12912418e9dbb8eae879a5dc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"14ba0f5b2d984cb0a60ee7dba8479df7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"650db1e3fba34b3aa4236021ca20129d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"075ed2576d334397ad93f015900f8256\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"afbc761b67054a43874717e57eeadd45\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6cb55631cf0a403894101a91196f0d18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"b456e2bc0a274257aaec991a8950f5d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"f506f1903ffe48ff8dd9af7fdb7d77bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"9ee403bc0b6c4b64abd45f09700a6c9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"7e8f76fd7fe544248115ecffc7a04560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"61afd7256c454280a2dffcb747ee8c83\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"19c5d34de37848a29665472491f75f09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetad
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241796 , ' guns ' , ' guns$resource$page_list ' , ' 获取资源列表 ' , ' guns ' , ' ResourceController ' , ' pageList ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/pageList ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"4571762beff84758adf5725b4e395063\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"9a58d1cf063d4479ba6be6f1246d8a60\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"efe3a51d509b462793bf8a01780b9c32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"641b06cb7a0845d6ad6862b53a82dd02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"c540aaa072084983bafcc1aaf89f4130\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"a0845cd07127400990bd867fb97412a1\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d837126672cd416bb41303419e911bac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a1b76f900b4e41d9b052a224e0ee50fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"93756df091c140c4bb8a455adb21c208\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"267b83bfb7b944599777941a644dff4e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241797 , ' guns ' , ' guns$resource$get_menu_resource_list ' , ' 获取资源下拉列表 ' , ' guns ' , ' ResourceController ' , ' getMenuResourceList ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/getMenuResourceList ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"0cbbd90d1abf4511b9a27653d2abf7ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"4eaeabfacfa044bdb0dfe9d79b78407a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"9f9d716cfd5d48ff9c327d7a0e284655\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"7a79027485d14e30941796a51ca4ed12\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"19fa9a0efcac444abddac142ab468bc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"d37c5754a4424a21a146ed9a1ca88b09\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8a73d37a75e94e43985541f79b153ec6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5efbcc601cf94d468a2b784b1102cf36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bd3a31e7023340d2bdbf3e05073c9324\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1532d2dac7c740fcb833a32ed77d0ff6\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285326241798 , ' guns ' , ' guns$resource$get_tree ' , ' 获取资源树列表,用于接口文档页面 ' , ' guns ' , ' ResourceController ' , ' getTree ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/getTree ' , ' GET ' , ' N ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2c4a6ffa144e4fe5aee557a908a553c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6c520e44e34d416e9f1bb4520c55b96f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3ed97055087f44539ecde72af47d99a0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"37714852a8c24b92a273c68470571c70\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285330436098 , ' guns ' , ' guns$resource$get_resource_detail ' , ' 获取接口详情 ' , ' guns ' , ' ResourceController ' , ' getResourceDetail ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/getDetail ' , ' GET ' , ' N ' , ' N ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"fe83651d8a224819977c944a8b1fdfa8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"38a4b47f405341b6a97a6b3ea9883516\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"33bb96577d2a4f58825f8688e2039fc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"db48851f0a8a40ff96b3007630b3e798\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"fd07f2cd72ff4082978490c5ec45ee2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"d2cc113528b04c4783cbb2e397a2a700\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2efeda936a3a45a3b66233b4325a3c42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"716e7c72686e48719b51392aade8b655\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8f2c361041dd4191b37ae82e12a1da9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e725d452bfeb4273a93d72efcea9b2bf\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285330436099 , ' guns ' , ' guns$resource$get_lateral_tree ' , ' 获取资源平级树列表,用于分配接口权限 ' , ' guns ' , ' ResourceController ' , ' getLateralTree ' , ' Resource ' , ' 资源管理 ' , ' 192.168.11.1 ' , ' N ' , ' /resource/getLateralTree ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6196fea15074435b9a9bcef8b3eac073\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"61d16c044cbe421096fc840d98be4fec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"298ce8f373cb4736be613bc70e676077\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"fb8cc433cb3e49aea862f5437170493d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"7718482678ec443892dad60b6e844612\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"849a890e7ee24103a908905f1bc1c81b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"93f0ced1f28b4babba7de352d1da7c11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4be84fb4e0d24786b8d4c6c6dda22a1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"fe6bfae3186a443fafc388004ca586f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"0bc2ada856b94a879d2f93a3e8cb8ef7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"5955057b8c124e2c8a9414b3bd12cc53\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285330436100 , ' guns ' , ' guns$sys_login_log$page ' , ' 分页查询登录日志 ' , ' guns ' , ' SysLoginLogController ' , ' page ' , ' SysLoginLog ' , ' 登录日志 ' , ' 192.168.11.1 ' , ' N ' , ' /loginLog/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgIpAddress\",\"metadataId\":\"1e5c7174e9bf49b89c9314232f9aa1c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"beginTime\",\"metadataId\":\"c48fed15408649939232691caf53d2c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"llgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"]},\"metadataId\":\"beb46e1676be4cfab053c8cd19ecf046\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgSucceed\",\"metadataId\":\"bbc52350b159486d91754d26ca601234\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgMessage\",\"metadataId\":\"4cf00a128e9541da96dcc9c1ed457949\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"bedf1cf7cf024c878f9c43104984a4f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"endTime\",\"metadataId\":\"2970630247ad4ebeb2b68fbc06373257\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"createTime\",\"metadataId\":\"8834b1e725164f00990ca5f67524e061\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgName\",\"metadataId\":\"f45d4a75007346b580056dcc45aa8c3d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2ff6e788e9d242e685531c6082503578\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1dbcbaa334644055a3ce6ce6a45543de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"870b0293a35549839173e050ba30a9bc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c05b93b9e759463580c6ebe7d6ccc82b\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285334630401 , ' guns ' , ' guns$sys_login_log$detail ' , ' 查看详情登录日志 ' , ' guns ' , ' SysLoginLogController ' , ' detail ' , ' SysLoginLog ' , ' 登录日志 ' , ' 192.168.11.1 ' , ' N ' , ' /loginLog/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgSucceed\",\"metadataId\":\"5a9743641e4f4dd597ec064066b2be91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgIpAddress\",\"metadataId\":\"e8b81879311040429c8ee9e8b95d0551\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"llgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"]},\"metadataId\":\"60f3b9935c224e759775e4cab3dcfa8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"createTime\",\"metadataId\":\"39266c6e232e4ac18c25cd4569fae471\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgName\",\"metadataId\":\"490d2785eda04117871e5548be8f2f0e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"llgMessage\",\"metadataId\":\"73c91d6eb9544bd6be78fabfa765991e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"1b951f82bca24287832dc77837102160\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"endTime\",\"metadataId\":\"9624e3a2a6fc4d59bdb3ffd8b5660965\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"beginTime\",\"metadataId\":\"a5756827e57147289acabd9ae0124809\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1fe504f6546845939e046770e7220d4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1de756758a604aa7813019e3a3a03582\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0aed650288264eac864c5799daad0d10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"072b663e911b491f86343c6c3ed53e63\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285334630402 , ' guns ' , ' guns$sys_login_log$delete_all ' , ' 清空登录日志 ' , ' guns ' , ' SysLoginLogController ' , ' deleteAll ' , ' SysLoginLog ' , ' 登录日志 ' , ' 192.168.11.1 ' , ' N ' , ' /loginLog/deleteAll ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"14706ba4774a462cab6bc513395e5b2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3dad49b8705d478c95920e048301dd2d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3e93d72534c94c6f9112df888065f18a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"aee4f0461f764306b5afb6daf153950f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285334630403 , ' guns ' , ' guns$dict_type_view$index_view ' , ' 字典类型管理-列表-视图 ' , ' guns ' , ' DictTypeViewController ' , ' indexView ' , ' DictTypeView ' , ' 字典类型管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dictType ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"022aafbb21b949be9f30b24dc0163feb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"24a0f51fe6244e29949caaca1ff27daf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"ec4bff794d7a4901bf908b6e98f31fe7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"0821e171dabe4298af1f681ae4a68602\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"2ad76c1a34d54086846fd0e9f2321c0d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285338824706 , ' guns ' , ' guns$dict_type_view$edit_view ' , ' 字典类型管理-编辑-视图 ' , ' guns ' , ' DictTypeViewController ' , ' editView ' , ' DictTypeView ' , ' 字典类型管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dictType/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"72249ee8ddc841f5b270c4804db25e36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"55ed2330087e48038c6abfeab207d05f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"9813a6e7335e41e98312c7524a3b0d48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"75adb2c40acf42e4a7c892252460ccf8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"49cd6bbcb2894b5fa122d70edcae6260\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285338824707 , ' guns ' , ' guns$dict_type_view$add_view ' , ' 字典类型管理-添加-视图 ' , ' guns ' , ' DictTypeViewController ' , ' addView ' , ' DictTypeView ' , ' 字典类型管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/dictType/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"d92a26c21f7142d986b4d28862fbdb27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"53597f163a854c5480a109e737872ea5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"ef2541d4898b41ada5dddb03daf07fe6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"35367c2b3a5d4bc6b45c98a9bca17c62\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"6f4eb89922b546c79db3ec621a36cc4d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285338824708 , ' guns ' , ' guns$monitor$druid_info ' , ' SQL监控 ' , ' guns ' , ' MonitorController ' , ' druidInfo ' , ' Monitor ' , ' 项目监控 ' , ' 192.168.11.1 ' , ' N ' , ' /view/monitor/druid ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2396938b2a51454fbff4f4cc40a6d974\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"b6128ac29aab4f3f9dfb4c620b4fb1a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"8e22ee5087ed4c19a47be3538773c0d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"2adf103eea074f45a548077aa47c0225\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"337d3d62f7c948e18cd7dea16c895c5d\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285338824709 , ' guns ' , ' guns$monitor$system_info ' , ' 服务器监控 ' , ' guns ' , ' MonitorController ' , ' systemInfo ' , ' Monitor ' , ' 项目监控 ' , ' 192.168.11.1 ' , ' N ' , ' /view/monitor/systemInfo ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f1590a2a60824ab2aa5213bf3b6b2940\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"6754e52bccc5451ebb6c1bc526e04e56\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"143fe0b4030847d68343c6d682aa56d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"31cc6f65c1d74e6dbf4bdd2198bfae4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0e34574b5e264acf84ea74135dec3e0a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285338824710 , ' guns ' , ' guns$hr_position$detail ' , ' 查看详情系统职位 ' , ' guns ' , ' HrPositionController ' , ' detail ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"14520dc5b9ec4250ad860f5057bbf40f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"861c8fba72d84464a6c7ed6d33e9a086\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5661d6c8bc7c4286b44699f8dc16fd1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"7728cfe839dc45789899b60e7682ebe9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"8989fb8f3d304e0289a4491a99134882\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"749ae282643041f7903bdde220ead378\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"00f70f01e63347c7aae6c047842199cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fbd8ee6a90a343c49368b8f535a681c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2061585bb56743489c0c53cbebf4ee44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9956b55e0f7045319d260a6fa7ef1846\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285343019010 , ' guns ' , ' guns$hr_position$page ' , ' 分页查询系统职位 ' , ' guns ' , ' HrPositionController ' , ' page ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b6ab6f43e6024d73ad1cb87f866b577e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"c9fafc89fe684cb08a9ce71d235b7452\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1a59600fa0c14302a1812407fd225196\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"758e88c054a244a59c1b71e49207743f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b9e670806d6a4b078d8708b521c7c78f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7a7dd7fa1f9f4da2b5275f355444c963\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"514918c1bd8e4993a5ad508da69700d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8100ebfbdb0349d4bb8019b6ff3a3eee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"719e7328576643289c328d03bccbaf23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d07e39bedeb74d50a5188039e3b2af09\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285343019011 , ' guns ' , ' guns$hr_position$update_status ' , ' 更新职位状态 ' , ' guns ' , ' HrPositionController ' , ' updateStatus ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/updateStatus ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateStatus\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e8c9e15ec1084e61903136e66a374625\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d7f4a9aec7a54ef1b73be01880072ac7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"b94af19477344c1390b73c7715b3215d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"809e5a8dd8494d689787899071e05731\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a7b81f5ac104405d821ecd298cad4560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"78e672ab4f0f4af7815299e5440df078\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"72017779ff854c1abb0399d76249bb97\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5923aaafbe034dfdb14900b5e5ba919b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c23d0cdca24f4e878846feb62ebefcb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"edd3159b4990426f81fecfcb3a204420\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285343019012 , ' guns ' , ' guns$hr_position$delete ' , ' 删除系统职位 ' , ' guns ' , ' HrPositionController ' , ' delete ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"6ab53ca5a9f340b7bcfa4bce835b260d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ffb793c769624212ab7e176a9851fe17\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bfdc8f3b708c478e99fafe720653a015\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"8d873cd5b3d742c68370e2d7a2ca3bd6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"411f35c9e80b451f90a2fc28971a4799\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"a40659c4e5024de99be148324b05c9b5\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"eceffc478b5f4981a9858f2e3537761a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"aa8bc6001df94b10a0244a0517798889\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"947a9e5f8e0f4ae691f305affe006b87\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"da813d1fe7a54561ab5677e8a63967d9\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285347213314 , ' guns ' , ' guns$hr_position$list ' , ' 获取全部系统职位 ' , ' guns ' , ' HrPositionController ' , ' list ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"9691c52c47514fe3af3aa92df06fef0b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e6a70021858b42109e3f885112c65dc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3b6ecd1f372e44689a810c688c37356c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"1cc50e7a95944c72bf25812b50741527\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"af36164f76a24aecb82fb9a226ccefc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"768bb2e30a5f41008ba1d1a818ee3a0a\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"678d222bedd44d19ac07560f16e16882\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7f5ebc7ca4564e3a94969f4091c928f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7665f13e87c341e6a81e6a8e84492f64\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"16c91e55b5bf45049c9efecc87570ab5\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285347213315 , ' guns ' , ' guns$hr_position$edit ' , ' 编辑系统职位 ' , ' guns ' , ' HrPositionController ' , ' edit ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"840bfb098a3e40e8b27c78f2ea3bac48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"a2357431c3ef40d19920cad7064ae040\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"d1523a47c0c047d7b05d551e79802d7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1b9c88496f54417bbca34a5f1bc3e11c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"c582ccaf68bb4b85b9a10ba9b312d003\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c2f03abb45a64ebebaa66014dd6e3ffa\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"532887e254d54e10ab3479dcfe00fa73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"07df170f3e004039a286b91748e0fd76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2eba615f1e9342c08df3609d85259a82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bf27177c2af94e5fb7df0b507938e713\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285347213316 , ' guns ' , ' guns$hr_position$add ' , ' 添加系统职位 ' , ' guns ' , ' HrPositionController ' , ' add ' , ' HrPosition ' , ' 系统职位管理 ' , ' 192.168.11.1 ' , ' N ' , ' /hrPosition/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"201f9e148c9545389c6d8a831d7fd481\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"f89d4375a3e54d76817000f97800d0ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"1d532541f13e4834bbd8e78b938d4819\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9847c17728ae4d4cab7f555975d661ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"3cfba3fec7b040b58255e49b79e05242\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0febf5e49d9d444aa7f8455134163df3\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2accbba42fcd474c8c0d0f782384fef2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"14e038f7cd2d4406b2e7faac6e458b66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dbf157bf248144009893140e5e5055cf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"094da944e6d24602be8003f7c3cbeb6c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407618 , ' guns ' , ' guns$login_view$login_action ' , ' 登录接口 ' , ' guns ' , ' LoginViewController ' , ' loginAction ' , ' LoginView ' , ' 登录相关的接口 ' , ' 192.168.11.1 ' , ' N ' , ' /loginAction ' , ' POST ' , ' N ' , ' N ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\",\"metadataId\":\"e413d41544e549b7896232df5cc6d86e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"1101a621366241cfb4fccdd3f616f358\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"a36c9b4c583b4a14bb9e27fb91a4fde1\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6a6b837d8e734a9b830bf059419e1026\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"346f3fc91735462387a9ef0d9b8360b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2f1f9a67af90454c89ce6e5b2cc247c4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7286a8ae82754c769f6b12caf10bb285\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407619 , ' guns ' , ' guns$login_view$logout_page ' , ' 登出接口 ' , ' guns ' , ' LoginViewController ' , ' logoutPage ' , ' LoginView ' , ' 登录相关的接口 ' , ' 192.168.11.1 ' , ' N ' , ' /logout ' , ' POST ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"cb76b11ff7854344817a708f930019bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"30debdc37ac8400297aa6d0e3c65001c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"07ae72f4c9f94a08a43ceefce151d16d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"78bd81883c664e1998162b664abac6c6\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407620 , ' guns ' , ' guns$login_view$login ' , ' 登录界面 ' , ' guns ' , ' LoginViewController ' , ' login ' , ' LoginView ' , ' 登录相关的接口 ' , ' 192.168.11.1 ' , ' N ' , ' /view/login ' , ' GET ' , ' N ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"1dbdd7e6a2ec46dbb9447f393c93435d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"75afffc2ea974b2482a8d1064e13aa14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"4a292613c8c54f878d3dfe6f26b54e70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"37bcef03d91d4ca0b4af42d33b64666b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a3c8d05ed87b4f2d98cb1ec0c30c24ab\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407621 , ' guns ' , ' guns$organization_view$index_view ' , ' 机构管理-首页-视图 ' , ' guns ' , ' OrganizationViewController ' , ' indexView ' , ' OrganizationView ' , ' 组织机构管理控制器界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/organization ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"35d2983c5ece4e67b6e8e1d91bafd6fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"8523d5790c0341efa716fe38c3e78e25\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"10d271962db941ae87b0b3e701852eaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"812cb6c09df24c70b43f8a56d783db00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c21ece208f364a63ba13d52447669a16\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407622 , ' guns ' , ' guns$organization_view$add_view ' , ' 机构管理—新增-视图 ' , ' guns ' , ' OrganizationViewController ' , ' addView ' , ' OrganizationView ' , ' 组织机构管理控制器界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/organization/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"e24e0037c9c24c71a1ac1f2607b43d3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e55a793d568046a199a55a530a4ed60a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"2f77ce32b0984e5fb9bdddcaa283d964\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3ad8037f5b644d5b98db3b057066cbe6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"e8435d3b6dfa474aba11fae515e1b7db\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407623 , ' guns ' , ' guns$organization_view$edit_view ' , ' 机构管理-修改-视图 ' , ' guns ' , ' OrganizationViewController ' , ' editView ' , ' OrganizationView ' , ' 组织机构管理控制器界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/organization/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"537830baa0a34b49a6f4f30d43e86a6c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"9556197ba33f42d6813c1c7721e43900\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"de2d583992784c72b03ca15562e592be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"5c47d03819fb47e68083c99c9138d483\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"acf99bd8bb59453185e2b16c7610df90\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407624 , ' guns ' , ' guns$login_log_view$index_view ' , ' 登陆日志管理列表 ' , ' guns ' , ' LoginLogViewController ' , ' indexView ' , ' LoginLogView ' , ' 登陆日志管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/loginLog ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2823efdb949642d2b14ca5fc8e63c5da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"2f043f7921654f04986bc45e9544c422\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"f0c36951bce54f44a7f9446f775f2518\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"0bd65760f3394ab9a58f2123d3d17f1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"7061a63bab0b4736aa24fd205d725344\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407625 , ' guns ' , ' guns$sys_menu$edit ' , ' 编辑系统菜单 ' , ' guns ' , ' SysMenuController ' , ' edit ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/edit ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"edit\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"11e5a517346843969049e9d62080be89\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"31214fc1394c4b43b3044d40d20bd7d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4464d06ab4644fef851eae4ba616cfa1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"2cdb2a42bd444ba080e722a40683f054\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"69fe44614a134c5a930075e2ed45a0e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"37088b2ed9a24ea1b70a772e8a6b2432\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"48d655f88ddf4cafada5cc70f942a164\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"fc372195f1c14694b31b584bac4eb2b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"f9bf0b7185164637b47f09fd9ec2c56c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"edb04d4a1ab442c4bd9de8f28f57cc68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"21b44916e7614e73b38e227b5ea46dab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"59cd51d4b3584030b1ae5deba29bd257\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9816805da5a7453b9478ab4c611ba19e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\
INSERT INTO ` sys_resource ` VALUES ( 1349328285351407626 , ' guns ' , ' guns$sys_menu$layui_list ' , ' 获取菜单列表( layui版本) ' , ' guns ' , ' SysMenuController ' , ' layuiList ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/layuiList ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"60b841fd99a14dd1a22e6aba38695bf4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"3f9f3bfc8e534b1e8ebf49a077e6b80c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"826dc595d33c4d2eb256a8a9c0708717\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"01d95f8c28b24377a22fe46e323f9639\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3cc265e1676c4b0e9ed49918c50458b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"9458712cca8244b6bb203908fa1a171e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"14cb82879d6b45bc987376a754e6b0f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"3b778ed9f27447f7ba6538a0f579efa7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"21edca2d0008499896667b53bf5931de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a4f2a78ee3c84a43b623b83bd5823d86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"3174900eee434d60a3273caf2f541b13\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"9575ba12e54e42a596a15dc5b101ad1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c9483a4542a7463e9451ccb90d0bf0c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"ea65891c11194dab8a03804b471eadc0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotB
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796225 , ' guns ' , ' guns$sys_menu$tree_for_grant ' , ' 获取系统菜单树,用于给角色授权时选择 ' , ' guns ' , ' SysMenuController ' , ' treeForGrant ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/treeForGrant ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"71feaf91befa49208f0688a796e94410\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5abe1a17883b403588a99ed716d1b342\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"f929decf02574a04b6bfdb5087eb0d66\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"21979e52a2c44af6bd31f3e79b70a529\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"fe75fb4816fc4a57b74386984bf48aaf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c0d03c67afc6400cb869b8748b5a288e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"4f7ea59d118d4b02b7c8a20899e9bd1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3d69af18646844f78e42278fe43ae21a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"424291f3b1ea4062ad90598cc097ad74\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"836ab5a16a89431d9a5006b9920c2ffb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"83e9cdb693734a859c0049934f634ca0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"8bb428917c914147b2386e6c344e094a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"534ad84c99914c4e9f62bf53875cde09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\"
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796226 , ' guns ' , ' guns$sys_menu$menu_and_button_tree_children ' , ' 获取系统菜单树(包含按钮),用于给角色授权时选择 ' , ' guns ' , ' SysMenuController ' , ' menuAndButtonTreeChildren ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/menuAndButtonTreeChildren ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7836d0103deb4bd1aada537c2aec5376\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"d0b5ca1bddd344c69a428be0190a899b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"a92e714db53946158590ba52726226a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6a2f105647c54a0680940ba51d9ab877\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"4a60113dd0f94301be1d2fe05eaa2ef8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cbc86c3df8d54d1299866f567554c49f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b8254a19f43d43b6bbda5f59cedb3810\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"fb2eae016aa349f18cf5ab716b449b74\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"f73c7a77e4e1442aa7daeb8db2d7cf7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"967c11a18d0541ee9752bcf226d16299\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"369f8f96b5a4455a8198ef2e9afd3560\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"82991c7fe3854b63b843fe3c494058cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.a
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796227 , ' guns ' , ' guns$sys_menu$get_system_all_menus_antdv ' , ' 获取系统所有菜单( 适用于登录后获取左侧菜单) ( 适配antd vue版本) ' , ' guns ' , ' SysMenuController ' , ' getSystemAllMenusAntdv ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/getSystemAllMenusAntdv ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1ef7a6e34521481dbdee47364d46def5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"47665052ffdf4d9b98f4813a1f42a33e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e9c8bd570e394566867c5f0c85a0de85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"96c780041a2248a5b97aa57e1fde31a4\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796228 , ' guns ' , ' guns$sys_menu$detail ' , ' 查看系统菜单 ' , ' guns ' , ' SysMenuController ' , ' detail ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"740ee9ce1925427d98da0bac96082ba4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"9610410b127144a5b2edc2a4b9df5436\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"cce09099bbf346568ff2eeb8fc190b1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"756826a8f0a149fabd71d7f1b413f1e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ac5580874a854e0697eaa8c840313102\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"4ef5f56e032c4f20bd6e6a942947fdb2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"93c08c6f95f141df8656151cf459a211\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"237a5314828347579811cd0beb32729a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2636bf909a2b4388b6fa32de38343630\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"52261fcd6d9043efbd33a06d4f4e0fae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d62100b799c24eeaa1cac85879313861\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"4c733eb55adb41f296eaf290d54ae92b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c963f2a13776484e9ea95bb310958ec2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvI
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796229 , ' guns ' , ' guns$sys_menu$list ' , ' 系统菜单列表(树) ' , ' guns ' , ' SysMenuController ' , ' list ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"ca2c926977ad4747b54d5f50e0a6d962\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"be43cc3a9416490cb028cbad3f85b177\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"a33075c44aa34ae4bede4d1cec42b8cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"1c1937f5c3ef4007a929c27f78183ce2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"aa781810220c46acbd070ca49e017afd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2906e2d90abe4ae1961cdd1f29ab0ce8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2985c67d0fcc4a12be8fdcf244e5df35\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"20b06ea45d6749d5b789e5984dd925db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"e8bbdd6a95b54c11b58a3a4772bac0e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"e7bb4b787f494ea7b72991d97ea648f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"e357d3d216044acd9b099a9751d5a2be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"69b2ef6db3274c00987fdc7da16a074a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1745ba15882d4990a5ab23a22bccaafc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metad
INSERT INTO ` sys_resource ` VALUES ( 1349328285359796230 , ' guns ' , ' guns$sys_menu$add ' , ' 添加系统菜单 ' , ' guns ' , ' SysMenuController ' , ' add ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/add ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c4e5fac0bc2244e899be64888fa3c45e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"df8c0a4c2f294972af323d9b46ea9247\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"820aca71be0340a3b01ccb5b5b1781dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"186345216a71440592fb0f96b3d7d5eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"7e49fe89d4fb4234953d82b57abbb71b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"d7e768f22e0a4eef95e9d9280f7a9756\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"c5e76ba3447143a38871fa83cc5d3442\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"c6b1addf65634455ae4baed5ac1ef5e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b4200eec0bdf4bdfa4793e19b8b4833d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"c43f79b4fd90409d97fb31f4e9bcd753\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"20118b16dec24dfaa7340e797b7d1335\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"4603a83598ec48b48990484e7c231e08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"872cdeb22ec84fe4b60ee9dbf77dee5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"
INSERT INTO ` sys_resource ` VALUES ( 1349328285368184834 , ' guns ' , ' guns$sys_menu$delete ' , ' 删除系统菜单 ' , ' guns ' , ' SysMenuController ' , ' delete ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ec822b6eae5b46cdb9480b7460059e1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"bbcdb327e8a3486d9ae22846447d37ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"51d060e33fda42dfa1e8a5e186c5350b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"26e5b269752d49c38d8ce2fc24daa5b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"a2982b2a66ef4f47a3d28e72a9034c71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"639e551897544470993dbb69a55d8b92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"925b7d4b081e4c17a6cfa6ade41b1712\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"ea001ebb101d49f5868404311736031e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7a1ec6f6725d46b2a26f2624b27d838b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"fafcec08710640df9ce7119dd71ccf6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"5ce062b01d5a40f2bfe3329fe340b0a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"10d19392b8d4474f850a84b0077a5eb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"a60c826ec4ab485eaa540e2455c9a303\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvCompo
INSERT INTO ` sys_resource ` VALUES ( 1349328285368184835 , ' guns ' , ' guns$sys_menu$layui_select_parent_menu_tree_list ' , ' 获取菜单的树形列表( 用于选择上级菜单) ( layui版本) ' , ' guns ' , ' SysMenuController ' , ' layuiSelectParentMenuTreeList ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/layuiSelectParentMenuTreeList ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285368184836 , ' guns ' , ' guns$sys_menu$get_app_menus ' , ' 获取主页左侧菜单列表( Antd Vue) ' , ' guns ' , ' SysMenuController ' , ' getAppMenus ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/getIndexMenuAntdVue ' , ' GET ' , ' Y ' , ' N ' , ' Set[\"getAppMenusAntdVue\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6dc2c579e3884310b83ab27bd87b1eba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"c1f19a60ed974181a1a87e57639c41fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"1bb9e783d0484304b58d901bc2abe22a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cb70a141c3894efc97ca5e7c477c8aa4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3f4f5d202ff04bcd989eefcfa0d3c0ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6ef06eb118da46edbb0673ae0ab21f01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"f50743e72625473aae7f1b680be6e933\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c5a428c9f1b14dcd942f609ee09c10ce\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"73f113592ae64bc381a871a2e6605524\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"0b9b9dff4b3b4201bf1558c443a8f465\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"66f0ff5cd45c48c4a33187ef735d608a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"de0a64b8f95f4f1c8b2633c37400fa09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"12ffb7bff7ae4b93b3094a729041f19f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.
INSERT INTO ` sys_resource ` VALUES ( 1349328285372379137 , ' guns ' , ' guns$sys_menu$tree ' , ' 获取系统菜单树,用于新增,编辑时选择上级节点 ' , ' guns ' , ' SysMenuController ' , ' tree ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/tree ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"FlagValue\"],\"edit\":Set[\"FlagValue\"]},\"metadataId\":\"b149a6d1c717442b82f43a6904adaee8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"e74337bf91084b90a762bcd6934a29fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3facee44ab9b4b2f8b5a8325d43fff08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvRouter\",\"metadataId\":\"91d434e10ce948609b9bf05e4f33e2df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"antdvLinkOpenType\",\"metadataId\":\"cf1dbf3119424978b3a42a7ab42836bf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvIcon\",\"metadataId\":\"50efe53e150a4009a9a36c499186554d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiIcon\",\"metadataId\":\"637863dab906445085607983a89ff3ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"layuiPath\",\"metadataId\":\"9e3a691c7dd64c1fa69e05774185946d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"86cdd4686e9b4b97804067d6cf7b6818\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c5a7f1ae6bea4324a4b6d082982d9b1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvComponent\",\"metadataId\":\"4831d5c9f5064cd78a9b0805949a100e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"368f19e938274e6a9081210997df03ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"getAppMenusAntdVue\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"7add4cbc5cb049deb4ddd358d34d68bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"antdvLinkUrl\",\"metadataId\":\"82caad62a972426db97f3e31242296e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.po
INSERT INTO ` sys_resource ` VALUES ( 1349328285372379138 , ' guns ' , ' guns$sys_menu$menu_and_button_tree ' , ' 获取系统菜单树(包含按钮),用于给角色授权时选择 ' , ' guns ' , ' SysMenuController ' , ' menuAndButtonTree ' , ' SysMenu ' , ' 菜单管理 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMenu/menuAndButtonTree ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"3b455944e39141f6866883e890e1797f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"metadataId\":\"90bed0cd0d7d42eeb63a550b21691dcf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6b5f5a157bc741bcb33f4e94d8c8a7f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8f579f6656b74b74ac472e9e4cedeb54\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"b76f5c1f8eea41039055178fdbe729b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"3c9e290487d54269a681dfab5b277456\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantMenuButtonIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"]},\"metadataId\":\"cd64222708884aabb8794a97c3162e4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"39d342c96fea481ba43b175423ca0dcb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"c775358340dd48a88d3e0301d63a64b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantMenuButton\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantDataScope\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f3a8886af566480ebaaef44b6be322d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantDataScope\":Set[\"NotNull\"]},\"metadataId\":\"df219bd719e844ba8e824a94f30dc130\"}] ' , ' [] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285372379139 , ' guns ' , ' guns$position_view$add_view ' , ' 职位管理-首页-视图 ' , ' guns ' , ' PositionViewController ' , ' addView ' , ' PositionView ' , ' 职位管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/position/addView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"cec75cafaec54ca2ae9c5939b6faaf86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"abc48b1f68ad4342a42fda12c6a49bd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"478db2fd9e7f44f8b85cfddc9a55945d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"f50fd9add1814d52b4fcac947d510bb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"d5197a6bf9d941daadff66dc3c7bbf01\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285372379140 , ' guns ' , ' guns$position_view$index_view ' , ' 职位管理-首页-视图 ' , ' guns ' , ' PositionViewController ' , ' indexView ' , ' PositionView ' , ' 职位管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/position ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"da35926284d04115b7531dc9e6463213\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"0af9346b3ddd40b3ba206f78dbd75877\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"5afa089ff107407989f5ffcb803f3d10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"b946abdadb4b48c2ae3254c6cc9afc73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"30012da846174572817bb6eab84731f6\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285372379141 , ' guns ' , ' guns$position_view$edit_view ' , ' 职位管理-首页-视图 ' , ' guns ' , ' PositionViewController ' , ' editView ' , ' PositionView ' , ' 职位管理相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/position/editView ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"2019bcd2485947a7adb3c1f5d48d97ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"07d0d7f3ada54285b9e6647c0e36f92f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"8c91f6dc9743419697a6f5df665969a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"a58309a74bba4d619bee03ea4bdedf5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"11430c2499ba4e9cb23bde41726b4c4a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573442 , ' guns ' , ' guns$index_view$lock ' , ' 锁屏界面 ' , ' guns ' , ' IndexViewController ' , ' lock ' , ' IndexView ' , ' 首页相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/lock ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"410d72be6f0b4214a1bb1c53e08ceca9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"b0637ce7fba542dfbe13e50e628bded4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"f3206761969345cdb4e7807a5fe3c32e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f07cc3299dc443efa4367543b664a2fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"27dce3da789743278b913feaaa63de47\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573443 , ' guns ' , ' guns$index_view$personal ' , ' 个人中心界面 ' , ' guns ' , ' IndexViewController ' , ' personal ' , ' IndexView ' , ' 首页相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/personal ' , ' GET ' , ' N ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"3cf977b7fd9f4c18a4ca19785d9200ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"f0273d7080f545ae8c5e77251aafff2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"9f6692a1dfc24468964e421a44e25443\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"8188d99d6114411d8e9003028530e955\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"aec5e45b47c8436994fb91ac387e6c56\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573444 , ' guns ' , ' guns$index_view$theme ' , ' 主题切换界面 ' , ' guns ' , ' IndexViewController ' , ' theme ' , ' IndexView ' , ' 首页相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/theme ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"432881f101f148d98f8b51c29fed8ee1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"5acb8744dea440dca610f64d91623e49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"99c1c0beb63c4686bcf5994b3d93b797\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"078b7d6437404c6dbd71c6834e6c7dfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"64c726d437c949e38008fd753f815bd7\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573445 , ' guns ' , ' guns$index_view$change_password ' , ' 修改密码界面 ' , ' guns ' , ' IndexViewController ' , ' changePassword ' , ' IndexView ' , ' 首页相关的界面渲染 ' , ' 192.168.11.1 ' , ' N ' , ' /view/changePassword ' , ' GET ' , ' Y ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"73632e4627484113b84dcef9a2707e23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"17387b25fd1f4fe2a1fbfbdf4a4e1d70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"cd9b5a048c704df49e0da7069df6c06c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"420909fd3455488abe9fd2571a6972d7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"d16c653032c54313a71f016cc55544f8\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573446 , ' guns ' , ' guns$index_view$index_view ' , ' 首页界面 ' , ' guns ' , ' IndexViewController ' , ' indexView ' , ' IndexView ' , ' 首页相关的界面渲染 ' , ' 192.168.11.1 ' , ' Y ' , ' / ' , ' GET ' , ' N ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"9d6fc8592bad44e9b4400b27ecd29d59\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"1f2d73d657954ce5a0915abccbb1d79b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"323f474025fd4563b4e79330779e6875\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"d3ae8fbb859d44ff9d72556629cab937\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"02765e06c9714e2993ff0265e0879c8f\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573447 , ' guns ' , ' guns$error_view$error_page_info ' , ' 跳转到session超时页面 ' , ' guns ' , ' ErrorViewController ' , ' errorPageInfo ' , ' ErrorView ' , ' 错误页面的跳转 ' , ' 192.168.11.1 ' , ' N ' , ' /view/global/sessionError ' , ' GET ' , ' N ' , ' N ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"39e2887504d3443f9c4ae936dfd04a94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"432e2f417b2d48788bd93da3d71041f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"008c1947b5664d17bd6f34ef27e8cde2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"aa1b07dcb29949b7b0c250b64cd43410\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"0d0d9242cc344245a4e5855ea199457c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573448 , ' guns ' , ' guns$common_view$common_tree_select ' , ' 通用的树列表选择器 ' , ' guns ' , ' CommonViewController ' , ' commonTreeSelect ' , ' CommonView ' , ' 通用界面 ' , ' 192.168.11.1 ' , ' N ' , ' /view/common/tree ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"formId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"bb74f216993a46c98a07b7ec7b4046e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"treeUrl\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"5172fedc933744f7ae177b5cf04c1d17\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"formName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"554bb6e5f3ba49ef81be82608d6f366d\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"fbefb0aa844948c9b2448b7aeb47b671\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c7fb46bc53d74078871fb67f2916fd9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"d8c8a71d01b1475db84bc730d1ff459c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"58d2e3e9bcd94017b58865a362af2495\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"77f3cb2b8ac243a8838b7a32a93b36af\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573449 , ' guns ' , ' guns$sys_message$detail ' , ' 查看系统消息 ' , ' guns ' , ' SysMessageController ' , ' detail ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/detail ' , ' GET ' , ' Y ' , ' Y ' , ' Set[\"detail\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"443a9425d5c74d1483024b8f860c47cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"dbd3126ac8ec43008018db3717f96ddc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"8d561517f7cc4dc8a14b39e878a2aea4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"f410ee7a7a47448a8cb8766c7e59e858\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"4ed2eb9226d94261857747126f8556c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"c80a9400d80d4ff9b35ca71956151d8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a4d0b72287714d81a378a0eb671fa6fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"6133736c42ff46e0a34e52279e58097c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"3357078904fa4a4e81105d47c18df8f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"93ba7204887348d2b1d5f30232866627\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"f4ebafcaee194352a798671f49873360\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"55e1f98f0ecc4ffeb3c7cceae30a2402\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"bcc9337f7c0742d7a82135b54cc2aec7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b89a954e3bee4850992a055daf146c2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"448557ca60f4489b9a37c903b4588ce6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5a8cf6a466c14e5f9d842999a37a07f4\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573450 , ' guns ' , ' guns$sys_message$delete ' , ' 删除系统消息 ' , ' guns ' , ' SysMessageController ' , ' delete ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/delete ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"delete\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ac1d3ffc02694d8fbe7a13ad1d50646a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"20aff8cef6db4ffdbee870b53bf07c28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"b0481a65b2554750aa2e5571cc4f85f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"1566f49640bf49e8b0c613d4df16b92e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"01e4be590838419ab4884820854e2da4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"96a7322b9fa24a1e9955af02cd2c33ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"7495c203d1e94ca3b4ce4de10cb70550\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"10abdf20d0d747dc9b4b6a2da465c4fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"b7d0385091ba46f798a5235162e51350\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"8f80e62dbf0c42929fcafbf4d489c600\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"58eb4a2cd2434880b137813e654152e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"4f37a10edfa847ea93e09f85abef1206\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"87115659ed044adaa70e1984dc689185\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"cde127a0f4844ca38179a501769d88da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"efa0fb19f76f419c9dbd15661bc15ecb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ab1d937a308540b48e498af480917a3a\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285376573451 , ' guns ' , ' guns$sys_message$all_message_read_flag ' , ' 系统消息全部修改已读 ' , ' guns ' , ' SysMessageController ' , ' allMessageReadFlag ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/allMessageReadFlag ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' [] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"df6c351dba084630854ac1a24d1660cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"eb782c2407d64b47afe93e294e2d6e41\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a3c05afc2fc84942a80eae5bdc29e94b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4926915796e34ee68cb6da5d1b2289eb\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285384962049 , ' guns ' , ' guns$sys_message$send_message ' , ' 发送系统消息 ' , ' guns ' , ' SysMessageController ' , ' sendMessage ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/sendMessage ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"add\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"receiveUserIds\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"35f89e5ac06346379b3c922136b3732c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"bd26f4fbea714341a1ddcd5f009295e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c872178eefd04986a25b7178aa13f5c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"da33fc5c9234472f8b67570f5d96616e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"f3e6e44c571d4f0f9ecd2bf21e3d6e2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"35142279eca944ce925fe7d32804a1c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"bca5e1dc546143f6a3208dfa2f0c2dcd\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"64e63621386840f4987199e9356611a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c3c38c4804ec4577a0807eb0913eb334\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b7d3d3b5dda94d1d8149b787ad717348\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"86c0c36983c54905b30ff948d7450e23\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285384962050 , ' guns ' , ' guns$sys_message$page ' , ' 分页查询系统消息列表 ' , ' guns ' , ' SysMessageController ' , ' page ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/page ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"0db37abcdbd649d98874e14cbc7d8529\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"86c9589f8fce4c4ebe3f268505b18def\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"2445011b2d4749d88dd89f4697bee83c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"95b0cd1a94a442e8b34de428160c8e9d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"84fbf11f51854047ab8b81af201f67f6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"78c7a6f8fd0846518cc84ee3452e1207\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"beecd2b71f0240c78a7b2f01d7309d0b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"2f8e5c9afe24464ebc57de939214dcd1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"916117099d5a43899303bb3b3bc0b8ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"77cbac9e97b744ba9beca30a48d447f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"bced306eee1c4125ba1505e73e4d0672\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"2febf85c3c6d477fa58d959d27bc3538\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d5dcd51a22324ac5b69a7c31e9d297fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f6be417a763b4c4798248c9fd577ba8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c22c9854c74540729258bdd50b49ebf4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ccc3b5da392e4bd7bab9b796e6bf5e4c\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285389156354 , ' guns ' , ' guns$sys_message$batch_update_read_flag ' , ' 批量更新系统消息状态 ' , ' guns ' , ' SysMessageController ' , ' batchUpdateReadFlag ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/batchUpdateReadFlag ' , ' POST ' , ' Y ' , ' Y ' , ' Set[\"updateReadFlag\"] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"6292870e03d14f978e6c71071d74e62a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0eef8f15d953406ca4ec5af8fcedccbc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"28d32c06762a4d3c8cdf4620749e07a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"1a04e48063114076896c22a198ec47e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"c9dd5ccad2184f88b12807ff8cc84a09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"72ef680f56664d2481f7d95f391aa545\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"25f432a254344876bc67ba42f7c5b88a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"5433081f9a78447cb9bd9894892134a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"33732dbadca446c6a762fd1e6b2ac148\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"076dddf91e1240eba39dbebdaf800ce5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"cbc105e28d74493a96ce3080b2837d1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"994674f4eeea4bc69f6f6e7a54605c16\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d93089b310374352888d703a93c60b7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"049cea71b446491e9edd20d52d9d0ff8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"869293fafe9f4acdac697d5fe08af1a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"762744afeb764494a240066768b35f18\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285389156355 , ' guns ' , ' guns$sys_message$msg_un_read ' , ' 系统消息列表 ' , ' guns ' , ' SysMessageController ' , ' msgUnRead ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/unReadCount ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"7ecfeb7e26114fd5bd395559c76a22a6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"fab952118bc94edba18e542efc91657a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"a9af3372e74b4d98af9e212b305a24ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"e534fd9cc38a4cc99a0ae15985e363e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"f9c80d3ebae94a3c817238d0b53488fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"3435a33e1fd8400a941736354f85499a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"8898ca531aab4148aa6ecec712d5221c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"5df1971a31ac4660833c72bd2552fd91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"4e0535ddcdb04ec882d1520dabfaf2a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"1e512224e7ae459eb39a3bc1ff9eb07c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3ba664397cc7447bab90e4462945a764\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"04f2cb440b7342daaad520ff64bba64b\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6f6f1333ccc1496ea48fe782c4e8ef37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e6b4b0063e6f4a5b93e95bb0dddb017a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"71b84cf9f254422884fbf625c399d5e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4f6ee3058624481dac4f9b13f9580c85\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
INSERT INTO ` sys_resource ` VALUES ( 1349328285389156356 , ' guns ' , ' guns$sys_message$list ' , ' 系统消息列表 ' , ' guns ' , ' SysMessageController ' , ' list ' , ' SysMessage ' , ' 系统消息控制器 ' , ' 192.168.11.1 ' , ' N ' , ' /sysMessage/list ' , ' GET ' , ' Y ' , ' Y ' , NULL , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageTitle\",\"metadataId\":\"753b5e8d4b17430cb2b39f43ccc741c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageType\",\"metadataId\":\"4ef50d2db3d74dc888940cd29d943323\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Date\",\"fieldName\":\"messageSendTime\",\"metadataId\":\"26a6ec165cbb49ab8e198e9b113cc74f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"receiveUserId\",\"metadataId\":\"a6651ad37d9d415f983cc481781b4732\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"businessType\",\"metadataId\":\"6c0202b682534dab836ec192f68bfc1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"priorityLevel\",\"metadataId\":\"08891ef3a0d24bcf9637559f34b04985\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"sendUserId\",\"metadataId\":\"01a95328ad554776a6d05688226b66ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"messageId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3991bff622d24621a4be4c9bbd91ea55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"messageContent\",\"metadataId\":\"0e593c40e5bc466c954368cb01f37abc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"businessId\",\"metadataId\":\"e9eb04225bee439db9625e36e3bba6db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotEmpty\"],\"fieldClassType\":\"List\",\"fieldName\":\"messageIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateReadFlag\":Set[\"NotEmpty\"]},\"metadataId\":\"a1d90f02e9564bb595935de453bd40b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"readFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]},\"metadataId\":\"58c0fe3b3a3742d7863d735f007b9e99\"}] ' , ' Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"953a3c96d8804a0dbdf804d06fc38148\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a6bdb4e185af410eb5e6547c7e0527fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"635cfe22ecb041e0aa6518b577f7539f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1b9e5d151ec542bcbd6c0a67af21ff7e\"}] ' , - 1 , ' 2021-01-13 20:11:47 ' , NULL , NULL ) ;
2020-12-13 11:14:29 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS ` sys_role ` ;
CREATE TABLE ` sys_role ` (
2020-12-19 15:15:42 +00:00
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键id ' ,
` role_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 角色名称 ' ,
` role_code ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 角色编码 ' ,
` role_sort ` decimal ( 10 , 2 ) NOT NULL COMMENT ' 序号 ' ,
2021-01-06 10:01:57 +00:00
` data_scope_type ` tinyint ( 4 ) NOT NULL DEFAULT 1 COMMENT ' 数据范围类型: 10-仅本人数据, 20-本部门数据, 30-本部门及以下数据, 40-指定部门数据, 50-全部数据 ' ,
2020-12-19 15:15:42 +00:00
` status_flag ` tinyint ( 4 ) NOT NULL DEFAULT 0 COMMENT ' 状态: 1-启用, 2-禁用 ' ,
2020-12-11 10:18:48 +00:00
` remark ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 备注 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-已删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 更新时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 更新人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` role_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 系统角色 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-14 15:32:18 +00:00
-- ----------------------------
-- Records of sys_role
-- ----------------------------
2021-01-08 13:23:52 +00:00
INSERT INTO ` sys_role ` VALUES ( 1339550467939639303 , ' 超级管理员 ' , ' superAdmin ' , 1 . 00 , 50 , 1 , ' 备注 ' , ' N ' , ' 2020-12-17 20:41:25 ' , - 1 , ' 2020-12-17 20:41:30 ' , - 1 ) ;
2021-01-07 10:45:35 +00:00
INSERT INTO ` sys_role ` VALUES ( 1339550467939639304 , ' 普通人员 ' , ' normal ' , 2 . 00 , 10 , 1 , NULL , ' N ' , NULL , NULL , NULL , NULL ) ;
2020-12-14 15:32:18 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_role_data_scope
-- ----------------------------
DROP TABLE IF EXISTS ` sys_role_data_scope ` ;
CREATE TABLE ` sys_role_data_scope ` (
2020-12-19 15:15:42 +00:00
` role_data_scope_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
2020-12-11 10:18:48 +00:00
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 角色id ' ,
` organization_id ` bigint ( 20 ) NOT NULL COMMENT ' 机构id ' ,
2020-12-17 13:15:49 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` role_data_scope_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 角色数据范围 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-19 15:15:42 +00:00
-- ----------------------------
-- Table structure for sys_role_menu
-- ----------------------------
DROP TABLE IF EXISTS ` sys_role_menu ` ;
CREATE TABLE ` sys_role_menu ` (
` role_menu_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 角色id ' ,
` menu_id ` bigint ( 20 ) NOT NULL COMMENT ' 菜单id ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
PRIMARY KEY ( ` role_menu_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 角色菜单关联 ' ROW_FORMAT = Dynamic ;
-- ----------------------------
-- Records of sys_role_menu
-- ----------------------------
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231170 , 1339550467939639303 , 1339550467939639301 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231171 , 1339550467939639303 , 1339550467939639302 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231172 , 1339550467939639303 , 1339550467939639303 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231173 , 1339550467939639303 , 1339550467939639304 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231174 , 1339550467939639303 , 1339550467939639305 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231175 , 1339550467939639303 , 1339550467939639306 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231176 , 1339550467939639303 , 1339550467939639307 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231177 , 1339550467939639303 , 1339550467939639308 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720900231178 , 1339550467939639303 , 1339550467939639309 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619778 , 1339550467939639303 , 1339550467939639310 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619779 , 1339550467939639303 , 1339550467939639311 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619780 , 1339550467939639303 , 1339550467939639312 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619781 , 1339550467939639303 , 1339550467939639313 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619782 , 1339550467939639303 , 1339550467939639314 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619783 , 1339550467939639303 , 1339550467939639315 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619784 , 1339550467939639303 , 1339550467939639316 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619785 , 1339550467939639303 , 1339550467939639317 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619786 , 1339550467939639303 , 1339550467939639318 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619787 , 1339550467939639303 , 1339550467939639319 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619788 , 1339550467939639303 , 1339550467939639320 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619789 , 1339550467939639303 , 1339550467939639321 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619790 , 1339550467939639303 , 1339550467939639334 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619791 , 1339550467939639303 , 1339550467939639322 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619792 , 1339550467939639303 , 1339550467939639323 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619793 , 1339550467939639303 , 1339550467939639324 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619794 , 1339550467939639303 , 1339550467939639325 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619795 , 1339550467939639303 , 1339550467939639326 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619796 , 1339550467939639303 , 1339550467939639327 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619797 , 1339550467939639303 , 1339550467939639328 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619798 , 1339550467939639303 , 1339550467939639329 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619799 , 1339550467939639303 , 1339550467939639330 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619800 , 1339550467939639303 , 1339550467939639331 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619801 , 1339550467939639303 , 1339550467939639332 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu ` VALUES ( 1348235720908619802 , 1339550467939639303 , 1339550467939639333 , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
2020-12-19 15:15:42 +00:00
2021-01-08 15:01:12 +00:00
-- ----------------------------
-- Table structure for sys_role_menu_button
-- ----------------------------
DROP TABLE IF EXISTS ` sys_role_menu_button ` ;
CREATE TABLE ` sys_role_menu_button ` (
` role_button_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 角色id ' ,
` button_id ` bigint ( 20 ) NOT NULL COMMENT ' 按钮id ' ,
` button_code ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 按钮编码 ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
PRIMARY KEY ( ` role_button_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 角色按钮关联 ' ROW_FORMAT = Dynamic ;
2021-01-09 04:07:39 +00:00
-- ----------------------------
-- Records of sys_role_menu_button
-- ----------------------------
2021-01-10 12:00:16 +00:00
INSERT INTO ` sys_role_menu_button ` VALUES ( 1348235720929591297 , 1339550467939639303 , 1347753823522807838 , ' BUTTON_ROLE_ADD ' , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu_button ` VALUES ( 1348235720929591298 , 1339550467939639303 , 1347753823522807839 , ' BUTTON_ROLE_EDIT ' , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu_button ` VALUES ( 1348235720933785602 , 1339550467939639303 , 1347753823522807840 , ' BUTTON_ROLE_DELETE ' , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu_button ` VALUES ( 1348235720933785603 , 1339550467939639303 , 1347753823522807841 , ' BUTTON_ROLE_ASSIGN_MENU_BUTTON ' , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
INSERT INTO ` sys_role_menu_button ` VALUES ( 1348235720933785604 , 1339550467939639303 , 1347753823522807842 , ' BUTTON_ROLE_ASSIGN_RESOURCE ' , ' 2021-01-10 19:50:20 ' , 1339550467939639299 , NULL , NULL ) ;
2021-01-09 04:07:39 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_role_resource
-- ----------------------------
DROP TABLE IF EXISTS ` sys_role_resource ` ;
CREATE TABLE ` sys_role_resource ` (
2020-12-19 15:15:42 +00:00
` role_resource_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
2020-12-11 10:18:48 +00:00
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 角色id ' ,
2020-12-19 15:15:42 +00:00
` resource_code ` varchar ( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 资源编码 ' ,
2020-12-17 13:15:49 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` role_resource_id ` ) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 角色资源关联 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-14 15:32:18 +00:00
-- ----------------------------
-- Records of sys_role_resource
-- ----------------------------
2021-01-13 12:42:31 +00:00
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286248988673 , 1339550467939639303 , ' guns$hr_organization$update_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286248988674 , 1339550467939639303 , ' guns$hr_organization$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286248988675 , 1339550467939639303 , ' guns$hr_organization$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182977 , 1339550467939639303 , ' guns$hr_organization$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182978 , 1339550467939639303 , ' guns$hr_organization$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182979 , 1339550467939639303 , ' guns$hr_organization$tree ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182980 , 1339550467939639303 , ' guns$hr_organization$tree_layui ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182981 , 1339550467939639303 , ' guns$hr_organization$tree_with_children ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286253182982 , 1339550467939639303 , ' guns$hr_organization$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377281 , 1339550467939639303 , ' guns$hr_organization$layui_select_parent_menu_tree_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377282 , 1339550467939639303 , ' guns$hr_organization$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377283 , 1339550467939639303 , ' guns$file_view$file_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377284 , 1339550467939639303 , ' guns$menu_view$menu_add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377285 , 1339550467939639303 , ' guns$menu_view$menu_edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377286 , 1339550467939639303 , ' guns$menu_view$menu_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286257377287 , 1339550467939639303 , ' guns$message_view$view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571585 , 1339550467939639303 , ' guns$message_view$message ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571586 , 1339550467939639303 , ' guns$message_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571587 , 1339550467939639303 , ' guns$dashboard_view$platform ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571588 , 1339550467939639303 , ' guns$dashboard_view$analyse ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571589 , 1339550467939639303 , ' guns$role_view$role_assign_api ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571590 , 1339550467939639303 , ' guns$role_view$role_assign_menu_button ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571591 , 1339550467939639303 , ' guns$role_view$role_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571592 , 1339550467939639303 , ' guns$role_view$role_add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571593 , 1339550467939639303 , ' guns$role_view$role_edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286261571594 , 1339550467939639303 , ' guns$role_view$role_edit_data_scope ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286265765890 , 1339550467939639303 , ' guns$timers_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286265765891 , 1339550467939639303 , ' guns$timers_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960194 , 1339550467939639303 , ' guns$timers_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960195 , 1339550467939639303 , ' guns$log_manager$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960196 , 1339550467939639303 , ' guns$log_manager$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960197 , 1339550467939639303 , ' guns$log_manager$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960198 , 1339550467939639303 , ' guns$log_manager$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960199 , 1339550467939639303 , ' guns$log_view$detail_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960200 , 1339550467939639303 , ' guns$log_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960201 , 1339550467939639303 , ' guns$sys_app$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960202 , 1339550467939639303 , ' guns$sys_app$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286269960203 , 1339550467939639303 , ' guns$sys_app$set_as_default ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154497 , 1339550467939639303 , ' guns$sys_app$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154498 , 1339550467939639303 , ' guns$sys_app$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154499 , 1339550467939639303 , ' guns$sys_app$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154500 , 1339550467939639303 , ' guns$sys_app$update_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154501 , 1339550467939639303 , ' guns$sys_app$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154502 , 1339550467939639303 , ' guns$sys_file_info$private_preview ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154503 , 1339550467939639303 , ' guns$sys_file_info$public_preview ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154504 , 1339550467939639303 , ' guns$sys_file_info$private_packaging_download ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286274154505 , 1339550467939639303 , ' guns$sys_file_info$public_packaging_download ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348802 , 1339550467939639303 , ' guns$sys_file_info$version_back ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348803 , 1339550467939639303 , ' guns$sys_file_info$file_info_list_page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348804 , 1339550467939639303 , ' guns$sys_file_info$preview_by_bucket_name_object_name ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348805 , 1339550467939639303 , ' guns$sys_file_info$confirm_replace_file ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348806 , 1339550467939639303 , ' guns$sys_file_info$get_file_info_list_by_file_ids ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348807 , 1339550467939639303 , ' guns$sys_file_info$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348808 , 1339550467939639303 , ' guns$sys_file_info$update ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348809 , 1339550467939639303 , ' guns$sys_file_info$private_download ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348810 , 1339550467939639303 , ' guns$sys_file_info$upload ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348811 , 1339550467939639303 , ' guns$sys_file_info$public_download ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348812 , 1339550467939639303 , ' guns$sys_file_info$delete_really ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286278348813 , 1339550467939639303 , ' guns$sys_menu_button$batch_delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543105 , 1339550467939639303 , ' guns$sys_menu_button$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543106 , 1339550467939639303 , ' guns$sys_menu_button$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543107 , 1339550467939639303 , ' guns$sys_menu_button$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543108 , 1339550467939639303 , ' guns$sys_menu_button$page_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543109 , 1339550467939639303 , ' guns$sys_menu_button$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543110 , 1339550467939639303 , ' guns$dict_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543111 , 1339550467939639303 , ' guns$dict_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543112 , 1339550467939639303 , ' guns$dict_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543113 , 1339550467939639303 , ' guns$config_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543114 , 1339550467939639303 , ' guns$config_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543115 , 1339550467939639303 , ' guns$config_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543116 , 1339550467939639303 , ' guns$online_user_view$online_user ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543117 , 1339550467939639303 , ' guns$sys_role$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543118 , 1339550467939639303 , ' guns$sys_role$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543119 , 1339550467939639303 , ' guns$sys_role$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543120 , 1339550467939639303 , ' guns$sys_role$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543121 , 1339550467939639303 , ' guns$sys_role$grant_resource ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543122 , 1339550467939639303 , ' guns$sys_role$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543123 , 1339550467939639303 , ' guns$sys_role$grant_data ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543124 , 1339550467939639303 , ' guns$sys_role$get_role_data_scope ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543125 , 1339550467939639303 , ' guns$sys_role$grant_menu_and_button ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543126 , 1339550467939639303 , ' guns$sys_role$drop_down ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543127 , 1339550467939639303 , ' guns$sys_role$get_role_menus ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286282543128 , 1339550467939639303 , ' guns$resource_view$resource_detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931714 , 1339550467939639303 , ' guns$resource_view$resource_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931715 , 1339550467939639303 , ' guns$sys_user$grant_role ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931716 , 1339550467939639303 , ' guns$sys_user$update_avatar ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931717 , 1339550467939639303 , ' guns$sys_user$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931718 , 1339550467939639303 , ' guns$sys_user$selector ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931719 , 1339550467939639303 , ' guns$sys_user$own_data ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931720 , 1339550467939639303 , ' guns$sys_user$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931721 , 1339550467939639303 , ' guns$sys_user$change_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931722 , 1339550467939639303 , ' guns$sys_user$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931723 , 1339550467939639303 , ' guns$sys_user$grant_data ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931724 , 1339550467939639303 , ' guns$sys_user$reset_pwd ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931725 , 1339550467939639303 , ' guns$sys_user$current_user_info ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931726 , 1339550467939639303 , ' guns$sys_user$update_pwd ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286290931727 , 1339550467939639303 , ' guns$sys_user$export ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126018 , 1339550467939639303 , ' guns$sys_user$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126019 , 1339550467939639303 , ' guns$sys_user$update_info ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126020 , 1339550467939639303 , ' guns$sys_user$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126021 , 1339550467939639303 , ' guns$sys_user$own_role ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126022 , 1339550467939639303 , ' guns$sys_config$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126023 , 1339550467939639303 , ' guns$sys_config$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126024 , 1339550467939639303 , ' guns$sys_config$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126025 , 1339550467939639303 , ' guns$sys_config$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126026 , 1339550467939639303 , ' guns$sys_config$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126027 , 1339550467939639303 , ' guns$sys_config$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126028 , 1339550467939639303 , ' guns$dict$layui_select_parent_menu_tree_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126029 , 1339550467939639303 , ' guns$dict$get_dict_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286295126030 , 1339550467939639303 , ' guns$dict$get_dict_list_exclude_sub ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320322 , 1339550467939639303 , ' guns$dict$validate_code_available ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320323 , 1339550467939639303 , ' guns$dict$add_dict ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320324 , 1339550467939639303 , ' guns$dict$get_dict_detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320325 , 1339550467939639303 , ' guns$dict$update_dict ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320326 , 1339550467939639303 , ' guns$dict$delete_dict ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320327 , 1339550467939639303 , ' guns$dict$get_dict_list_page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320328 , 1339550467939639303 , ' guns$dict$update_dict_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320329 , 1339550467939639303 , ' guns$dict$get_dict_tree_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320330 , 1339550467939639303 , ' guns$sys_timers$start ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320331 , 1339550467939639303 , ' guns$sys_timers$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320332 , 1339550467939639303 , ' guns$sys_timers$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320333 , 1339550467939639303 , ' guns$sys_timers$get_action_classes ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320334 , 1339550467939639303 , ' guns$sys_timers$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320335 , 1339550467939639303 , ' guns$sys_timers$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320336 , 1339550467939639303 , ' guns$sys_timers$stop ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320337 , 1339550467939639303 , ' guns$sys_timers$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320338 , 1339550467939639303 , ' guns$sys_timers$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320339 , 1339550467939639303 , ' guns$menu_button_view$menu_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320340 , 1339550467939639303 , ' guns$menu_button_view$menu_edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320341 , 1339550467939639303 , ' guns$menu_button_view$menu_add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320342 , 1339550467939639303 , ' guns$online_user$online_user_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320343 , 1339550467939639303 , ' guns$online_user$remove_session ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320344 , 1339550467939639303 , ' guns$app_view$app_add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320345 , 1339550467939639303 , ' guns$app_view$app_edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320346 , 1339550467939639303 , ' guns$app_view$app_index ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286299320347 , 1339550467939639303 , ' guns$notice$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708929 , 1339550467939639303 , ' guns$notice$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708930 , 1339550467939639303 , ' guns$notice$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708931 , 1339550467939639303 , ' guns$notice$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708932 , 1339550467939639303 , ' guns$notice$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708933 , 1339550467939639303 , ' guns$notice$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708934 , 1339550467939639303 , ' guns$dict_type$get_dict_type_page_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708935 , 1339550467939639303 , ' guns$dict_type$delete_dict_type ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708936 , 1339550467939639303 , ' guns$dict_type$update_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708937 , 1339550467939639303 , ' guns$dict_type$get_dict_detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708938 , 1339550467939639303 , ' guns$dict_type$validate_code_available ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708939 , 1339550467939639303 , ' guns$dict_type$get_dict_type_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708940 , 1339550467939639303 , ' guns$dict_type$update_dict_type ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708941 , 1339550467939639303 , ' guns$dict_type$add_dict_type ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708942 , 1339550467939639303 , ' guns$user_view$role_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708943 , 1339550467939639303 , ' guns$user_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708944 , 1339550467939639303 , ' guns$user_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708945 , 1339550467939639303 , ' guns$user_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708946 , 1339550467939639303 , ' guns$resource$get_lateral_tree_children ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708947 , 1339550467939639303 , ' guns$resource$page_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708948 , 1339550467939639303 , ' guns$resource$get_menu_resource_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708949 , 1339550467939639303 , ' guns$resource$get_tree ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708950 , 1339550467939639303 , ' guns$resource$get_resource_detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708951 , 1339550467939639303 , ' guns$resource$get_lateral_tree ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708952 , 1339550467939639303 , ' guns$sys_login_log$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708953 , 1339550467939639303 , ' guns$sys_login_log$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708954 , 1339550467939639303 , ' guns$sys_login_log$delete_all ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708955 , 1339550467939639303 , ' guns$dict_type_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286307708956 , 1339550467939639303 , ' guns$dict_type_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097537 , 1339550467939639303 , ' guns$dict_type_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097538 , 1339550467939639303 , ' guns$monitor$druid_info ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097539 , 1339550467939639303 , ' guns$monitor$system_info ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097540 , 1339550467939639303 , ' guns$hr_position$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097541 , 1339550467939639303 , ' guns$hr_position$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097542 , 1339550467939639303 , ' guns$hr_position$update_status ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097543 , 1339550467939639303 , ' guns$hr_position$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097544 , 1339550467939639303 , ' guns$hr_position$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097545 , 1339550467939639303 , ' guns$hr_position$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097546 , 1339550467939639303 , ' guns$hr_position$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286316097547 , 1339550467939639303 , ' guns$login_view$login_action ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486146 , 1339550467939639303 , ' guns$login_view$logout_page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486147 , 1339550467939639303 , ' guns$login_view$login ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486148 , 1339550467939639303 , ' guns$organization_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486149 , 1339550467939639303 , ' guns$organization_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486150 , 1339550467939639303 , ' guns$organization_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486151 , 1339550467939639303 , ' guns$login_log_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486152 , 1339550467939639303 , ' guns$sys_menu$edit ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486153 , 1339550467939639303 , ' guns$sys_menu$layui_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486154 , 1339550467939639303 , ' guns$sys_menu$tree_for_grant ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486155 , 1339550467939639303 , ' guns$sys_menu$menu_and_button_tree_children ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486156 , 1339550467939639303 , ' guns$sys_menu$get_system_all_menus_antdv ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486157 , 1339550467939639303 , ' guns$sys_menu$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486158 , 1339550467939639303 , ' guns$sys_menu$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286324486159 , 1339550467939639303 , ' guns$sys_menu$add ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680450 , 1339550467939639303 , ' guns$sys_menu$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680451 , 1339550467939639303 , ' guns$sys_menu$layui_select_parent_menu_tree_list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680452 , 1339550467939639303 , ' guns$sys_menu$get_app_menus ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680453 , 1339550467939639303 , ' guns$sys_menu$tree ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680454 , 1339550467939639303 , ' guns$sys_menu$menu_and_button_tree ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680455 , 1339550467939639303 , ' guns$position_view$add_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680456 , 1339550467939639303 , ' guns$position_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680457 , 1339550467939639303 , ' guns$position_view$edit_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680458 , 1339550467939639303 , ' guns$index_view$lock ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680459 , 1339550467939639303 , ' guns$index_view$personal ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680460 , 1339550467939639303 , ' guns$index_view$theme ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680461 , 1339550467939639303 , ' guns$index_view$change_password ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680462 , 1339550467939639303 , ' guns$index_view$index_view ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680463 , 1339550467939639303 , ' guns$error_view$error_page_info ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680464 , 1339550467939639303 , ' guns$common_view$common_tree_select ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680465 , 1339550467939639303 , ' guns$sys_message$detail ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680466 , 1339550467939639303 , ' guns$sys_message$delete ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680467 , 1339550467939639303 , ' guns$sys_message$all_message_read_flag ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680468 , 1339550467939639303 , ' guns$sys_message$send_message ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680469 , 1339550467939639303 , ' guns$sys_message$page ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680470 , 1339550467939639303 , ' guns$sys_message$batch_update_read_flag ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680471 , 1339550467939639303 , ' guns$sys_message$msg_un_read ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
INSERT INTO ` sys_role_resource ` VALUES ( 1349328286328680472 , 1339550467939639303 , ' guns$sys_message$list ' , ' 2021-01-13 20:11:47 ' , - 1 , NULL , NULL ) ;
2020-12-14 15:32:18 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_sms
-- ----------------------------
DROP TABLE IF EXISTS ` sys_sms ` ;
CREATE TABLE ` sys_sms ` (
2020-12-19 15:15:42 +00:00
` sms_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` phone_number ` varchar ( 11 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 手机号 ' ,
` validate_code ` varchar ( 100 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 短信验证码 ' ,
` template_code ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 短信模板编号 ' ,
` biz_id ` varchar ( 20 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 业务id ' ,
` status_flag ` tinyint ( 4 ) NULL DEFAULT NULL COMMENT ' 发送状态: 1-未发送, 2-发送成功, 3-发送失败, 4-失效 ' ,
` source ` int ( 11 ) NULL DEFAULT NULL COMMENT ' 来源: 1-app, 2-pc, 3-其他 ' ,
` invalid_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 短信失效截止时间 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` sms_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 短信发送记录 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_timers
-- ----------------------------
DROP TABLE IF EXISTS ` sys_timers ` ;
CREATE TABLE ` sys_timers ` (
2020-12-19 15:15:42 +00:00
` timer_id ` bigint ( 20 ) NOT NULL COMMENT ' 定时器id ' ,
2020-12-11 10:18:48 +00:00
` timer_name ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 任务名称 ' ,
2020-12-19 15:15:42 +00:00
` action_class ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 执行任务的class的类名( 实现了TimerAction接口的类的全称) ' ,
2020-12-11 10:18:48 +00:00
` cron ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 定时任务表达式 ' ,
2020-12-19 15:15:42 +00:00
` job_status ` int ( 11 ) NULL DEFAULT NULL COMMENT ' 状态: 1-运行, 2-停止 ' ,
2020-12-11 10:18:48 +00:00
` remark ` varchar ( 255 ) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT ' 备注信息 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否删除: Y-被删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` timer_id ` ) USING BTREE
2020-12-11 10:18:48 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = ' 定时任务 ' ROW_FORMAT = Dynamic ;
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS ` sys_user ` ;
CREATE TABLE ` sys_user ` (
2020-12-19 15:15:42 +00:00
` user_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
` real_name ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 姓名 ' ,
` nick_name ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 昵称 ' ,
2020-12-11 10:18:48 +00:00
` account ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 账号 ' ,
` password ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 密码, 加密方式为BCrypt ' ,
` avatar ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 头像, 存的为文件id ' ,
` birthday ` date NULL DEFAULT NULL COMMENT ' 生日 ' ,
2020-12-19 15:15:42 +00:00
` sex ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT ' 性别: M-男, F-女 ' ,
2020-12-11 10:18:48 +00:00
` email ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 邮箱 ' ,
` phone ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 手机 ' ,
` tel ` varchar ( 50 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 电话 ' ,
2020-12-19 15:15:42 +00:00
` super_admin_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 是否是超级管理员: Y-是, N-否 ' ,
` status_flag ` tinyint ( 4 ) NOT NULL DEFAULT 1 COMMENT ' 状态: 1-正常, 2-冻结 ' ,
2020-12-11 10:18:48 +00:00
` last_login_ip ` varchar ( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 最后登陆IP ' ,
` last_login_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 最后登陆时间 ' ,
2020-12-19 15:15:42 +00:00
` del_flag ` char ( 1 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ' N ' COMMENT ' 删除标记: Y-已删除, N-未删除 ' ,
2020-12-11 10:18:48 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 更新时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 更新人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` user_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 系统用户 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-14 15:32:18 +00:00
-- ----------------------------
-- Records of sys_user
-- ----------------------------
2021-01-13 12:42:31 +00:00
INSERT INTO ` sys_user ` VALUES ( 1339550467939639299 , ' 周星驰 ' , ' 星爷 ' , ' admin ' , ' $2a$10$N/mL91CVAlcuZmW8/m4Fb..BSsimGqhfwpHtIGH3h8NYI41rXhhIq ' , 10000 , ' 2020-12-01 ' , ' M ' , ' sn93@qq.com ' , ' 18200000000 ' , ' 123456 ' , ' Y ' , 1 , ' 127.0.0.1 ' , ' 2021-01-13 20:33:06 ' , ' N ' , ' 2020-12-17 20:40:31 ' , - 1 , ' 2021-01-13 20:33:06 ' , - 1 ) ;
2020-12-14 15:32:18 +00:00
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_user_data_scope
-- ----------------------------
DROP TABLE IF EXISTS ` sys_user_data_scope ` ;
CREATE TABLE ` sys_user_data_scope ` (
2020-12-19 15:15:42 +00:00
` user_data_scope_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
2020-12-11 10:18:48 +00:00
` user_id ` bigint ( 20 ) NOT NULL COMMENT ' 用户id ' ,
2020-12-19 15:15:42 +00:00
` org_id ` bigint ( 20 ) NOT NULL COMMENT ' 机构id ' ,
2020-12-17 13:15:49 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` user_data_scope_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 用户数据范围 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-19 15:15:42 +00:00
-- ----------------------------
-- Table structure for sys_user_org
-- ----------------------------
DROP TABLE IF EXISTS ` sys_user_org ` ;
CREATE TABLE ` sys_user_org ` (
` user_org_id ` bigint ( 20 ) NOT NULL COMMENT ' 企业员工主键id ' ,
` user_id ` bigint ( 20 ) NOT NULL COMMENT ' 用户id ' ,
` org_id ` bigint ( 20 ) NOT NULL COMMENT ' 所属机构id ' ,
` position_id ` bigint ( 20 ) NOT NULL COMMENT ' 职位id ' ,
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 添加时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 添加人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 更新时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 更新人 ' ,
PRIMARY KEY ( ` user_org_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 用户组织机构关联 ' ROW_FORMAT = Dynamic ;
2020-12-19 15:15:42 +00:00
-- ----------------------------
-- Records of sys_user_org
-- ----------------------------
INSERT INTO ` sys_user_org ` VALUES ( 1339554696976781405 , 1339550467939639299 , 1339554696976781407 , 1339554696976781332 , NULL , NULL , NULL , NULL ) ;
2020-12-11 10:18:48 +00:00
-- ----------------------------
-- Table structure for sys_user_role
-- ----------------------------
DROP TABLE IF EXISTS ` sys_user_role ` ;
CREATE TABLE ` sys_user_role ` (
2020-12-19 15:15:42 +00:00
` user_role_id ` bigint ( 20 ) NOT NULL COMMENT ' 主键 ' ,
2020-12-11 10:18:48 +00:00
` user_id ` bigint ( 20 ) NOT NULL COMMENT ' 用户id ' ,
` role_id ` bigint ( 20 ) NOT NULL COMMENT ' 角色id ' ,
2020-12-17 13:15:49 +00:00
` create_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 创建时间 ' ,
` create_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 创建人 ' ,
` update_time ` datetime ( 0 ) NULL DEFAULT NULL COMMENT ' 修改时间 ' ,
` update_user ` bigint ( 20 ) NULL DEFAULT NULL COMMENT ' 修改人 ' ,
2020-12-19 15:15:42 +00:00
PRIMARY KEY ( ` user_role_id ` ) USING BTREE
2021-01-08 15:01:12 +00:00
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' 用户角色关联 ' ROW_FORMAT = Dynamic ;
2020-12-11 10:18:48 +00:00
2020-12-14 15:32:18 +00:00
-- ----------------------------
-- Records of sys_user_role
-- ----------------------------
2020-12-17 13:15:49 +00:00
INSERT INTO ` sys_user_role ` VALUES ( 1339554696976781379 , 1339550467939639299 , 1339550467939639303 , ' 2020-12-17 20:57:31 ' , NULL , NULL , NULL ) ;
2020-12-14 15:32:18 +00:00
2020-12-11 10:18:48 +00:00
SET FOREIGN_KEY_CHECKS = 1 ;