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

714 lines
340 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters!

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

/*
Navicat Premium Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 50732
Source Host : localhost:3306
Source Schema : guns
Target Server Type : MySQL
Target Server Version : 50732
File Encoding : 65001
Date: 19/12/2020 23:15:00
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for hr_organization
-- ----------------------------
DROP TABLE IF EXISTS `hr_organization`;
CREATE TABLE `hr_organization` (
`org_id` bigint(20) NOT NULL COMMENT '主键',
`org_parent_id` bigint(20) NOT NULL COMMENT '父id一级节点父id是0',
`org_pids` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父ids',
`org_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织名称',
`org_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织编码',
`org_sort` decimal(10, 2) NOT NULL COMMENT '排序',
`status_flag` tinyint(4) NOT NULL COMMENT '状态1-启用2-禁用',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`org_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '组织机构信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hr_organization
-- ----------------------------
INSERT INTO `hr_organization` VALUES (1339554696976781407, 0, '[0],', 'Guns总公司', 'guns_level_one', 1.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
INSERT INTO `hr_organization` VALUES (1339554696976781408, 1339554696976781407, '[0],[1339554696976781407],', '北京分公司', 'guns_beijing', 2.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
INSERT INTO `hr_organization` VALUES (1339554696976781409, 1339554696976781408, '[0],[1339554696976781407],[1339554696976781408],', '北京东直门分公司', 'guns_beijing_dongzhimen', 3.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for hr_position
-- ----------------------------
DROP TABLE IF EXISTS `hr_position`;
CREATE TABLE `hr_position` (
`position_id` bigint(20) NOT NULL COMMENT '主键',
`position_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位名称',
`position_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位编码',
`position_sort` decimal(10, 2) NOT NULL COMMENT '排序',
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态1-启用2-禁用',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记Y-已删除N-未删除)',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`position_id`) USING BTREE,
UNIQUE INDEX `CODE_UNI`(`position_code`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '职位信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of hr_position
-- ----------------------------
INSERT INTO `hr_position` VALUES (1339554696976781332, '总监', 'zg', 1.00, 1, '', 'N', '2020-12-16 13:35:58', -1, NULL, NULL);
INSERT INTO `hr_position` VALUES (1339554696976781333, '总经理', 'zjl', 2.00, 1, '', 'N', '2020-12-17 19:21:47', -1, '2020-12-17 20:45:43', -1);
INSERT INTO `hr_position` VALUES (1339554696976781334, '董事长', 'dsz', 3.00, 1, '', 'N', '2020-12-17 20:02:16', -1, NULL, NULL);
-- ----------------------------
-- Table structure for sys_app
-- ----------------------------
DROP TABLE IF EXISTS `sys_app`;
CREATE TABLE `sys_app` (
`app_id` bigint(20) NOT NULL COMMENT '主键id',
`app_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用名称',
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '编码',
`active_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否默认激活Y-是N-否,激活的应用下的菜单会在首页默认展开',
`status_flag` tinyint(4) NOT NULL COMMENT '状态1-启用2-禁用',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`app_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统应用表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_app
-- ----------------------------
INSERT INTO `sys_app` VALUES (1265476890672672821, '系统应用', 'system', 'Y', 1, 'N', '2020-03-25 19:07:00', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
INSERT INTO `sys_app` VALUES (1265476890672672823, '业务应用', 'business', 'N', 1, 'N', '2020-03-26 08:40:33', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS `sys_config`;
CREATE TABLE `sys_config` (
`config_id` bigint(20) NOT NULL COMMENT '主键',
`config_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
`config_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '编码',
`config_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '属性值',
`sys_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '是否是系统参数Y-是N-否',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注',
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '状态1-正常2-停用',
`group_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '常量所属分类的编码,来自于“常量的分类”字典',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`config_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '参数配置' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_config
-- ----------------------------
INSERT INTO `sys_config` VALUES (1, '会话过期时间', 'SYS_SESSION_EXPIRED_SECONDS', '3600', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (2, 'JWT安全码', 'SYS_JWT_SECRET', '1928374650abcdef', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (3, 'JWT过期时间', 'SYS_JWT_TIMEOUT_SECONDS', '259200', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (4, 'Linux本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_LINUX', '/data/home/rays/dev/tmp', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (5, 'Windows本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_WINDOWS', 'd:/tmp/file', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (6, '不需要过滤的url', 'SYS_NONE_SECURITY_URLS', '/data-hr/login,/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**,/data-hr/swagger-ui/index.html,/data-hr/swagger-ui/**,/data-hr/v3/**,/data-hr/doc/**', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (7, '附件上传方式', 'ATTACHMENT_UPLOAD_METHOD', 'tencent_cloud_file_config', 'Y', '1:MinIOminlo_file_config 2:腾讯云tencent_cloud_file_config 3:阿里云(alicloud_cloud_file_config) 4:本地(local_file_config)', 1, 'file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (8, 'minlo的BUCKER', 'BUCKER', '1', 'Y', '输入框(minlo的BUCKER)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (9, 'ACCESSKEYID', 'ACCESSKEYID', '3', 'Y', '输入框(minlo的ACCESSKEYID)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (10, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '4', 'Y', '输入框(minlo的ACCESSKEYSECRET)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (11, 'SERVER-ENDPOINT', 'SERVER_ENDPOINT', '5', 'Y', '输入框(minlo的SERVER-ENDPOINT)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (12, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(minlo的本地路径)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
INSERT INTO `sys_config` VALUES (13, 'BUCKER', 'BUCKER', '2', 'Y', '输入框(腾讯云的BUCKER)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (14, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(腾讯云的ACCESSKEYID)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (15, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(腾讯云的ACCESSKEYSECRET)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (16, 'SERVER_ENDPOINT', 'SERVER_ENDPOINT', '2', 'Y', '输入框(腾讯云的SERVER_ENDPOINT)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (17, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(腾讯云的本地路径)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (18, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(阿里云的ACCESSKEYID)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (19, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(阿里云的ACCESSKEYSECRET)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
INSERT INTO `sys_config` VALUES (20, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(本地的本地路径)', 1, 'local_file_config', 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_database_info
-- ----------------------------
DROP TABLE IF EXISTS `sys_database_info`;
CREATE TABLE `sys_database_info` (
`db_id` bigint(20) NOT NULL COMMENT '主键',
`db_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库名称(英文名称)',
`jdbc_driver` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的驱动类型',
`jdbc_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的url',
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接的账号',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接密码',
`remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注,摘要',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`db_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '数据库信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_dict
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict`;
CREATE TABLE `sys_dict` (
`dict_id` bigint(20) NOT NULL COMMENT '字典id',
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典类型的编码',
`dict_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典名称',
`dict_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典编码,字典编码的前缀会添加字典类型编码+下划线',
`dict_short_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称',
`dict_short_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称的编码',
`parent_dict_id` bigint(20) NULL DEFAULT NULL COMMENT '上级字典的id(如果没有上级字典id则为0)',
`dict_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
`status_flag` tinyint(4) NULL DEFAULT 1 COMMENT '状态1-启用2-禁用,参考 StatusEnum',
`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 (`dict_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典实体' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_type`;
CREATE TABLE `sys_dict_type` (
`dict_type_id` bigint(20) NOT NULL COMMENT '字典类型id',
`dict_type_class` tinyint(4) NOT NULL COMMENT '字典类型: 1-业务类型2-系统类型,参考 DictTypeClassEnum',
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典类型编码',
`dict_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典类型名称',
`dict_type_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型描述',
`dict_type_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '字典类型的状态1-启用2-禁用,参考 StatusEnum',
`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 (`dict_type_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型表,一个字典类型下有多个字典' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_file_info
-- ----------------------------
DROP TABLE IF EXISTS `sys_file_info`;
CREATE TABLE `sys_file_info` (
`file_id` bigint(20) NOT NULL COMMENT '文件主键id',
`file_code` bigint(20) NOT NULL COMMENT '文件编码,解决一个文件多个版本问题,多次上传文件编码不变',
`file_location` tinyint(4) NOT NULL COMMENT '文件存储位置1-阿里云2-腾讯云3-minio4-本地',
`file_bucket` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件仓库(文件夹)',
`file_origin_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件名称(上传时候的文件全名)',
`file_suffix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件后缀,例如.txt',
`file_size_kb` bigint(20) NULL DEFAULT NULL COMMENT '文件大小kb为单位',
`file_object_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储到bucket中的名称主键id+.后缀',
`file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储路径',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`file_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_file_info
-- ----------------------------
INSERT INTO `sys_file_info` VALUES (1339550467939639300, 2, 4, 'defaultBucket', 'test.png', 'png', 120, '1339550467939639300.png', '/tmp', 'N', '2020-12-17 20:39:31', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_log`;
CREATE TABLE `sys_log` (
`log_id` bigint(20) NOT NULL COMMENT '主键',
`log_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志的名称,一般为业务名称',
`log_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志记录的内容',
`app_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '服务名称一般为spring.application.name',
`request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前用户请求的url',
`request_params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求参数体',
`request_result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求结果',
`server_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前服务器的ip',
`client_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户端的ip',
`user_id` bigint(20) NULL DEFAULT NULL COMMENT '用户id',
`http_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '请求http方法',
`client_browser` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户浏览器标识',
`client_os` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户操作系统',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`log_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '日志记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_menu`;
CREATE TABLE `sys_menu` (
`menu_id` bigint(20) NOT NULL COMMENT '主键',
`menu_parent_id` bigint(20) NOT NULL COMMENT '父id顶级节点的父id是0',
`menu_pids` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父id集合中括号包住逗号分隔',
`menu_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单的名称',
`menu_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单的编码',
`app_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用编码',
`visible` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'Y' COMMENT '是否可见Y-是N-否',
`menu_sort` decimal(10, 2) NOT NULL COMMENT '排序',
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态1-启用2-禁用',
`icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标',
`router` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '路由地址浏览器显示的URL例如/menu',
`component` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '前端组件名',
`link_open_type` tinyint(4) NULL DEFAULT NULL COMMENT '外部链接打开方式1-内置外链2-新页面外链',
`link_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外部链接地址',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统菜单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
INSERT INTO `sys_menu` VALUES (1339550467939639307, 0, '[0],', '组织架构', 'org', 'system', 'Y', 1.00, 1, NULL, NULL, NULL, NULL, NULL, NULL, 'N', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_resource
-- ----------------------------
DROP TABLE IF EXISTS `sys_resource`;
CREATE TABLE `sys_resource` (
`resource_id` bigint(20) NOT NULL COMMENT '资源id',
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用编码',
`resource_code` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
`resource_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源名称',
`project_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目编码一般为spring.application.name',
`class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类名称',
`method_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '方法名称',
`modular_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块编码一般为控制器类名排除Controller',
`modular_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块名称,一般为控制器名称',
`ip_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源初始化的服务器ip地址',
`url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源url',
`http_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'http请求方法',
`required_login_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要登录Y-是N-否',
`required_permission_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要鉴权Y-是N-否',
`validate_groups` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '需要进行参数校验的分组',
`param_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口参数的字段描述',
`response_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口返回结果的字段描述',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`resource_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_resource
-- ----------------------------
INSERT INTO `sys_resource` VALUES (1340314202702643202, 'guns', 'guns$dict_type$delete_dict_type', '删除字典类型', 'guns', 'DictTypeController', 'deleteDictType', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/deleteDictType', 'POST', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202719420417, 'guns', 'guns$dict_type$get_dict_type_page_list', '获取字典类型列表(分页)', 'guns', 'DictTypeController', 'getDictTypePageList', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/getDictTypePageList', 'POST', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202732003330, 'guns', 'guns$dict_type$update_status', '修改字典类型状态', 'guns', 'DictTypeController', 'updateStatus', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/updateStatus', 'POST', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202736197634, 'guns', 'guns$dict_type$get_dict_type_list', '获取字典类型列表', 'guns', 'DictTypeController', 'getDictTypeList', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/getDictTypeList', 'POST', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202740391938, 'guns', 'guns$dict_type$validate_code_available', 'code校验', 'guns', 'DictTypeController', 'validateCodeAvailable', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/validateCodeAvailable', 'POST', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202752974850, 'guns', 'guns$dict_type$update_dict_type', '修改字典类型', 'guns', 'DictTypeController', 'updateDictType', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/updateDictType', 'POST', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202752974851, 'guns', 'guns$dict_type$add_dict_type', '添加字典类型', 'guns', 'DictTypeController', 'addDictType', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/addDictType', 'POST', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202757169154, 'guns', 'guns$sys_position$list', '获取全部系统职位', 'guns', 'SysPositionController', 'list', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363458, 'guns', 'guns$sys_position$edit', '编辑系统职位', 'guns', 'SysPositionController', 'edit', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363459, 'guns', 'guns$sys_position$update_status', '更新职位状态', 'guns', 'SysPositionController', 'updateStatus', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363460, 'guns', 'guns$sys_position$detail', '查看详情系统职位', 'guns', 'SysPositionController', 'detail', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363461, 'guns', 'guns$sys_position$add', '添加系统职位', 'guns', 'SysPositionController', 'add', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363462, 'guns', 'guns$sys_position$delete', '删除系统职位', 'guns', 'SysPositionController', 'delete', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202761363463, 'guns', 'guns$sys_position$page', '分页查询系统职位', 'guns', 'SysPositionController', 'page', 'SysPosition', '系统职位管理', '192.168.11.1', '/sysPosition/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202769752065, 'guns', 'guns$sys_organization$update_status', '修改组织机构状态', 'guns', 'SysOrganizationController', 'updateStatus', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202769752066, 'guns', 'guns$sys_organization$delete', '删除系统组织机构', 'guns', 'SysOrganizationController', 'delete', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202773946369, 'guns', 'guns$sys_organization$edit', '编辑系统组织机构', 'guns', 'SysOrganizationController', 'edit', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202773946370, 'guns', 'guns$sys_organization$page', '分页查询系统组织机构', 'guns', 'SysOrganizationController', 'page', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202778140673, 'guns', 'guns$sys_organization$add', '添加系统组织机构', 'guns', 'SysOrganizationController', 'add', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202778140674, 'guns', 'guns$sys_organization$list', '获取全部系统组织机构', 'guns', 'SysOrganizationController', 'list', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/list', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202782334977, 'guns', 'guns$sys_organization$detail', '查看详情系统组织机构', 'guns', 'SysOrganizationController', 'detail', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/sysOrganization/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202786529282, 'guns', 'guns$resource$page_list', '获取资源列表', 'guns', 'ResourceController', 'pageList', 'Resource', '资源管理', '192.168.11.1', '/resource/pageList', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202786529283, 'guns', 'guns$resource$get_menu_resource_list', '获取资源下拉列表', 'guns', 'ResourceController', 'getMenuResourceList', 'Resource', '资源管理', '192.168.11.1', '/resource/getMenuResourceList', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202786529284, 'guns', 'guns$resource$get_tree', '获取资源树列表,用于接口文档页面', 'guns', 'ResourceController', 'getTree', 'Resource', '资源管理', '192.168.11.1', '/resource/getTree', 'GET', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202790723586, 'guns', 'guns$resource$get_resource_detail', '获取接口详情', 'guns', 'ResourceController', 'getResourceDetail', 'Resource', '资源管理', '192.168.11.1', '/resource/getDetail', 'GET', 'N', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202794917889, 'guns', 'guns$sys_app$detail', '查看系统应用', 'guns', 'SysAppController', 'detail', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202794917890, 'guns', 'guns$sys_app$delete', '删除系统应用', 'guns', 'SysAppController', 'delete', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202794917891, 'guns', 'guns$sys_app$set_as_default', '设为默认应用', 'guns', 'SysAppController', 'setAsDefault', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/setAsDefault', 'POST', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202794917892, 'guns', 'guns$sys_app$edit', '编辑系统应用', 'guns', 'SysAppController', 'edit', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202799112193, 'guns', 'guns$sys_app$add', '添加系统应用', 'guns', 'SysAppController', 'add', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202799112194, 'guns', 'guns$sys_app$page', '查询系统应用', 'guns', 'SysAppController', 'page', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202803306497, 'guns', 'guns$sys_app$list', '系统应用列表', 'guns', 'SysAppController', 'list', 'SysApp', '系统应用', '192.168.11.1', '/sysApp/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202803306498, 'guns', 'guns$sys_file_info$detail', '查看详情文件信息表', 'guns', 'SysFileInfoController', 'detail', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202803306499, 'guns', 'guns$sys_file_info$page', '分页查询文件信息表', 'guns', 'SysFileInfoController', 'page', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202803306500, 'guns', 'guns$sys_file_info$delete', '删除文件信息', 'guns', 'SysFileInfoController', 'delete', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202811695105, 'guns', 'guns$sys_file_info$upload', '上传文件', 'guns', 'SysFileInfoController', 'upload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/upload', 'POST', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202811695106, 'guns', 'guns$sys_file_info$download', '下载文件', 'guns', 'SysFileInfoController', 'download', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/download', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', NULL, -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202811695107, 'guns', 'guns$sys_file_info$list', '获取全部文件信息表', 'guns', 'SysFileInfoController', 'list', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202811695108, 'guns', 'guns$sys_file_info$preview', '文件预览', 'guns', 'SysFileInfoController', 'preview', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/sysFileInfo/preview', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"fileId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\"}]', NULL, -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202820083713, 'guns', 'guns$index$logout_page', '首页接口', 'guns', 'IndexController', 'logoutPage', 'Index', '首页接口', '192.168.11.1', '/', 'GET', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202820083714, 'guns', 'guns$login$do_auth', '登陆', 'guns', 'LoginController', 'doAuth', 'Login', '登陆登出管理', '192.168.11.1', '/login', 'POST', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"account\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"password\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202824278017, 'guns', 'guns$login$logout_page', '登出', 'guns', 'LoginController', 'logoutPage', 'Login', '登陆登出管理', '192.168.11.1', '/logout', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202824278018, 'guns', 'guns$sys_role$delete', '角色删除', 'guns', 'SysRoleController', 'delete', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202828472321, 'guns', 'guns$sys_role$add', '添加系统', 'guns', 'SysRoleController', 'add', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202828472322, 'guns', 'guns$sys_role$edit', '角色编辑', 'guns', 'SysRoleController', 'edit', 'SysRole', '系统角色管理', '192.168.11.1', '/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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202828472323, 'guns', 'guns$sys_role$page', '查询角色', 'guns', 'SysRoleController', 'page', 'SysRole', '系统角色管理', '192.168.11.1', '/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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202832666625, 'guns', 'guns$sys_role$grant_resource', '授权资源', 'guns', 'SysRoleController', 'grantResource', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/grantResource', 'POST', 'Y', 'Y', 'Set[\"grantResource\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202832666626, 'guns', 'guns$sys_role$detail', '角色查看', 'guns', 'SysRoleController', 'detail', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202832666627, 'guns', 'guns$sys_role$grant_data', '授权数据', 'guns', 'SysRoleController', 'grantData', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/grantData', 'POST', 'Y', 'Y', 'Set[\"grantData\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202832666628, 'guns', 'guns$sys_role$get_role_data_scope', '角色拥有数据', 'guns', 'SysRoleController', 'getRoleDataScope', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/getRoleDataScope', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860929, 'guns', 'guns$sys_role$drop_down', '角色下拉', 'guns', 'SysRoleController', 'dropDown', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/dropDown', 'GET', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860930, 'guns', 'guns$sys_role$get_role_menus', '角色拥有菜单', 'guns', 'SysRoleController', 'getRoleMenus', 'SysRole', '系统角色管理', '192.168.11.1', '/sysRole/getRoleMenus', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860931, 'guns', 'guns$sys_menu$edit', '编辑系统菜单', 'guns', 'SysMenuController', 'edit', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860932, 'guns', 'guns$sys_menu$add', '添加系统菜单', 'guns', 'SysMenuController', 'add', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860933, 'guns', 'guns$sys_menu$delete', '删除系统菜单', 'guns', 'SysMenuController', 'delete', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860934, 'guns', 'guns$sys_menu$get_app_menus', '获取某个应用的菜单', 'guns', 'SysMenuController', 'getAppMenus', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/getAppMenus', 'GET', 'Y', 'N', 'Set[\"getAppMenus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202836860935, 'guns', 'guns$sys_menu$tree_for_grant', '获取系统菜单树,用于给角色授权时选择', 'guns', 'SysMenuController', 'treeForGrant', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/treeForGrant', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202845249537, 'guns', 'guns$sys_menu$tree', '获取系统菜单树,用于新增,编辑时选择上级节点', 'guns', 'SysMenuController', 'tree', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/tree', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202845249538, 'guns', 'guns$sys_menu$detail', '查看系统菜单', 'guns', 'SysMenuController', 'detail', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202845249539, 'guns', 'guns$sys_menu$list', '系统菜单列表(树)', 'guns', 'SysMenuController', 'list', 'SysMenu', '菜单管理', '192.168.11.1', '/sysMenu/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@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\"]}},{\"@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\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202849443841, 'guns', 'guns$sys_user$grant_role', '系统用户_授权角色', 'guns', 'SysUserController', 'grantRole', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/grantRole', 'POST', 'Y', 'Y', 'Set[\"grantRole\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202849443842, 'guns', 'guns$sys_user$update_avatar', '系统用户_修改头像', 'guns', 'SysUserController', 'updateAvatar', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/updateAvatar', 'POST', 'Y', 'Y', 'Set[\"updateAvatar\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202853638145, 'guns', 'guns$sys_user$add', '系统用户_增加', 'guns', 'SysUserController', 'add', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202853638146, 'guns', 'guns$sys_user$selector', '系统用户_选择器', 'guns', 'SysUserController', 'selector', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/selector', 'GET', 'Y', 'Y', NULL, '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202853638147, 'guns', 'guns$sys_user$own_data', '系统用户_获取用户数据范围列表', 'guns', 'SysUserController', 'ownData', 'SysUser', '用户管理', '192.168.11.1', '/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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202857832450, 'guns', 'guns$sys_user$edit', '系统用户_编辑', 'guns', 'SysUserController', 'edit', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202857832451, 'guns', 'guns$sys_user$change_status', '系统用户_修改状态', 'guns', 'SysUserController', 'changeStatus', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/changeStatus', 'POST', 'Y', 'Y', 'Set[\"changeStatus\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202857832452, 'guns', 'guns$sys_user$page', '系统用户_查询', 'guns', 'SysUserController', 'page', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/page', 'GET', 'Y', 'Y', NULL, '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202862026753, 'guns', 'guns$sys_user$grant_data', '系统用户_授权数据', 'guns', 'SysUserController', 'grantData', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/grantData', 'POST', 'Y', 'Y', 'Set[\"grantData\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202862026754, 'guns', 'guns$sys_user$reset_pwd', '系统用户_重置密码', 'guns', 'SysUserController', 'resetPwd', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/resetPwd', 'POST', 'Y', 'Y', 'Set[\"resetPwd\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202866221058, 'guns', 'guns$sys_user$update_pwd', '系统用户_修改密码', 'guns', 'SysUserController', 'updatePwd', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/updatePwd', 'POST', 'Y', 'Y', 'Set[\"updatePwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202866221059, 'guns', 'guns$sys_user$export', '系统用户_导出', 'guns', 'SysUserController', 'export', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/export', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SWITCHING_PROTOCOLS\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_EXPECTATION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_TEMPORARY_REDIRECT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PRECONDITION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_MODIFIED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SEE_OTHER\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GONE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MULTIPLE_CHOICES\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GATEWAY_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_REQUEST\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FORBIDDEN\"}]', NULL, -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202866221060, 'guns', 'guns$sys_user$detail', '系统用户_查看', 'guns', 'SysUserController', 'detail', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/detail', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202870415361, 'guns', 'guns$sys_user$update_info', '系统用户_更新信息', 'guns', 'SysUserController', 'updateInfo', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/updateInfo', 'POST', 'Y', 'Y', 'Set[\"updateInfo\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202870415362, 'guns', 'guns$sys_user$delete', '系统用户_删除', 'guns', 'SysUserController', 'delete', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202870415363, 'guns', 'guns$sys_user$own_role', '系统用户_获取用户的角色列表', 'guns', 'SysUserController', 'ownRole', 'SysUser', '用户管理', '192.168.11.1', '/sysUser/getUserRoles', '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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@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\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@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\"]}},{\"@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\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202870415364, 'guns', 'guns$sys_config$delete', '删除系统参数配置', 'guns', 'SysConfigController', 'delete', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609665, 'guns', 'guns$sys_config$edit', '编辑系统参数配置', 'guns', 'SysConfigController', 'edit', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609666, 'guns', 'guns$sys_config$page', '分页查询配置列表', 'guns', 'SysConfigController', 'page', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609667, 'guns', 'guns$sys_config$detail', '查看系统参数配置', 'guns', 'SysConfigController', 'detail', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609668, 'guns', 'guns$sys_config$add', '添加系统参数配置', 'guns', 'SysConfigController', 'add', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609669, 'guns', 'guns$sys_config$list', '系统参数配置列表', 'guns', 'SysConfigController', 'list', 'SysConfig', '参数配置控制器', '192.168.11.1', '/sysConfig/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202874609670, 'guns', 'guns$dict$get_dict_list', '获取字典列表', 'guns', 'DictController', 'getDictList', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictList', 'POST', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998274, 'guns', 'guns$dict$validate_code_available', 'code校验', 'guns', 'DictController', 'validateCodeAvailable', 'Dict', '字典详情管理', '192.168.11.1', '/dict/validateCodeAvailable', 'POST', 'Y', 'N', 'Set[\"treeList\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998275, 'guns', 'guns$dict$get_dict_detail', '获取字典详情', 'guns', 'DictController', 'getDictDetail', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictDetail', 'GET', 'Y', 'N', 'Set[\"detail\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998276, 'guns', 'guns$dict$update_dict', '修改字典', 'guns', 'DictController', 'updateDict', 'Dict', '字典详情管理', '192.168.11.1', '/dict/updateDict', 'POST', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998277, 'guns', 'guns$dict$get_dict_list_page', '获取字典列表', 'guns', 'DictController', 'getDictListPage', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictListPage', 'POST', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998278, 'guns', 'guns$dict$delete_dict', '删除字典', 'guns', 'DictController', 'deleteDict', 'Dict', '字典详情管理', '192.168.11.1', '/dict/deleteDict', 'POST', 'Y', 'N', 'Set[\"delete\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202882998279, 'guns', 'guns$dict$update_dict_status', '更新字典状态', 'guns', 'DictController', 'updateDictStatus', 'Dict', '字典详情管理', '192.168.11.1', '/dict/updateDictStatus', 'POST', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202891386882, 'guns', 'guns$dict$add_dict_type', '添加字典', 'guns', 'DictController', 'addDictType', 'Dict', '字典详情管理', '192.168.11.1', '/dict/addDict', 'POST', 'Y', 'N', 'Set[\"add\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
INSERT INTO `sys_resource` VALUES (1340314202891386883, 'guns', 'guns$dict$get_dict_tree_list', '获取树形字典列表', 'guns', 'DictController', 'getDictTreeList', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictTreeList', 'POST', 'Y', 'N', 'Set[\"treeList\"]', '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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@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\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@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\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@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\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"}]', -1, '2020-12-19 23:13:02', NULL, NULL);
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_role`;
CREATE TABLE `sys_role` (
`role_id` bigint(20) NOT NULL COMMENT '主键id',
`role_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称',
`role_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色编码',
`role_sort` decimal(10, 2) NOT NULL COMMENT '序号',
`data_scope_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '数据范围类型10-全部数据20-本部门及以下数据30-本部门数据40-仅本人数据50-自定义数据',
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态1-启用2-禁用',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role
-- ----------------------------
INSERT INTO `sys_role` VALUES (1339550467939639303, '超级管理员', 'superAdmin', 1.00, 10, 1, NULL, 'N', '2020-12-17 20:41:25', -1, '2020-12-17 20:41:30', -1);
-- ----------------------------
-- Table structure for sys_role_data_scope
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_data_scope`;
CREATE TABLE `sys_role_data_scope` (
`role_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`organization_id` bigint(20) NOT NULL COMMENT '机构id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_data_scope_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色数据范围表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_role_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_menu`;
CREATE TABLE `sys_role_menu` (
`role_menu_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`menu_id` bigint(20) NOT NULL COMMENT '菜单id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role_menu
-- ----------------------------
INSERT INTO `sys_role_menu` VALUES (1339550467939639399, 1339550467939639303, 1339550467939639307, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_role_resource
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_resource`;
CREATE TABLE `sys_role_resource` (
`role_resource_id` bigint(20) NOT NULL COMMENT '主键',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`resource_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`role_resource_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色资源关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_role_resource
-- ----------------------------
INSERT INTO `sys_role_resource` VALUES (1340314202195132418, 1339550467939639303, 'guns$dict_type$get_dict_type_page_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298241, 1339550467939639303, 'guns$dict_type$delete_dict_type', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298242, 1339550467939639303, 'guns$dict_type$update_status', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298243, 1339550467939639303, 'guns$dict_type$validate_code_available', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298244, 1339550467939639303, 'guns$dict_type$get_dict_type_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298245, 1339550467939639303, 'guns$dict_type$update_dict_type', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298246, 1339550467939639303, 'guns$dict_type$add_dict_type', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202220298247, 1339550467939639303, 'guns$sys_position$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202228686850, 1339550467939639303, 'guns$sys_position$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202228686851, 1339550467939639303, 'guns$sys_position$update_status', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202228686852, 1339550467939639303, 'guns$sys_position$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202228686853, 1339550467939639303, 'guns$sys_position$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202228686854, 1339550467939639303, 'guns$sys_position$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202232881153, 1339550467939639303, 'guns$sys_position$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202232881154, 1339550467939639303, 'guns$sys_organization$update_status', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202232881155, 1339550467939639303, 'guns$sys_organization$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075457, 1339550467939639303, 'guns$sys_organization$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075458, 1339550467939639303, 'guns$sys_organization$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075459, 1339550467939639303, 'guns$sys_organization$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075460, 1339550467939639303, 'guns$sys_organization$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075461, 1339550467939639303, 'guns$sys_organization$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202237075462, 1339550467939639303, 'guns$resource$page_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269762, 1339550467939639303, 'guns$resource$get_menu_resource_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269763, 1339550467939639303, 'guns$resource$get_tree', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269764, 1339550467939639303, 'guns$resource$get_resource_detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269765, 1339550467939639303, 'guns$sys_app$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269766, 1339550467939639303, 'guns$sys_app$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269767, 1339550467939639303, 'guns$sys_app$set_as_default', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269768, 1339550467939639303, 'guns$sys_app$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202241269769, 1339550467939639303, 'guns$sys_app$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464065, 1339550467939639303, 'guns$sys_app$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464066, 1339550467939639303, 'guns$sys_app$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464067, 1339550467939639303, 'guns$sys_file_info$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464068, 1339550467939639303, 'guns$sys_file_info$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464069, 1339550467939639303, 'guns$sys_file_info$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464070, 1339550467939639303, 'guns$sys_file_info$upload', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202245464071, 1339550467939639303, 'guns$sys_file_info$download', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658369, 1339550467939639303, 'guns$sys_file_info$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658370, 1339550467939639303, 'guns$sys_file_info$preview', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658371, 1339550467939639303, 'guns$index$logout_page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658372, 1339550467939639303, 'guns$login$do_auth', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658373, 1339550467939639303, 'guns$login$logout_page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658374, 1339550467939639303, 'guns$sys_role$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658375, 1339550467939639303, 'guns$sys_role$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202249658376, 1339550467939639303, 'guns$sys_role$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852674, 1339550467939639303, 'guns$sys_role$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852675, 1339550467939639303, 'guns$sys_role$grant_resource', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852676, 1339550467939639303, 'guns$sys_role$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852677, 1339550467939639303, 'guns$sys_role$grant_data', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852678, 1339550467939639303, 'guns$sys_role$get_role_data_scope', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852679, 1339550467939639303, 'guns$sys_role$drop_down', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852680, 1339550467939639303, 'guns$sys_role$get_role_menus', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852681, 1339550467939639303, 'guns$sys_menu$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852682, 1339550467939639303, 'guns$sys_menu$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852683, 1339550467939639303, 'guns$sys_menu$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852684, 1339550467939639303, 'guns$sys_menu$get_app_menus', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852685, 1339550467939639303, 'guns$sys_menu$tree_for_grant', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852686, 1339550467939639303, 'guns$sys_menu$tree', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852687, 1339550467939639303, 'guns$sys_menu$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202253852688, 1339550467939639303, 'guns$sys_menu$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241281, 1339550467939639303, 'guns$sys_user$grant_role', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241282, 1339550467939639303, 'guns$sys_user$update_avatar', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241283, 1339550467939639303, 'guns$sys_user$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241284, 1339550467939639303, 'guns$sys_user$selector', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241285, 1339550467939639303, 'guns$sys_user$own_data', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241286, 1339550467939639303, 'guns$sys_user$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241287, 1339550467939639303, 'guns$sys_user$change_status', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202262241288, 1339550467939639303, 'guns$sys_user$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435585, 1339550467939639303, 'guns$sys_user$grant_data', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435586, 1339550467939639303, 'guns$sys_user$reset_pwd', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435587, 1339550467939639303, 'guns$sys_user$update_pwd', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435588, 1339550467939639303, 'guns$sys_user$export', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435589, 1339550467939639303, 'guns$sys_user$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435590, 1339550467939639303, 'guns$sys_user$update_info', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435591, 1339550467939639303, 'guns$sys_user$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435592, 1339550467939639303, 'guns$sys_user$own_role', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435593, 1339550467939639303, 'guns$sys_config$delete', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435594, 1339550467939639303, 'guns$sys_config$edit', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435595, 1339550467939639303, 'guns$sys_config$page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435596, 1339550467939639303, 'guns$sys_config$detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435597, 1339550467939639303, 'guns$sys_config$add', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435598, 1339550467939639303, 'guns$sys_config$list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202266435599, 1339550467939639303, 'guns$dict$get_dict_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824193, 1339550467939639303, 'guns$dict$validate_code_available', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824194, 1339550467939639303, 'guns$dict$get_dict_detail', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824195, 1339550467939639303, 'guns$dict$update_dict', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824196, 1339550467939639303, 'guns$dict$delete_dict', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824197, 1339550467939639303, 'guns$dict$get_dict_list_page', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824198, 1339550467939639303, 'guns$dict$update_dict_status', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824199, 1339550467939639303, 'guns$dict$get_dict_tree_list', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role_resource` VALUES (1340314202274824200, 1339550467939639303, 'guns$dict$add_dict_type', NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_sms
-- ----------------------------
DROP TABLE IF EXISTS `sys_sms`;
CREATE TABLE `sys_sms` (
`sms_id` bigint(20) NOT NULL COMMENT '主键',
`phone_number` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '手机号',
`validate_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信验证码',
`template_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信模板编号',
`biz_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '业务id',
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '发送状态1-未发送2-发送成功3-发送失败4-失效',
`source` int(11) NULL DEFAULT NULL COMMENT '来源1-app2-pc3-其他',
`invalid_time` datetime(0) NULL DEFAULT NULL COMMENT '短信失效截止时间',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`sms_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统短信表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_timers
-- ----------------------------
DROP TABLE IF EXISTS `sys_timers`;
CREATE TABLE `sys_timers` (
`timer_id` bigint(20) NOT NULL COMMENT '定时器id',
`timer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务名称',
`action_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '执行任务的class的类名实现了TimerAction接口的类的全称',
`cron` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '定时任务表达式',
`job_status` int(11) NULL DEFAULT NULL COMMENT '状态1-运行2-停止',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注信息',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除Y-被删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`timer_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`user_id` bigint(20) NOT NULL COMMENT '主键',
`real_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '姓名',
`nick_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
`account` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号',
`password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码加密方式为BCrypt',
`avatar` bigint(20) NULL DEFAULT NULL COMMENT '头像存的为文件id',
`birthday` date NULL DEFAULT NULL COMMENT '生日',
`sex` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '性别M-男F-女',
`email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱',
`phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机',
`tel` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电话',
`super_admin_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否是超级管理员Y-是N-否',
`status_flag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态1-正常2-冻结',
`last_login_ip` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '最后登陆IP',
`last_login_time` datetime(0) NULL DEFAULT NULL COMMENT '最后登陆时间',
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '删除标记Y-已删除N-未删除',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`user_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user
-- ----------------------------
INSERT INTO `sys_user` VALUES (1339550467939639299, '超级管理员', '超级管理员', 'admin', '$2a$10$N/mL91CVAlcuZmW8/m4Fb..BSsimGqhfwpHtIGH3h8NYI41rXhhIq', 1339550467939639300, '2020-12-17', 'M', 'sn93@qq.com', NULL, NULL, 'Y', 1, '127.0.0.1', '2020-12-19 23:13:26', 'N', '2020-12-17 20:40:31', -1, '2020-12-19 23:13:26', -1);
-- ----------------------------
-- Table structure for sys_user_data_scope
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_data_scope`;
CREATE TABLE `sys_user_data_scope` (
`user_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`org_id` bigint(20) NOT NULL COMMENT '机构id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`user_data_scope_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户数据范围表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for sys_user_org
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_org`;
CREATE TABLE `sys_user_org` (
`user_org_id` bigint(20) NOT NULL COMMENT '企业员工主键id',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`org_id` bigint(20) NOT NULL COMMENT '所属机构id',
`position_id` bigint(20) NOT NULL COMMENT '职位id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '添加时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '添加人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
PRIMARY KEY (`user_org_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '企业员工表,用户-组织机构的关联' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user_org
-- ----------------------------
INSERT INTO `sys_user_org` VALUES (1339554696976781405, 1339550467939639299, 1339554696976781407, 1339554696976781332, NULL, NULL, NULL, NULL);
-- ----------------------------
-- Table structure for sys_user_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_role`;
CREATE TABLE `sys_user_role` (
`user_role_id` bigint(20) NOT NULL COMMENT '主键',
`user_id` bigint(20) NOT NULL COMMENT '用户id',
`role_id` bigint(20) NOT NULL COMMENT '角色id',
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
PRIMARY KEY (`user_role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户角色表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of sys_user_role
-- ----------------------------
INSERT INTO `sys_user_role` VALUES (1339554696976781379, 1339550467939639299, 1339550467939639303, '2020-12-17 20:57:31', NULL, NULL, NULL);
SET FOREIGN_KEY_CHECKS = 1;