2020-12-11 10:18:48 +00:00
|
|
|
|
/*
|
|
|
|
|
Navicat Premium Data Transfer
|
|
|
|
|
|
2020-12-26 14:45:51 +00:00
|
|
|
|
Source Server : local
|
2020-12-11 10:18:48 +00:00
|
|
|
|
Source Server Type : MySQL
|
|
|
|
|
Source Server Version : 50732
|
|
|
|
|
Source Host : localhost:3306
|
|
|
|
|
Source Schema : guns
|
|
|
|
|
|
|
|
|
|
Target Server Type : MySQL
|
|
|
|
|
Target Server Version : 50732
|
|
|
|
|
File Encoding : 65001
|
|
|
|
|
|
2020-12-29 14:36:33 +00:00
|
|
|
|
Date: 29/12/2020 22:35:37
|
2020-12-11 10:18:48 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
SET NAMES utf8mb4;
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
2020-12-19 15:15:42 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for hr_organization
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `hr_organization`;
|
|
|
|
|
CREATE TABLE `hr_organization` (
|
|
|
|
|
`org_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`org_parent_id` bigint(20) NOT NULL COMMENT '父id,一级节点父id是0',
|
|
|
|
|
`org_pids` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父ids',
|
|
|
|
|
`org_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织名称',
|
|
|
|
|
`org_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织编码',
|
|
|
|
|
`org_sort` decimal(10, 2) NOT NULL COMMENT '排序',
|
|
|
|
|
`status_flag` tinyint(4) NOT NULL COMMENT '状态:1-启用,2-禁用',
|
2020-12-24 06:41:42 +00:00
|
|
|
|
`org_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记:Y-已删除,N-未删除',
|
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
PRIMARY KEY (`org_id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '组织机构信息' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of hr_organization
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
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-禁用',
|
2020-12-24 06:41:42 +00:00
|
|
|
|
`position_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记:Y-已删除,N-未删除',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
PRIMARY KEY (`position_id`) USING BTREE,
|
|
|
|
|
UNIQUE INDEX `CODE_UNI`(`position_code`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '职位信息' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of hr_position
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
INSERT INTO `hr_position` VALUES (1339554696976781332, '总监', 'zg', 1.00, 1, '', 'N', '2020-12-16 13:35:58', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `hr_position` VALUES (1339554696976781333, '总经理', 'zjl', 2.00, 1, '', 'N', '2020-12-17 19:21:47', -1, '2020-12-17 20:45:43', -1);
|
|
|
|
|
INSERT INTO `hr_position` VALUES (1339554696976781334, '董事长', 'dsz', 3.00, 1, '', 'N', '2020-12-17 20:02:16', -1, NULL, NULL);
|
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_app
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_app`;
|
|
|
|
|
CREATE TABLE `sys_app` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`app_id` bigint(20) NOT NULL COMMENT '主键id',
|
|
|
|
|
`app_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用名称',
|
|
|
|
|
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '编码',
|
|
|
|
|
`active_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否默认激活:Y-是,N-否,激活的应用下的菜单会在首页默认展开',
|
|
|
|
|
`status_flag` tinyint(4) NOT NULL COMMENT '状态:1-启用,2-禁用',
|
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除:Y-已删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`app_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) 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);
|
2020-12-17 13:15:49 +00:00
|
|
|
|
INSERT INTO `sys_app` VALUES (1265476890672672823, '业务应用', 'business', 'N', 1, 'N', '2020-03-26 08:40:33', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
|
2020-12-11 10:18:48 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_config
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_config`;
|
|
|
|
|
CREATE TABLE `sys_config` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`config_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`config_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
|
|
|
|
|
`config_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '编码',
|
2020-12-29 14:36:33 +00:00
|
|
|
|
`config_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '属性值',
|
2020-12-27 14:53:12 +00:00
|
|
|
|
`sys_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT 'Y' COMMENT '是否是系统参数:Y-是,N-否',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注',
|
2020-12-27 14:53:12 +00:00
|
|
|
|
`status_flag` tinyint(4) NULL DEFAULT 1 COMMENT '状态:1-正常,2-停用',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`group_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '常量所属分类的编码,来自于“常量的分类”字典',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`config_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '参数配置' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-13 11:14:29 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_config
|
|
|
|
|
-- ----------------------------
|
2020-12-19 15:15:42 +00:00
|
|
|
|
INSERT INTO `sys_config` VALUES (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);
|
2020-12-27 14:53:12 +00:00
|
|
|
|
INSERT INTO `sys_config` VALUES (6, '不需要过滤的url', 'SYS_NONE_SECURITY_URLS', '/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (7, '附件上传方式', 'ATTACHMENT_UPLOAD_METHOD', 'tencent_cloud_file_config', 'Y', '', 1, 'file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (8, 'session过期时间', 'SYS_SESSION_EXPIRED_SECONDS', '3600', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (9, '账号单端登录限制', 'SYS_SINGLE_ACCOUNT_LOGIN_FLAG', 'false', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (10, '携带token的header头的名称', 'SYS_AUTH_HEADER_NAME', 'Authorization', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (11, '携带token的param传参的名称', 'SYS_AUTH_PARAM_NAME', 'token', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (12, '系统默认密码', 'SYS_DEFAULT_PASSWORD', '123456', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (13, '会话信息是否增加保存在cookie中', 'SYS_SESSION_ADD_TO_COOKIE', 'true', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (14, '会话保存在cookie中时,cooke的name', 'SYS_SESSION_COOKIE_NAME', 'Authorization', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (15, 'beetl自动检查资源', 'RESOURCE_AUTO_CHECK', 'true', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (21, '系统发布版本', 'SYS_RELEASE_VERSION', '20210101', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (22, '多租户开关', 'SYS_TENANT_OPEN', 'false', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (23, '验证码开关', 'SYS_CAPTCHA_OPEN', 'false', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
2020-12-29 14:36:33 +00:00
|
|
|
|
INSERT INTO `sys_config` VALUES (24, '系统名称', 'SYS_SYSTEM_NAME', 'Guns快速开发平台', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (25, 'Beetl默认边界符开始', 'DELIMITER_STATEMENT_START', '@', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (26, 'Beetl边界符的结束', 'DELIMITER_STATEMENT_END', 'null', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (27, '自定义标签文件Root目录', 'RESOURCE_TAG_ROOT', 'common/tags', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (28, '自定义标签文件后缀', 'RESOURCE_TAG_SUFFIX', 'tag', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (29, '获取文件生成auth url的失效时间', 'SYS_DEFAULT_FILE_TIMEOUT_SECONDS', '3600', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (30, '服务默认部署的环境地址', 'SYS_SERVER_DEPLOY_HOST', 'http://localhost:8080', 'Y', NULL, 1, 'sys_config', 'N', NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_config` VALUES (31, '系统默认头像Base64', 'SYS_DEFAULT_AVATAR_BASE64', '/9j/4AAQSkZJRgABAQEAeAB4AAD/2wBDAFA3PEY8MlBGQUZaVVBfeMiCeG5uePWvuZHI////////////////////////////////////////////////////2wBDAVVaWnhpeOuCguv/////////////////////////////////////////////////////////////////////////wAARCAIcAhEDASEAAhEBAxEB/8QAGQABAQEBAQEAAAAAAAAAAAAAAAECAwQF/8QAJRABAQACAgIBBQEBAQEAAAAAAAECESExAxJBBCIyUWETcRSB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAER/9oADAMBAAIRAxEAPwDxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAIAAAAAAAKAaNAaNAaNAaNAaNAaNAaNAaNAaNAaNAapqgetPWgetPWgetPWoL609aB609aB609aB609aB609aaHrQ0ZFBQAAAAAAAAEAAAAAUAAAUkQNICyba/zvwCXGzuIAAAACgAAACAAoAAAAAAAoA5jSCgAAAAAAAAAAAgACgDWOvkEk3eF9aglAPjg7BdT9tTOyaFanklmrGcsJreIM6v6QQAABQAAQAUUEAABQAAAAAHMaQUAAAAAAAAAAAWcpZoFmNy6TVnYOlwn+e52sxxyxnxQYv20kl7QPaziJ7X9qJsAlXYIAull18orUzny1PXL+AxljZWRAAAABQAAAAAAANgbNgbNgbAYFBQAAAEAAABQAFgJ1XSSUGsftykiZ/lYisXeNXLU5lVGLdgIAACgbWWAuy2WczlAkTfIrWOWu2rhMpvEHK8CoAAgAAAAbNgGwNmwNmwNmwNmwNgIKCgAAAIAAACgAGwKuN0Drr2w4vMc7lf/qCZXbKgAAAAAoC8Lx8oN+ks3jWbLPgVn/rWN10DXkxtx3pyVEAAAAAAAAAAAAAAAAAFAAAAQAAAABRABQaxysvBnZeUGBQAAAAAFBZpqaqC6s66WXXIq3GZf9Y9csQax8lnGSZ4/M6BzsRUAAAAAFAAAAAAAAAQAUAAABAAAFQBFAAAXYCAAAAAAAA1bCA3zOiVFaljUy9b+4gmcl50xrnXwoZYcbjnoAVAAAAAQAAAAVAUAAZFBQAAQAABQBFEAAAAAAAAAAAAAFBZbOnTGzLsFuOuD1s65ZVZuT+JvHLjqqG7izlJeYDGgRFAAAAAAAAAAAABkUFAABAAAFASooAAAAAAAAAAAAAACrsHTHKyc8xuXXMRW5zOY55eOZc43VBiZ3HjKcFk7x6BmxBAAAAAAAAAAAAABkUFAABAAVAUBEUAAAAAAAAAAAAAAAUGsctTVbl+Yit/6RMvuu5wgnfFmyY6vCjGXFZEAAAAAAAAAAAAAGRQUAAEABQBKCCgAAAAAAAAAAAAAACgEugWrM9IOkzla2Kzcd87250EBAAAAAAAAAAAAGRQUAQABQABFEAAAAAAAAAAAAAABQAEAUAl03MkVZlYa3zAYoIAAAAAAAAAAAAyKCgCAoAAAVlQAAAAAAAAAAFXQJZpAVAVAFAQFQBQXbWO98IqZdoIAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAABdAGgVSINa2zcdAIC6X1BmzRpQ0aEAEAVZQa40zYgAAAAAAAAAAAAyKCgKgAAAAlRQAAAAAAFAURV0ugNIK1GtbiDPqzcdKirKBcWNaoL2mgXXG2aICiKC9raggAAAAAAAAAAAMiigKIAAAAIigAAAAAKBpdIppdAuhFVLAWXTUoLYa2DOWGkgNT+mWIOd4awntNKjN44ZBFVEAWKAIAAAAAAAAAAAyKKAogAAAAyKAAAAACrICyLpFXTXqip0IGjWwLE5lUdMbuLALPhicXQLcVn6qDOePyxjxko15J8uSogqAAsBRAAAAAAAAAAAGRRQFEAAAEoIKAAAAACrEVqLEVqLEF0zYAsBUs3AZx4rpFUvTGXcEbn9LNdIHccrNVRrvHTllFiIioACwFEAAAAAAAAAAAZFFVAAAAASggoAAAAKC6WIrUWIrUXSKAJQFICZT5awu4o1lOHPOcSiN484xfjSDPVTKCsXitZY7xVHCzSNMgAoKIAAAAAAAAAAAyKKqAAAAAlBBQAAAAWAqxFajUZVqLBVNAaTQJZoAT8buA3LuGU3jYqM+PrTpUGdFgrGUan4g4+SarDUZqCoLAUQAAAAAAAAAABkUVUAAAABKCCgAAACkFai6RValQaioqqAgKmgTS63ATVjWN3FRmT1rp2CWIgzZyY9aFYzm3GxqM1BUFgKIAAAAAAAAAAAyKKqAoIAKAlBEUAAAAUgNRYjStTlBY1EFUUAABZBF1tPVQ1xyToDabAZs5RUscvJjqrErCNMiwFEAAAAAAAAAAAZFFVAUEUAAAZvaKAAAKACtRUVY1EGosQaBVQAgKbVEucjN8sA95UmQFrPILjlq8t9opYx5JuLEcKjTIsBRAQAAAAAAAAFAZFFVBQAAACAmUZUAAAUAFWNILK1KirtZUGtqACgIzlWblVGeU0C6WSg1IvqB6tSIDOX40HmvY2iLBFEEFBUAAAEAFABRBkUWKgoAAACwDLpzWAAAKAAptdoGzdA9q1MgblalZVraygqKrFZ0iLpZAamMa9VDQAIDOXVB5r3UbQVEEAFFEAAAAABAABFUFQUAAABYgvw53tYIKACgCAKKvqetQPWgNRqVFalalQaBUsTQIly0If6rPJuKLM2plKgoAlB5svyrLSNY47p8iIAgCqAgKAIAAIAAiqCoKAAAAsQVjLtYMigAoAANRFdMdNcILqJcIKxcdMgsreNB0ioIzaKxbpyyvKxDG6d/DzhVqLl4/mMyWIrpFQEoPP5JrKstI6Y8Y7YoiAIAoAAAAAAIAAiqCoKAAAAsQVjPtRkUAFAAUWXQHtV96g3Ll67WZ67RW7qzcc8oDDpiDri1UEYorGUZuG1QnitrvjJjNRUKSIq6VAqUHn8s+5idtI7ZTWDkCAiAKAIAoAAoIgACKoogoAACAsUWJlAcxQAUFAAEAG/HLbJ8O+eEuKK5YZet1W84iuNbwB2xbqDKWCsWEEWNRRo0CiCJQcfJOXPXKjp5LxI5qiAiKAAgoACoAAgACKoogoAAACxBYt5ijnYyoAKCggCjUkamMQdMdY9NbRUslMvxBxrWAO2LaCAJYxoVY1BGoKAglZoMWbqeqjPkYVmoAigAIKAAAogIAAiqLFQBAABQWINAJY52KIKKCjUQLE0DUjciK1IqCsZUHOrjeVHbFtAAXTNgJpYDUVQSglZqDN7akBw8n5MqygoigAIKAAAogIAAiqLFQBAABQWINQUGMoDAooKNRBrRpFakaiCgFc7RWKuPao74tooCLFBmxFFiwFQGalRWflq8YiPPe6jTKAIoACCgAAKICAAIqixUAQAAUFiDUFBL0DmigoDURW41EVVQUFZrnlVRhrHtR2xdPhkAFgAigoCAiVBJ2nkuppRwFZQBFAAQUABUBQQAAZVRYqAIAAKCxBqCgA55dsqCgLEVvFuJVaEFBWcunHK8rERrHtR2xdIyAAbAVQAEBGagThxzu8lRm3YqCAigAIKAAqCgIAAMqosVAABAAFgNQUARnKOaqKACt41uVmq1FQUFc/Jl8OTUQax7B1xdsWQqAICxQBQQEZvSDnnnxqObSAIgCKAAIoAAg0AgAAyqixUAAEAEFiq1AABL050AUAVY3jUqtytRkUvQPPnd1lpFJQdsK6SorVrNykQWXa6BFgKKIIIxnftoOE5q3hpEBEARQAAAQBQUAQABlVFEFABAAFijUUEAK55QERRQUalQblblRVTO6xB56NIANY5adcc2arc5S4yoNYzTQFhFAAEErn5PxUcZxVqogIgCKCgIAAACgFQABlVFEFABAAFijUUEAGbAYsFAFFgNS
|
2020-12-13 11:14:29 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_database_info
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_database_info`;
|
|
|
|
|
CREATE TABLE `sys_database_info` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`db_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`db_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库名称(英文名称)',
|
|
|
|
|
`jdbc_driver` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的驱动类型',
|
|
|
|
|
`jdbc_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'jdbc的url',
|
|
|
|
|
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接的账号',
|
|
|
|
|
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据库连接密码',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注,摘要',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除,Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`db_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '数据库信息表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_dict
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_dict`;
|
|
|
|
|
CREATE TABLE `sys_dict` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`dict_id` bigint(20) NOT NULL COMMENT '字典id',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典编码',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`dict_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典名称',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_name_pinyin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典名称首字母',
|
|
|
|
|
`dict_encode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典编码',
|
|
|
|
|
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '字典类型的编码',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`dict_short_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称',
|
|
|
|
|
`dict_short_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称的编码',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_parent_id` bigint(20) NOT NULL COMMENT '上级字典的id(如果没有上级字典id,则为-1)',
|
|
|
|
|
`status_flag` tinyint(4) NOT NULL COMMENT '状态:(1-启用,2-禁用),参考 StatusEnum',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`dict_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_pids` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '父id集合',
|
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除,Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建用户id',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改用户id',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`dict_id`) USING BTREE
|
2020-12-26 14:45:51 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典表' ROW_FORMAT = Dynamic;
|
2020-12-11 10:18:48 +00:00
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_dict_type
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_dict_type`;
|
|
|
|
|
CREATE TABLE `sys_dict_type` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`dict_type_id` bigint(20) NOT NULL COMMENT '字典类型id',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_type_class` int(2) NULL DEFAULT NULL COMMENT '字典类型: 1-业务类型,2-系统类型,参考 DictTypeClassEnum',
|
|
|
|
|
`dict_type_bus_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型业务编码',
|
|
|
|
|
`dict_type_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型编码',
|
|
|
|
|
`dict_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型名称',
|
|
|
|
|
`dict_type_name_pinyin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型名称首字母拼音',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`dict_type_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型描述',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '字典类型的状态:1-启用,2-禁用,参考 StatusEnum',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`dict_type_sort` decimal(10, 2) NULL DEFAULT NULL COMMENT '排序,带小数点',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建用户id',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
2020-12-26 14:45:51 +00:00
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改用户id',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`dict_type_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型表,一个字典类型下有多个字典' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_file_info
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_file_info`;
|
|
|
|
|
CREATE TABLE `sys_file_info` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`file_id` bigint(20) NOT NULL COMMENT '文件主键id',
|
|
|
|
|
`file_code` bigint(20) NOT NULL COMMENT '文件编码,解决一个文件多个版本问题,多次上传文件编码不变',
|
|
|
|
|
`file_location` tinyint(4) NOT NULL COMMENT '文件存储位置:1-阿里云,2-腾讯云,3-minio,4-本地',
|
|
|
|
|
`file_bucket` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件仓库(文件夹)',
|
|
|
|
|
`file_origin_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件名称(上传时候的文件全名)',
|
|
|
|
|
`file_suffix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件后缀,例如.txt',
|
|
|
|
|
`file_size_kb` bigint(20) NULL DEFAULT NULL COMMENT '文件大小kb为单位',
|
|
|
|
|
`file_object_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储到bucket中的名称,主键id+.后缀',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储路径',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`file_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件信息表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-14 15:32:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_file_info
|
|
|
|
|
-- ----------------------------
|
2020-12-29 12:23:55 +00:00
|
|
|
|
INSERT INTO `sys_file_info` VALUES (10000, -1, 4, 'defaultBucket', 'defaultAvatar.png', '.png', 100, '10000.png', NULL, 'N', '2020-12-29 20:07:14', NULL, NULL, NULL);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_log
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_log`;
|
|
|
|
|
CREATE TABLE `sys_log` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`log_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`log_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志的名称,一般为业务名称',
|
|
|
|
|
`log_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志记录的内容',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`app_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '服务名称,一般为spring.application.name',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前用户请求的url',
|
|
|
|
|
`request_params` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求参数体',
|
|
|
|
|
`request_result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT 'http或方法的请求结果',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`server_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前服务器的ip',
|
|
|
|
|
`client_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户端的ip',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`user_id` bigint(20) NULL DEFAULT NULL COMMENT '用户id',
|
|
|
|
|
`http_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '请求http方法',
|
|
|
|
|
`client_browser` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户浏览器标识',
|
|
|
|
|
`client_os` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户操作系统',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`log_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '日志记录' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_menu
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_menu`;
|
|
|
|
|
CREATE TABLE `sys_menu` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`menu_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`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-否',
|
2020-12-29 12:23:55 +00:00
|
|
|
|
`menu_sort` decimal(10, 2) NOT NULL DEFAULT 100.00 COMMENT '排序',
|
|
|
|
|
`status_flag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态:1-启用,2-禁用',
|
|
|
|
|
`icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'icon-default' COMMENT '图标',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`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 '前端组件名',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`link_open_type` tinyint(4) NULL DEFAULT NULL COMMENT '外部链接打开方式:1-内置外链,2-新页面外链',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`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 '备注',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`menu_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统菜单表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-17 13:15:49 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_menu
|
|
|
|
|
-- ----------------------------
|
2020-12-29 12:23:55 +00:00
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639301, -1, '[-1],', '主控面板', 'blackboard', 'system', 'Y', 10.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
2020-12-29 14:36:33 +00:00
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639302, 1339550467939639301, '[-1],[1339550467939639301],', '工作台', 'board_platform', 'system', 'Y', 10.10, 1, 'icon-default', '/blackboard/platform', NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', 1339550467939639299, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639303, 1339550467939639301, '[-1],[1339550467939639301],', '分析页', 'board_analyse', 'system', 'Y', 10.20, 1, 'icon-default', '/blackboard/analyse', NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
2020-12-29 12:23:55 +00:00
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639304, -1, '[-1],', '组织架构', 'org', 'system', 'Y', 20.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639305, 1339550467939639304, '[-1],[1339550467939639304],', '用户管理', 'org_user', 'system', 'Y', 20.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639306, 1339550467939639304, '[-1],[1339550467939639304],', '机构管理', 'org_main', 'system', 'Y', 20.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639307, 1339550467939639304, '[-1],[1339550467939639304],', '职位管理', 'org_position', 'system', 'Y', 20.30, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639308, -1, '[-1],', '权限管理', 'auth', 'system', 'Y', 30.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639309, 1339550467939639308, '[-1],[1339550467939639308],', '应用管理', 'auth_app', 'system', 'Y', 30.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639310, 1339550467939639308, '[-1],[1339550467939639308],', '菜单管理', 'auth_menu', 'system', 'Y', 30.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639311, 1339550467939639308, '[-1],[1339550467939639308],', '角色管理', 'auth_role', 'system', 'Y', 30.30, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639312, 1339550467939639308, '[-1],[1339550467939639308],', '资源管理', 'auth_resource', 'system', 'Y', 30.40, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639313, -1, '[-1],', '基础数据', 'base', 'system', 'Y', 40.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639314, 1339550467939639313, '[-1],[1339550467939639313],', '系统配置', 'base_sysconfig', 'system', 'Y', 40.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639315, 1339550467939639313, '[-1],[1339550467939639313],', '字典管理', 'base_dict', 'system', 'Y', 40.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639316, 1339550467939639313, '[-1],[1339550467939639313],', '接口文档', 'base_apis', 'system', 'Y', 40.30, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639317, -1, '[-1],', '系统功能', 'sys', 'system', 'Y', 50.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639318, 1339550467939639317, '[-1],[1339550467939639317],', '文件管理', 'sys_file', 'system', 'Y', 50.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639319, 1339550467939639317, '[-1],[1339550467939639317],', '日志管理', 'sys_log', 'system', 'Y', 50.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639320, 1339550467939639317, '[-1],[1339550467939639317],', '在线用户', 'sys_online', 'system', 'Y', 50.30, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639321, 1339550467939639317, '[-1],[1339550467939639317],', '定时任务', 'sys_timer', 'system', 'Y', 50.40, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639322, -1, '[-1],', '通知管理', 'notice', 'system', 'Y', 60.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639323, 1339550467939639322, '[-1],[1339550467939639322],', '通知发布', 'notice_update', 'system', 'Y', 60.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639324, 1339550467939639322, '[-1],[1339550467939639322],', '我的消息', 'notice_find', 'system', 'Y', 60.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639325, -1, '[-1],', '性能监控', 'monitor', 'system', 'Y', 70.00, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639326, 1339550467939639325, '[-1],[1339550467939639325],', 'SQL监控', 'monitor_druid', 'system', 'Y', 70.10, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639327, 1339550467939639325, '[-1],[1339550467939639325],', '性能监控', 'monitor_quality', 'system', 'Y', 70.20, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639328, 1339550467939639325, '[-1],[1339550467939639325],', 'Redis监控', 'monitor_redis', 'system', 'Y', 70.30, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639329, 1339550467939639325, '[-1],[1339550467939639325],', 'Tomcat信息', 'monitor_tomcat', 'system', 'Y', 70.40, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639330, 1339550467939639325, '[-1],[1339550467939639325],', '服务器信息', 'monitor_server', 'system', 'Y', 70.50, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639331, 1339550467939639325, '[-1],[1339550467939639325],', 'JVM信息', 'monitor_jvm', 'system', 'Y', 70.60, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639332, 1339550467939639325, '[-1],[1339550467939639325],', '请求跟踪', 'monitor_trace', 'system', 'Y', 70.70, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_menu` VALUES (1339550467939639333, 1339550467939639325, '[-1],[1339550467939639325],', '磁盘监控', 'monitor_disk', 'system', 'Y', 70.80, 1, 'icon-default', NULL, NULL, NULL, NULL, NULL, 'N', '2020-12-29 19:51:14', NULL, NULL, NULL);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_resource
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_resource`;
|
|
|
|
|
CREATE TABLE `sys_resource` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`resource_id` bigint(20) NOT NULL COMMENT '资源id',
|
|
|
|
|
`app_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用编码',
|
|
|
|
|
`resource_code` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
|
|
|
|
|
`resource_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源名称',
|
|
|
|
|
`project_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目编码,一般为spring.application.name',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类名称',
|
|
|
|
|
`method_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '方法名称',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`modular_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块编码,一般为控制器类名排除Controller',
|
|
|
|
|
`modular_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块名称,一般为控制器名称',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`ip_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源初始化的服务器ip地址',
|
|
|
|
|
`url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源url',
|
|
|
|
|
`http_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'http请求方法',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`required_login_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要登录:Y-是,N-否',
|
|
|
|
|
`required_permission_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要鉴权:Y-是,N-否',
|
2020-12-13 11:14:29 +00:00
|
|
|
|
`validate_groups` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '需要进行参数校验的分组',
|
|
|
|
|
`param_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口参数的字段描述',
|
|
|
|
|
`response_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口返回结果的字段描述',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`resource_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-13 11:14:29 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_resource
|
|
|
|
|
-- ----------------------------
|
2020-12-29 14:36:33 +00:00
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073076412417, '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\":\"dictTypeBusCode\",\"metadataId\":\"0d2e833194e24125b66011a51991a64e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1b3ab2ea82a44c73a1c41532a6301b6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"673d1732f3c749328094d3e5ab90468a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3e3e2ec949d24a8ead5cca792f07dfdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"e7399ec1d01b4cecb07a14fc3ff47a67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"68d30399f1e34943a1844ceb5fadf825\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5c194f79d704412babd8e6b8f9d0f871\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"904a829852ae41fea7a77da7bde1c293\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"c8cbca71bd7a4bb3aabfba89cc55dab0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"94315b40c07e40be87f31689f3335734\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c329d7ae725a4173855a532b6a6d2a9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a936f997f1c84e4dbd1aa1c2540bfd31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d635af9e12794b3a8ff7c882c535ba34\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073126744065, 'guns', 'guns$dict_type$get_dict_type_page_list', '获取字典类型列表(分页)', 'guns', 'DictTypeController', 'getDictTypePageList', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/getDictTypePageList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e50b550bfb7641bc90796b4c41f1f90e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"2fe27cc351c14d26ab77dccd8bd85b84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"60dffc1bdecc418da2bbd00d7dec0118\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"7b00a52ba52645709df650f6ac126401\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1129fa7d5d5e4d628925e2f5b54e1b09\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"022ccc87826a442fa1ab91926511713c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"f71fce123f534e3992c13288a4c594c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"577f8bbd95b24d52920fae5d59d2ab4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"b55082dd82874d26bbee31b06529eaa5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"33272b12c6e440ae8bf82c78a72adc62\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9cca9152537b45b49eaefe7ed48f3a95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"235c1a7029064ffaa83e34fd8bbe3119\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3040c23a876543e2b6ff338298a5827c\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073135132673, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a703c88d64c74269bb3fd25ec3632a1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4677790efcf14357846c2fa87592cff0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"a001a2cc8ca04882ac5f44ebcdd626dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4ccaf444e0e54e6abe0d5b9d923b7394\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"62232de5b30b4a169aa3e19c0375ccfd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"7399a4fb7dff4584a4700af9770eb397\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"262fcb4f7d8b43088cc8cceb9a3f2d4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"5a2435903cda405784fbce4f2a48ec2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"12f46b402bb64665a319c2f61c0f530e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7c4dcb7ced224b27bf8cd61567323cad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"73de1e1c2a904797b6df4873dc34ec83\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"925cba423bbf4970a7934219e7ab8165\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4d63abdb1e4e4584bf54d922f99f05c7\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073143521282, 'guns', 'guns$dict_type$get_dict_type_list', '获取字典类型列表', 'guns', 'DictTypeController', 'getDictTypeList', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/getDictTypeList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"c4187681c4734987b1a6271eb5378e3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"5659a26119c04af5be7cde9bba099d8a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"3575bc3c30464ada92e8fb0519c53235\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"96898b66c30641a3aef7fa07517b26ef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"4b0c06cec8d6445d8005660a2d91ebb5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"fa87d7eeba334ed8adde138f5f6f4ab4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"ea0f66e90b0342dbb22cea635fdcd6d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6d7833556db34fd283b7a73c1c857d79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6c78e6b4463a4b22935e80c8306bc376\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"091027f5523041cea9ad5277b5f95e35\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"08f5122c764f43f98e9a6ef509ef21ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"187387d711564f69841aecc075ad54d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"37842027356f4b4d9eb8064973cdf2b1\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073151909889, 'guns', 'guns$dict_type$validate_code_available', 'code校验', 'guns', 'DictTypeController', 'validateCodeAvailable', 'DictType', '字典类型管理', '192.168.11.1', '/dictType/validateCodeAvailable', 'GET', 'Y', 'N', 'Set[\"validateCode\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7b9c96ca332f4ac8a70929203356e560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"c91c8e66330641d180931aa7f73568ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"518753b5a8eb411598b9a29cc8538ead\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeNamePinYin\",\"metadataId\":\"52724115eb9c45bca2901e8780513a55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"46277c1947c04a709475173782b132d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ead84dcc44d24a57924d597aa92260b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"2541c0660af2411bb3d28bc5d3ea1ab1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"e285da04fe394d29ba7a24c9af00733b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9ba7ab139197490da47a5d5eb6455bbb\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"ff0ee02865db4db390349c78439c43c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1eb24912e2dc48268b506b4b4ad36b58\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d91453e340f240c984b01aee3de01e6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"1e87b244532b46d086a8feb2973a27a7\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073164492801, '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\":\"dictTypeNamePinYin\",\"metadataId\":\"29fc5a1c28c440fdb399cf8682a653d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a2de2a8c3c104ae0893c0b03a9b38fcc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"07aa7bbbde1c43f9a2a0dafd4f8dfca9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"832081455ea64307b17251de56d016ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"fc023003de814af2b009360b02ff0d36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"020ebd7581f5483a9e3090329807cf7b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"a3fbddcf92f94e8082d0a028e9ba3813\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"b3cb4b8352da42f68bcc793b63c3bb63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c296fb55edb74f15804fb2c1d0a2d773\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"1cab6e722b654256a32dd6d019cce66a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c3b460421b9a4f9a883c3be33e9010d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7cd3cee6af8146f48fb07dca763001a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"79211a9937704d7d83fa9b2a6c00d05b\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073168687106, '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\":\"dictTypeNamePinYin\",\"metadataId\":\"d9a690c8795548178d51a70a09c45b37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictTypeSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"54b0c1636a7248dc9d037473fdad474b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\",\"metadataId\":\"40f003daf35b40fba5c3a12931f726c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"80dee82a9d8b42149884639069499430\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictTypeId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1f51b64036394d42bf3e2dafff4096ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9cb9102c845b4c208c334a20b463fb32\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeBusCode\",\"metadataId\":\"5171c76bb7b24dee9516a771e24a5a4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateCode\":Set[\"NotBlank\"]},\"metadataId\":\"7466fb02334944e1b082519736f803e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"312c53812169479faaaef1a980768231\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0082304198aa4b7ab8de40f519cb8e65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f5b77032cb654ae4a737081860fdad75\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8df4837c04b84cf5b1f2dc6f249eaf16\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"d3a27afdd63a487baf447335a15e3dfd\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073168687107, 'guns', 'guns$hr_organization$update_status', '修改组织机构状态', 'guns', 'HrOrganizationController', 'updateStatus', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"2d52fde8e5d448fd948905930ad44f17\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"597cac4da043426488b5fe75c73ac5fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b422570d3ff947cdad731660c86e082e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5bd56c535b8f40478430adceabcd7b96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"45c1d347081044ef98c3696274acdb4f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"dccf3fba629d425d9f9672d0d0e098d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"384cb754af2c4d84baca6fa050acbbc0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6b5625cb9f164415ad435e928fa43c90\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"eb2d4c198388490a943289b0b425007b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6ec2b24f73cd4062a5988c6285b0ce2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a7c1e9553abc439db4adbb18a20ed704\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4f113ba12bba4723be6fd05aa70d8a08\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073177075713, 'guns', 'guns$hr_organization$edit', '编辑系统组织机构', 'guns', 'HrOrganizationController', 'edit', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"45ed5fbc34c8479582150d33f51c06b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"51da9050dba244dc90e73a03058dcfef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"480ab3551e3f41b28e49f3e7adece7ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"705da9d317d64eb1b4ae5720d3253c5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"2fdd579680e34fccacbe083445a2648f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"02ea1e3b18b54529bc54a93781fb57e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"4fbef1be25fb4f42ba1ea0e904c8bf7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"30d09fd8f5f14103b04e51ad09728025\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0c7dfd4b93fb4c2ba8ccb7b365a5545e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"f72949e4d4dd4910be9bd763ce220768\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"8ff8572ba59b4495bfe610c5ce16bd6d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3f43602acd424b7cb527e7b1077057df\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073177075714, 'guns', 'guns$hr_organization$list', '获取全部系统组织机构', 'guns', 'HrOrganizationController', 'list', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b3f9bc925e534c35ad16ce16a1549a4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"3164a6ea76ce41cdb8dc28c42e117eb2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"3fb90fa34437407dbad7a4bc8654500d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1a987dcc3b9d41c299b1b0fcfe4b0e1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"818a7682816f4fcd8cc01829d7a16146\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1d5b4e277aba4659b8979e2f96991b74\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fe1c27d505d2418487a35122ba5d20bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6a8e824341b04c5a9fc81ef6999c4006\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"b06f96d48907470690d669f08f497d3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e5a7b9040f2c4a98bd32a07306b26ec3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"6c659443b0c340c09a0cb5edb135bf85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"00ffa1a99f914feba42e1dfd067ec88d\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073181270017, 'guns', 'guns$hr_organization$detail', '查看详情系统组织机构', 'guns', 'HrOrganizationController', 'detail', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"5b9d286b74944587a507c7ce2db378f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9cd771b3540a436d831e8994df77c537\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"72bdac78acca413bab30cdf1918ea826\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"b2793b3ec8714952a977a437ba9edc5b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"fd429fe44d9b476d8217b13995009725\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0535fe44e92b4d839024f7af44ea9b3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"0a6c844a49fd4bbaa894a1db3ba071c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"36a9571cd5184486b0118927c7d2b423\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a7ce8bb41b8e4336b65394711aca0227\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"99bf988928504d40bee9dd58ddde724b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"99a58e414a5e425a861a34d5be475471\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"8da25bfdcf104c798b46eb5ad46f67ac\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073185464322, 'guns', 'guns$hr_organization$page', '分页查询系统组织机构', 'guns', 'HrOrganizationController', 'page', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"776249ea706c4e4d992a82d2b0f2c978\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d336a523ba684339b6a6d7b810affd1f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"aa506febb26f43239c2ae74336c96975\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"729367001ad148cdb1bca31a70ef2242\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"224be0ba093748c9a9978218fde09328\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ab97f55952004026b4775b6869dfc6f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"183ec992d2a044c2b0d42cfbe6ca024a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"90c049984f9d4341950722a9c4343ede\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6c74c6d7f4e14bf9a336ce7264ba6ec9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e73997ef8f05445e99105d1f72b6b0fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"348718b53f9b4984ac43bf751cd4210a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"49cf4f365d6b4503a33fe83a56347f60\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073189658626, 'guns', 'guns$hr_organization$add', '添加系统组织机构', 'guns', 'HrOrganizationController', 'add', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3c794a9c50004c908f56fba9a90e2bfc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0383ae86625647289d5bc0724854458b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5f26170c49e54431a6835970f2b20553\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b6ee0145b31341a1b3b3faac931ba684\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"1b212700f68c404496a8d3a911f6c68d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8d205972b319483abc985e8586a1533d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"7389ed2014da48529c8121d9c378c1cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"25695e4540af44838ba932796f5c1209\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"33d6889d3a8e4d22acff42ab5010e69f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7be7d0fb427546579cfd97b04b295f85\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b7f84bc257d940d6bca859e28136312f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"47c586e0f01c4ae1a0223f1d4edf5255\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073189658627, 'guns', 'guns$hr_organization$delete', '删除系统组织机构', 'guns', 'HrOrganizationController', 'delete', 'HrOrganization', '系统组织机构管理', '192.168.11.1', '/hrOrganization/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"5bd338e0f9d146a98e19df7368118260\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cb60240835b4430d932b26f5c17224c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"orgRemark\",\"metadataId\":\"6a28e4fe535c4eda8cc186699f279acf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"5a33146e696742f38852c17feadae200\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"99e36588a3c448599f89a4c312dece20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"1f1bcda65abf4d4494bbad77cf625e0d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"orgSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ee55c472a1a345049d1979b94cba94fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"orgPids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"eda82f2b808e4ed7a8dc596deb9695c6\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0b5492ad5a6f4b48a55e0347cf2f323b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"4e0ec58a642e4c5ca9f708fb6cb1a244\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f5ffc0210d034a1699f03cebe3f15b51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b3a400b78f65478b903a1b6ccbae8b9a\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073198047234, '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\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"25ce2501b27a44f3a34b42a8dc639cec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"ccfecdf8ec6c4f28b19ce502a594194e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"b076546d62d14a3eacdbe4d92fef71d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"7c01d0ce61cf4678aa572c87017097ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"0e8e3942499e402c804c025c3fb63b50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"f8efec46c4ad424ca5d7672ff737dfd9\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d3fcce5dea8c4b4f99be4498d7b86314\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"91895e99e68b4801b72cd315d3bb821d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fc1feedebb2d44a181307d3bd04cd676\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"97b7dabf338f46278fec3c335d910400\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073202241538, '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\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"8b90ef1b40c143a48b22ced957aebdbb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"bffae207de644019986c221f28a263da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"6cc9f4d0248943acb9e43f8a97b3b89c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"ca610b80a5b34d31a99a31530fd08083\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5ec1694ace114fcdb54ae3b5e0f903c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"56f90a0a9f2d4a83ae1df14e0a754d9c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a00e0c2682344022ae978de8d3bc9a84\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6401e8b2319145f0aa8de77795863319\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a34a95575640486287322f30332afcb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"477dd4f31f7247caa64f18d427a70204\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073206435841, '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\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"84bfc64745a5469bb6630cda3809ae87\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"933828e74ba5437a8d8ae76efdd99239\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"96efeb84bf974a84b4e04277c592d340\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"28efaeaca95648b483cfd689cd2558a9\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073206435842, '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\":\"String\",\"fieldName\":\"url\",\"metadataId\":\"624386c216ff446783c15871ab8c374a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"resourceCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotBlank\"]},\"metadataId\":\"62f7e421274a43f282bcdf328cb9e4ef\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\",\"metadataId\":\"e7a0bd5d7ad6445abc5ddace42bd10f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\",\"metadataId\":\"6151be512ef6468cbfdc369fcd52ec96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"7c7e53ae842e4ba39baf2896721663e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"metadataId\":\"b9881877e3b14e70995b7c57c1bfa3e5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5c35e7849dd54959b3a7e8b01e635754\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"375add7a5beb4fe2817a19b47b13b94c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"31efdb49db6c422b93324144ea9d9a69\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"bdd84fc6ca484324958af93e0d8b431a\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073214824450, 'guns', 'guns$log_manager$delete', '删除日志', 'guns', 'LogManagerController', 'delete', 'LogManager', '日志管理控制器', '192.168.11.1', '/logManager/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"5381bf3f28604104901c26d9199e26df\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"6b06ef89faf0418e9d7ddcbf0ea26a36\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"e95cbc1fcf0145c8922ecb2cf26724a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"050cd603a534449b97c47fa658b57e70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"4077de495a464c40a3b1b5d09e32e5ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"589fe358793d47d2871152ec0b81f60e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"a91e474edf374febb5730de689914bd9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"69152dba03204a80ba90a06f5122bdc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"c6b82f77e2a744ae97a036735b107fce\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7741c577245a4e0ea6c547c053c75bfa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0f0b175a58fa47bab2e60087e80e3e8d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"4fd8fba038e94295a45be910a91b6bc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"134c60102688437bac1de217893b731b\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073214824451, 'guns', 'guns$log_manager$list', '查询日志列表', 'guns', 'LogManagerController', 'list', 'LogManager', '日志管理控制器', '192.168.11.1', '/logManager/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"serverIp\",\"metadataId\":\"52394b71af1e4c1faacb43c2837a1449\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"clientIp\",\"metadataId\":\"06ad899e24bd4b3a87c17125397374de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"logId\",\"metadataId\":\"75dca020f86142dbaed735e893d1614f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"logName\",\"metadataId\":\"f38a67ba448841ed9f129ba3df3ba747\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"metadataId\":\"605478315ac04db5b8d2d322e3b409d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"99ea9a028eff49a390f6db6aec728979\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"beginDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"11dd420976074823bd40362285cecdf6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"endDateTime\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"delete\":Set[\"NotBlank\"]},\"metadataId\":\"afe6e4cace6e4d099cf59808a6977560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"requestUrl\",\"metadataId\":\"e66cd5d9bd044844b0ba50ce172e12e9\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7e4490513332431badc8d271cdcc6703\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"6bae7131b72d422198332c6549beeb90\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7ea50991c96c4af393886e56af82a543\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0a1c90c092384a7bb35dce2a9d9bc431\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073219018753, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"655855ce085e435eabeccc07ca352c3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"5731563b0ec34b4ba6b397d401af0b0d\"},{\"@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\"]},\"metadataId\":\"3bc81810a56e40f1a4f32ea1523b12ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f0197d95e3714bffada697032fe6ee13\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"461fa15a61cf43919a9cb6b00735c3e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"930808400f9042a1a4c61844a78c1514\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"72f2e85a1513407ab070d6356f5e93a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"d7c6e2942fe54eb9bc94cf76f419f38e\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073219018754, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7cb3405f91c34c1dbf0c5705b4c00d78\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"490873e931004c75a0bc2561f096e0e2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"439d5911217b4127b2b495e35f4f3e09\"},{\"@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\"]},\"metadataId\":\"8c85ccb4c4d44aa59768c14901fb5cd8\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"48b6594a0962417c89146ca35e7ac0b7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"00b81b3d2bd646738ad2cebd9a1286d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"8a3073c9d6c14e51b47dd0944025397f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"436e554a8be24ea89b00157f02bb3297\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073219018755, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"appId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"fecb3d4b913f458d98e6f6f91959da19\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"57fd122b9394488083436308b2a4a596\"},{\"@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\"]},\"metadataId\":\"a62f02579d774302868f7ccc01562240\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"db496471188d4b01ab0174d5f4d815dc\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ce77bc89a05f4142abda92acb621e509\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"86534cfc343641bbb43ec794b069ce44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8b03859ff385443f956c1ed0f6000e4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3ec8877b1f7e4b228298847e17745ab0\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073223213057, '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\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"738ab2bf6e3e43a588d63621671d5085\"},{\"@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\"]},\"metadataId\":\"86531af21738424eb0029154b7aec288\"},{\"@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\"]},\"metadataId\":\"216f624116d345a6a54d03e8dc24fa4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6374f8ecae8d444987f504e79078d8b0\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"313aeee2aa064a3b8fdf87e1e8dc3e18\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"2b201a5875554fc6a450bffc8c4089e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"39664766a63b408592db56a8b18171e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2a5bd1edf3b143148a612569c24c6c3a\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073223213058, '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\"]},\"metadataId\":\"73500f051bdd465ba8184352cf003785\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"fd3dc735671943eea21e5ef8d33353c1\"},{\"@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\"]},\"metadataId\":\"3747102ec3474293959db201480dd340\"},{\"@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\"]},\"metadataId\":\"9bf7ba82762f4291a4e86514ab2c3bcf\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3be14d723d0f4e65a5ba73efda410912\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"405953d5199d4eb2872fefa3e26042e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"058cb8be488440709c9a3de4c854b5ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"de46fc0be8a84fb3b8c59ecf213e4c4d\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073223213059, '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\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a81a02167f8e4374ae7735a3da26563a\"},{\"@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\"]},\"metadataId\":\"23d394741df145519127f518fdf64a10\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3bfd7bca7f5948879622f17dbbde9f9a\"},{\"@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\"]},\"metadataId\":\"a9d91bf5133941c0859553fa69d2cb17\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"13bc9f02ccc345799749d511256e738c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"51d1760cb86944e08834e2f0daa42dc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"9b6d8fb3d85c448eae6522a00e52fdf6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e12e6f3827b445ae8af30c95998da1c4\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073227407361, '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[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"05ffe52ab4bf4488a00af26e93eb2104\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b77b3adafb7d447185f395a1ca8adcd4\"},{\"@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\"]},\"metadataId\":\"e0affafc9e394fd4b8a8b7e84d97af73\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"62a93784c91842d5be73f1c1c4bf01f3\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"34750f33c39d4bbaa7e3ff867c6c9b7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"792bf057fc9d4f5fb8ff017159e187fc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"803c790c974e47ecb04ed376a55999ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1a7873e6a5d1484a9f96c92b25459d98\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073227407362, '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\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"5d7ab92299714067bfb9168c2cc5a55a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"fa41bdd001404b698cb6bcd3c03037ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"239d9450b82f4933aaa5cc3b9aa88ba9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"metadataId\":\"509095a81391427dac5a9f5cd08d8d86\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"8b42be3c48194d4cbd3513ca24372477\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"691960fe33804908b7556dc866f7f911\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"70b9c6dfb83e4daabaf69838b139d70c\"},{\"@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\"]},\"metadataId\":\"56a879b737de42fbb908f956576d094b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"229603ed9c1c4c57a0db58ee1e16d373\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0450c2cacacd45f3b5db43c68d31f6de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"be999a8d0c5f4de18371c8621f3ed135\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0a69e42ee94f43cf85aff7ec8919275a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"fd72f5300ce640a8bcd9ff67bcc49d4f\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073231601666, '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\":\"fileSuffix\",\"metadataId\":\"45d66e40aa7e4fe8968db6d53104a245\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"73c16437129448859c87d79ed4dc14db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"metadataId\":\"62c25634ed8748d0852feb47deaf8703\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"7aa74a1d0a8e4ec7aadaac7cd58c9cc8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"0e7026c2138947a1aec120399cf07d50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"327d2a2996604b619c83dc11b590513d\"},{\"@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\"]},\"metadataId\":\"d6af9b8adf494e7cb0ecc255f31b2fd1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"8c0bfcad05094f28acc76e5c13c8f0a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"97e43301fbb749f48afaab19fd1ced4d\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"2e1216a6c53248e7ad7a63087cee141f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"75c7b8f5ae504d508416ee090519f991\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b541e0633a8d46b8a87f969f267da1f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7e323ae7bc4d424aabd0772051fc2793\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073231601667, '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\":\"fileBucket\",\"metadataId\":\"9834fbef4a28466495dc96becded2c42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"d419d7394a9949f0aa5bd4eec81a1b28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"a72ae98804dd4e9bb7302817edf8407c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"71c4dfc45ed748439da190dbdb62806a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"95d99d2a98dd477f8b78323bb61e91cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"d1f04f83b4944e11bdc4f81ccaa028ea\"},{\"@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\"]},\"metadataId\":\"e167c6033c8c485eae38065da7d58175\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"94874a224d314f3b860cd142e3f43fcd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"2e968d48cc174440a401b200bd865915\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"dd98cbc99d6a40fd82f0fa81fb70ef44\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b98adc2d62e541cd976ffe18fd915e2e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"93b7b4cf4f1e4ee0a96d42d1bd3ef707\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"646a491f969b4380a63af5543d6f9dbb\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073235795970, '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\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"7c6e0a8cd884415e8090c8d974843246\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"e38d6c87253c4d71ab82058467af692f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"221abafce5b84fb39c361c311f472c7d\"},{\"@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\"]},\"metadataId\":\"34f774d05e404d799484e3930f79ad0a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"metadataId\":\"365f3245190c45d1b29dbf209c38907f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"632254a0f69a437c8c09451e37078890\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"5a7775c2146c489fa92a33af52580fd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"45ec6780de0c474dab15ca9cb187722a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"e093c2c4c70544e6b57cf153a976ff8c\"}]', NULL, -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073239990274, '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\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c97f1f8c10e64ca3917acf944ae4a18f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c1a4ea49a03b4969b536d37902b3f65b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"30832fd756f947ad84ceba5cb8e4f37d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4fb6f0e2f7e44c05b048c0af057b5bf3\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073244184578, '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\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"ab1cd10f7bb84d358c6a1cc40a43384c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"5232740e11da40cab82cc756bebdf557\"},{\"@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\"]},\"metadataId\":\"9a1e666a245646b7acdb4d96143fd854\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"metadataId\":\"49cdae8470c349b4bbd82a6216138fb1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"30cf1bcb1f1a44638bd7b80cf7e8ecc5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"9fd0a37a044d4657935e1d91b294f643\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"18ced1da04524489b588ac33688fdf07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"eba9e25c73194e23a98c6d00ae382d47\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"9514f68ac3e749ce9aa0e355ee77dca7\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"e1efc91666a74924bfde2cb9c538f281\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5f8cf0d0078f48b4a6e9f80f5ff6a94c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3eef525521cb4de1ad16865a04f8d23c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"38614ecdfb2846fdb6327984d40b4be4\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073244184579, '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\":\"Long\",\"fieldName\":\"fileSizeKb\",\"metadataId\":\"fee4f0c1c92d4563abda7b1308d57490\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\",\"metadataId\":\"15d3b202f96846528cd81d821eb002e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\",\"metadataId\":\"6048bc57f6524c87b1c42cca83c17157\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\",\"metadataId\":\"5ddc974e40aa4612b7cc2538de3fec2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\",\"metadataId\":\"a73044e81d6346b5aba881ba2c16acb3\"},{\"@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\"]},\"metadataId\":\"8cf81bfaaa604a78bae970f975d57ebd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\",\"metadataId\":\"4e3afa600d43497bb07c33c86b5168dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\",\"metadataId\":\"0cb6aac1e752424088dfa369ca322f54\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileCode\",\"metadataId\":\"93166de98b7c40fba0ca1641eabf0961\"}]', NULL, -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073248378882, 'guns', 'guns$blackboard_view$analyse', '分析页面', 'guns', 'BlackboardViewController', 'analyse', 'BlackboardView', '工作台和分析页面', '192.168.11.1', '/blackboard/analyse', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c60d141f4e9c46dfa3d592836b2141f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3dbb5279d39647d4906161d01d1e26c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"fc327fef72994b66a7c8f57430232631\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"e502c8bc09bb435ebb1693ead8c9b628\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"53c85a6f8fca49bdb21821185515d8a5\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073252573186, 'guns', 'guns$blackboard_view$platform', '工作台', 'guns', 'BlackboardViewController', 'platform', 'BlackboardView', '工作台和分析页面', '192.168.11.1', '/blackboard/platform', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5edb89612efe4c33937871a678aa1325\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"49f7e6575b9048158c6a370ca399acf8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b30d67ca146e4f859f8c51327064fccc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"3f1a22ab6a7440cfb004eb36223dc98f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"f5066be2a2ac45d2937282e5390e2350\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073252573187, 'guns', 'guns$hr_position$detail', '查看详情系统职位', 'guns', 'HrPositionController', 'detail', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/detail', 'GET', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"98333de1dc7f4061adf02eff887a5035\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c922d4e53caf49789f92bb53465053b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"4e121d0b4aac465d95ad5c6543ad4b4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4a462b4ea0e94150b0fe52e01c2da222\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"25d0f081b2394e8bbd948eb2cfe5b3aa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9c5b02a251f443a190a6a738549c64d4\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"43117ec5ad644f28a9e07d96cc2da3d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"85e9487adf6947fda50b09526748d7ac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"3fb10544b1dd439cb5d3987941c7fe01\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ea4d049134194269ab8d13e30773e690\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073256767490, 'guns', 'guns$hr_position$page', '分页查询系统职位', 'guns', 'HrPositionController', 'page', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/page', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"59994ec7ec3a4789910648405c04910e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"a2b431eafeb247bfb31ebf15ad81610d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"9221d5b6630c4aa0aadb293b18c12dc8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c1c9e49e2d7b47eba5531450e4da3b1b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"a689e502e4bd40c6b0e7fda69b24262a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0c2956598aa143c6ad3640cdbd66830f\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2750a3fd929c43ce8e57da089ca3f18b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"56dce631d3cb411883b9a02e91e1a664\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d10dad33f49746c680d9933d117b293e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3875169cfcc944a8be53b38974dc7780\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073256767491, 'guns', 'guns$hr_position$update_status', '更新职位状态', 'guns', 'HrPositionController', 'updateStatus', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/updateStatus', 'POST', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"cc0b15d211434b15b245bad78db4110d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"72541dacb62f49c8b48b534560442413\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cfcc8cef73f04f33811876e9c64a9019\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"dd8a32effc6a45869495ce0748d3cb94\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"f4b522c92d5a45e0848cd0c94d16aee8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"817072824e064d2eb6e9791285bafb5a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"f06c5b7d6d4b43a4a4fffddfa5ec70b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"673c3826069f464396f1a6f331bb9abb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"e174f436dd144dcabfee88d72795d3d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"c3ec6549b5fd48918e9e616783715623\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073260961793, 'guns', 'guns$hr_position$delete', '删除系统职位', 'guns', 'HrPositionController', 'delete', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/delete', 'POST', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c9182e93418f4423b07410ce03b600ab\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"112914e6087c4ea8926af490aec95748\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"795951ce74944a1aab2175caf2d4f1c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"2f05d6aac5e34afdb5d5692552807eeb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"487af1de246f48ec81a0856c1953132c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c95f35bae6cb4828821516c11ddfae7e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"29fc9b27bd5145f3b272dded11b59f12\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"b8068707d6594790a4ae8fe9815a1e55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"87a89d2e3464410fb5c0d5f20f34dce2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"78d977674a7143cca6517bf7ce1ee6fc\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073260961794, 'guns', 'guns$hr_position$list', '获取全部系统职位', 'guns', 'HrPositionController', 'list', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/list', 'GET', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"bed59f6c608b43a0875d599096acdd5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"f8a7fe3b62b04496af4ae48f470ac02d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"81744fd07f3941e1a83953c62cea7e67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"7307de817c5e4d7d8a8b56ed296f5b7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"59fa1e84b09e4332893e25ce968ad50f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"7ddbc4e98d3241c1886051e9de227572\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"64be4feefa5b42a7bcf4b071947ae655\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0ce0542b8f8c4f3db970c1d2e5c2b749\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7eed9a511da242faa841f68e53fdcd63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"48322ce899b7459287f76d0d31490efe\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073260961795, 'guns', 'guns$hr_position$edit', '编辑系统职位', 'guns', 'HrPositionController', 'edit', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/edit', 'POST', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"149926544c3742e59bdd1995954b3368\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"472e5eecf8264c7aba2c9c8beb518005\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f4a4fe0932a94f1b9907291c6bb037f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"5278bfdba711449b865e3c3bb4faf00a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5eed663aef9a49bb9e9d88cc4899c6f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"edd20ad00c684833939c6458a38c87ee\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d1be9bcf5021442f9aff14a720b7f341\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"a421505762af4fccb0eb189a8149fafa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"ae8c1a4a5dc840649c233ad0f32d7af7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"0f828d2ecdc04fbd81d0a173a9f87fd6\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073265156097, 'guns', 'guns$hr_position$add', '添加系统职位', 'guns', 'HrPositionController', 'add', 'HrPosition', '系统职位管理', '192.168.11.1', '/hrPosition/add', 'POST', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"positionSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ec68a05015b14f94a45f8b30174bb12d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"eb650851cccc4f6dac6f885d3c39e910\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"654e81db0e8e4c0bb552b7bc4f4baa76\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"positionRemark\",\"metadataId\":\"f87c0d68e92a41969539ce760f02c70b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\"]},\"metadataId\":\"bfdcbe4783ad488c81b11b390d99e488\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"positionName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e6605da9e88940ee96ce975a1f53566e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"fca1a7a8e45b40c2bfb873e4ef50d8f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0327cce6534d428ba102d703aa9d4ecd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a8d72c64b52449aab973c95731e0a96d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"626a4d8d4f924cf382b0e6e92c21e997\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073265156098, 'guns', 'guns$login_view$login_action', '登录接口', 'guns', 'LoginViewController', 'loginAction', 'LoginView', '登录相关的接口', '192.168.11.1', '/loginAction', 'POST', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\",\"metadataId\":\"c07ba49171a44442b1a707177eb7f2e9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"a6ac93519e72476893491525c5379eaa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\"},\"metadataId\":\"2beeec41195d4ce78364162b296d8210\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"99efb44227fa49b782d337e2a05bd663\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"41ed223d3452417f9380f1f8abdef1e6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"f8adf80ed0b94b308b980c87c387ce1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f9a926dc868d492f9f5d94e78bdd5aef\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350402, 'guns', 'guns$login_view$logout_page', '登出接口', 'guns', 'LoginViewController', 'logoutPage', 'LoginView', '登录相关的接口', '192.168.11.1', '/logout', 'POST', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"63ff56eb6b3b4d7fa6da8eb1ed0bbe4c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2e4301cf1250414d96528a6f12af5335\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"103466e652b94552a30326815593022d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b643f28b7eea4a80896b5cb8ecb06d41\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350403, 'guns', 'guns$login_view$login', '登录界面', 'guns', 'LoginViewController', 'login', 'LoginView', '登录相关的接口', '192.168.11.1', '/login', 'GET', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"725066f1046b48d5b1bedd9faa934141\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"5c7ebc069ab3484c8e5eb9e07df8fa6c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"83c18db54f02443ba591fcdbcba46a79\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"8017ac80bd344a84a22f73dfc886b24b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"291d1a8522784353a957e18721d0562b\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350404, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b30ebae0b15b4091be4e6c3b304f3f9c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"2c0a5c13aa15406fbe22e20d75172475\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"64bddbadf7464c48ad265dcd71f97c9a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"b3cdfee8ed84410fa321608d9a855075\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"7830122ecb6e4d6ba2c11c809311a198\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5b2b916ce8e64a3f94d0d691523f4ed3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"eda9ba557eef4180bb26271854d05b3c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"d4bcccdc0e444174b69d9cd272713b9b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"1334622e54704edebc868581f97a58be\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"27819b5c985145a0993521f64c93093f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"8fbe1c5cd4c94ce1a6e189823b62123c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"c2c4e290185c4b91a9959f912362e551\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"721c310522d94931bcaeb7df7cbdc848\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350405, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"73a3e8b0d6ce4371aa0ca61ee625f8b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"c8b86c55eb6e4970a7ee323f528113e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"e7a418e57d034b2ebd67fa9744dd1725\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"fd0c5ec4aa474689b19e5b50aa402e05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"f165005130a141189c7ff224d64eb361\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"6f7b38b39e244ef0a0416fca025c5a07\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0c8025197d3b47ec920576f10dfb3dd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4cc2db021dce4591afb0b6093005a99c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"a8a959f6577445ee8b50380a529a0d03\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"36c4922b4cc74958a5313bb5555b7b1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"560381ad6ba040acb7805e580fdaa58c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"cf94cea83dff491999829b56ce874419\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"07831de6941f4a9fbb0c210440a26f16\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350406, '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\"]},\"metadataId\":\"d0ab40ba840f4e65a4580ab7b8e16f20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"c45d5c3a14114e2fa6cb5fcf13f6d5da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"af3f27a75d4a4c75aa848d9f3087dc5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4ca9efb69b1248ec8ff5f469ef1576d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9ec07dfeb439462eb59a7bd6decd9fff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b5093abbe13f45b0b5ecc6c1d1b71558\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"279b3603cf8d491587bef4503538d6fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"c87e5a539dd3455faf0f111e622478d4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f9ddac47ecf246e78bc2d4f12c1383f6\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"edfacec2a4164814a442a9353b6644f5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"5fd0c5bbdf5c4d73801eebbab64adaa5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a960de2579f4419582471ad2c506d32a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"7c3623db73b64b4f96ea5231ab5b8cf3\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073269350407, '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\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"10adad669e9b4cf89038be3977fe9f5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"ea96296b612f4dc6835945b2d0e67074\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"8fece3c0f86543d2ad6f5f696a6f769c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f97aa05953294ed883964cb389cbdc00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"440ddcf6d409493ca0b07612349b6e4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a2dd5bc39969462fae8c625bfe2c13d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"35282d5de9f54d6c9831828ecd347433\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"3839986765954ab286afc09572624c82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b3eabf29ed034902b4dfe62c8373eb9e\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"450ea368b9d0449cb2de83618dfb71fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"637bd53e9dba430bbfff28447afb011e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"2c668fb72d984aa08e8f51070b29e0c7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"be8c9835241b4b7ab25479ef01388666\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073277739009, '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\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"29552ed9aab34c41a52d8e4a15436c82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"16d8e93c80bf4e7896c874a8a2d3a628\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"2e785bec9d7b4dc69d6495210650b802\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8b65132a80f34e72ba5bdaddffffca42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"7fde8ae02cb744c9bacaf33313aa5d82\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"998d6744450c4bec936806153294e105\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"08cc6d49cd0c4184b2dc1aae9b4cfc57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"72a1133e50d54c39beacc920e9ee9d8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"6c30e8e58c184cba970a92c3be759446\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"01bbd0839dc74ca8aab4d2c23c1598e0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"5d6b1575388a43efb2486b2e800884d1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"ae5dceb46188448aa5ca872039d3e666\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"104f19b3bc5046ba9cea2723e2b60b9c\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073277739010, '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\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"21875e5948044741840dbe8cc18d7084\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"34c7073cea164852aa438a78e1fffbc6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"51ad59b5af3a49c3a87a20c31ef3abc1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6bf204470fb34b08bdf32ac177c2de57\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"153f022665694119bc3bdc68c0c46546\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"a9056fd2d7604b33947024e1bbd370ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"0bb524b49fff42299eb9a8b8ac02372e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"c1d6248c0ce34d80aeee08ced79ee42b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"db4254d660034856b98674c95cd9e91c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"869729011c2443c0b3640041f620989b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"37e6fe4d0c984c3988eddec0ea41b848\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"a86d9dbf9d8240fea101f1bec368b861\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3aac85eb75d64ef68108cfc13b962521\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073277739011, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"f8688c84296840ddb5f2e1d794ae90c1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"0a9bd9d1e2944a0597d27da5e7c9fe70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"00ed4dfa60c84cd59e7574cc3cba1e9c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"e31bd056aad2422d8ec97c8ed4c659b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3e5c9ff8352d408fa04bff20cf12e248\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b5a6afe43ced4193b6ec2bbce278693a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"c5707aff914841768d1fe02f976138d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"5f437955adda40ea87bbab804f0980da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"bad602209f31401891978cad94486882\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"1f4041cede044f3ab0670446b4f1f747\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"5f8f54e391054829bbe460856cd50704\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"7a0516a4483d4ed8bdf0f80c57b4ba1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4dbda669033c4694af03faa5cf10df4b\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073281933314, '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\"]},\"metadataId\":\"e71c78e6fd554982886024f1f3749f61\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a536f9a6a1eb45a984362d7f485e8811\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"62e1a631afe3491ca9bab3d08f9e7246\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c2ccf9cee9944b2088c7c02f426ffef1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"aa14f98d2dd949f997423c9028a2941d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ae1d04d5f14c48c1b97021360a2692c5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"93a27286cc7f4b39a7364da83367fef1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"15c4adba19f24ae2a1dd7b14284e8de0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"0cdf4af6f5054fd4866da14b628e5b11\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"55d60e1ca0134328ba3d4f5d70e7f5fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"155c860120f749d9b5c4e8c810e05bec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"aa8dd40f504f4c7693fc404b502cdf0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"b691600a78b84129b8d8c57bb55f4263\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073281933315, '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\",\"metadataId\":\"50d6336aae83429698c76c580b311602\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"851e5549f742401cb0fa323da25de14c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"178e7f61f73b4e9f8e8b661b3cb10db7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"da9d7f881c64459cad18de994c437b1f\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073281933316, '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\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"9df0fb1131c04fb5a0d3e14605c8ee51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"4e4fd367d1e94cc6be93a5465fb9575e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]},\"metadataId\":\"b86f35195a504df29b74bd13a13b6d1e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"21b0b3eac8dc432d9eff369ed3dc63ec\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"ebda349acae948aa9ab3904f8d1e14ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"roleId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"de06a6c4f48649a1a2ab676108fc7517\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"3ce767444c414310a42deaf8723bb7eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"roleCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"cc8b6b9713c14cefb713499251e4a44f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"roleSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b654d45027dc47359db4c4aedb8cdaa7\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7189c297f6d5498e8d349fe5374612b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"2cabefe6bf7f4a668255c4552c1a7b34\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7783f9e5357e47bcbb3dbe24ab09f244\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e4515a8f93f64bbaae4519501c0afdd2\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073286127618, '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\":\"linkUrl\",\"metadataId\":\"85a00c375c3b4be2a0b3961c0f1976ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"4fb113c8c6b745beb7c6f380b7a84956\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"6065409dc1ae4c57b34a32f8b15640cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"b5891551ea664ca2a10d7da288db184a\"},{\"@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\"]},\"metadataId\":\"5d5ea75d40b24a728290b439d2ce02b6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"8b31310cc3834a8ea074e30dfd065642\"},{\"@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\"]},\"metadataId\":\"af2d1ec9330547b0906b7f3f3493c511\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2acd28104916449798c3e34afa9b2e53\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"215460693da949688d582effc7d43d99\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"adfa13a38fcd4b63b58fee01b163f898\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"bb735031feea4d77933711e3e973b4ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"26ca47a47f274e43a6e04ef675505e20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"a27330422154461f82124092a76
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073286127619, '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\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"9042d7c1bf61442a9840d2b65f9de5cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"2da644e17c8c4a91b5d045990f88d217\"},{\"@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\"]},\"metadataId\":\"338887ba7aa947ee9e98045097615fd8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ed6a377986a44a238ef874cc944e7ab2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"893c71e851d24b3fbbee8a4d927ae70b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"dcbf4a11472f45f88860ade201f5a19a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"2f68356d311b4fed8db05ab8043476d3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"343e2d022c7d4b4f962118a8c99b01d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"adc6f0faa0ef4759880b005300629f5b\"},{\"@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\"]},\"metadataId\":\"137838eb35464fefa1dc90759f3ebde2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"cc3b9b5e56494e199bd47d4ab3a674ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"3552922c41fb4164bb570b9532b81f3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"9eb53c9e3bc04f7fa3c546ff3c3e3da
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073286127620, '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\",\"metadataId\":\"1a4768e4edff497289b3734078708af6\"},{\"@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\"]},\"metadataId\":\"90d6a81beca64ce38956b6ef12ed977d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"32e8049c09544d38ad0e6e46d18b16ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"639a1b8e8db34da4a0ae119667d8c61a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"465724dfdc6d474e98a208b40bb2548f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"07565db85b5e4d9898c2ae014a705019\"},{\"@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\"]},\"metadataId\":\"f5f5d39ca3514e83ba8b735dd10a78a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"aa6fa48967df41d8b3e162932e050d20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"43a9c7dba87444ed9138a74bdb3c008f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"6187cfae9cf94207a08d06f94806041d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"a068d10a822145b4a6f676c82c57c900\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"09506f767f514bd685da1cfd92c8ac71\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"4c1c5d05e8a849bb86c
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073290321921, '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\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"bf4f8cd4b7ab45b3a75a6f3fbb3c0a95\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"dd5e00c1014a4ff28a343861daec9e88\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"695a5a9ba80a49e2a0a0cdf3d23c1248\"},{\"@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\"]},\"metadataId\":\"fc5e029d2c0849069d39bc08a8de174b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"27cfac4bb02644cb9948aac07dbe97a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"ea8bd8cda4e64bf4890018ffba9c21da\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8f2874ab2c934a70a9f3a717f284c14a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"17ad3da527784904a459d2a440b4daa5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d518c519aa984bec8b356f5554263e7d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a77209df38ad47ac9be7d8162a1ea569\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"67dac48351914a648e0bb27198e2d635\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"78aea2da2faa410a844778f07b6f8f41\"},{\"@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\",\"FlagValu
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073290321922, '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\":\"router\",\"metadataId\":\"e3e143dfb32f4b90ad6af3e5397a1123\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"c276a8fa859340fe9e32dbf1addb36f2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"d66c53c58fd04139bd96f63a20f6fd56\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"82f6461f35e4460396ce6d220d2405db\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"cdfb7078248e43a69e729c944b5f119e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"2d4d7229744d4552a0effa56f430d93f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f8889be220aa40f2a8461999c108593c\"},{\"@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\"]},\"metadataId\":\"c80e97a791d2418eb593c028957bc223\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"ca0d70e772874326b8a1ad2faaf1259b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"63c93780cc7c4a51a33de178055117b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"ae383ae1528140aca1c4919f279e0321\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"2e684eaa92064127b2e1ac49d88c437d\"},{\"@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\"]},\"meta
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073290321923, '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\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f80e846d1f8641dd8e7b86742d54ee03\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"36be26f961e245488694058ae3f97ab1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"8af3488406c747e4822771559a48bd48\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"7ab1dc377f744b6a898d531b44fb22b3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"83bc53e7458946ce84f531197f621031\"},{\"@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\"]},\"metadataId\":\"a80858ad68324814abcaa710a494bb4e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3350b9da504f469dafc2ed91dc49d222\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a89ba6b4ea8440388b77d5518ab9dbdb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"26f8917b9f8e4e92a1fdc3163ee4e840\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d6ec59cfde2b4b7a8dbc59101e9cc534\"},{\"@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\"]},\"metadataId\":\"c74ea1ef77c74a169f9724b598fa83b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c86ba017a9fa43f0b1b46a0ad99b58ca\"},{\"@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\"]},\"metada
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073290321924, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"2eed02ea67964ebe89f2bf4e0546b687\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"54662146ccde46ac8e7e5cb7123c9bb3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"965c63f5e8e147c7b2bd6997980f9d14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"8a37745dd28a4a09ba93de41e309ba2c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"d24cb991cfb74076966f7d7f4cc2b516\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"4ff97927645d4b97980f11c77545b9c6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"dac80001f4c54d22b700a4e65e6f9230\"},{\"@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\"]},\"metadataId\":\"774734df63ba475fac0853c0e1219f6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f66e7957048d49249426ed706327c66d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"ec290223a6024da09cd9c6cd01fb38ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b01798e664a142eea4beb2565962cba9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"e7978e343a1c4206a1c409429488cec4\"},{\"@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\"]},\"metadataId\":\"34c124e00df840159be1
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073298710530, '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\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuParentId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"fe377157be9746f89e0ea48b5f59ffda\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"affe6552098547ea9678a9cc63a7995e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"router\",\"metadataId\":\"1f57566d4023440385deb7c90524943b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"menuId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"05f1f432e6094a17a29a47fd69465ed2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Min\",\"Max\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"linkOpenType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\"],\"edit\":Set[\"Min\",\"Max\"]},\"metadataId\":\"27de508783b74573a0ba1483024fa479\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\",\"metadataId\":\"6442c8fc801b48939d342a6d62234876\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"linkUrl\",\"metadataId\":\"c1064c8eeb6143d7ad760dc77c44ebf7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"menuCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"92ea1bf8905b45e0b1993ab32dc6b58b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"component\",\"metadataId\":\"9a12146b09f447ffb5d90a0ab26448d6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"abcd1fd841164a71ab82748310da2c59\"},{\"@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\"]},\"metadataId\":\"f13d000f08b3466990bd5f45549ab13e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"menuSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"f6e7748d0f3c42e3a1c306591c956fd6\"},{\"@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\"]},\"metadataId\":\"115d31f93bc74f4fa7eb9cae352fa3
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073302904833, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"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\"]},\"metadataId\":\"9c91649a27a842bf9affdffaba946307\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c6c7d62042a34dbc853160d26ab5e17c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"4b6446e4818b405c8763ccbd781203a7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"ac9e5eaf353645048f61363468645bdd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f53afb7f48f44225ba12ef0595fa0eca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"9634d642f8214818a7eac9674c123dce\"},{\"@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\"]},\"metadataId\":\"9031d6ee67f84ad7b48a9b0aad6dede1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c8fb108c697942ef9c5667e69b1e1963\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3d5100108fed41b3a77bef8725960715\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"99335136141f4e08a2861209424ef227\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"ce0f7175916f4f2fb1780499846679e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.re
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073302904834, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"3d1f3cc138fc426984aafeac31dc678e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"fd3a365b91324eab906516dbe819641a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"e18da17c31114a77aafb37ed8de58d38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"d9a66831c1e24d4fb7a6d1d93d06568c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"f952e007ed3d45208dd26f89363b0ecb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"196ba06ee1be450b81ed3446ead2fdc4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9f2e65fedd184c628432ea1af75939a9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"044ab7597dee4682bda95f030784c8a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"cc5fd73a1a494f86b0f7d3bb506062eb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"37112ea40485447b8126fd906201c4b2\"},{\"@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\"]},\"metadataId\":\"b39f9e41bf0b4f6985a175420ca5ae6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"0ec92c7330544db0bef49bdd2d848a60\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073307099138, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"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\"]},\"metadataId\":\"d69a481e08194b448f82596d3923e3b0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"c1648d750b9142308de2c1ff7c702d5c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"7168de86a94f4e26870c780aac7d462b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"f32885454fdd49bbbe11114ba34498e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"150943661ae8493292198f59edb19e6f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"890665aecceb45d99eca9ef92d002871\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"b7b5c557bfde4b238319c4539b7b547e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"44d5529e2c8b494895a09f2a6f9ccebb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"7a22b69d08e34c0d8e57bfb1ae86d24e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"fee2fbcbdfb2463a9f80f9e8a08e59ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"f7ff93816d4e44b38d395f8f0bf675bd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.H
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073307099139, '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[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"6ac91113166f40e498b7283ad314b722\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"07d07657dd724e259e0f30f91f9a8147\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"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\"]},\"metadataId\":\"0f801e9f838c4c5caab727f58f5fb2c2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"95bd6e53e87d4cb8b94bd930693e854e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c658e8873650484b84dd93455e5739be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"edf2c1a56b9c4cf8b85c0ad169013298\"},{\"@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\"]},\"metadataId\":\"a97813e1354045a3b55c6a5bf68b7a67\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"1e519afbeaaf4820bdcd1924f2000798\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"b66cfc219b694160b6b310e8e12b39d3\"},{\"@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\"]},\"metadataId\":\"a1c9e71206074a209d71992f204ef68c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotN
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073311293441, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"842854c7d6cf4150b7a8ecb937938fae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"5d6ca23c7f38407fbdb461a18aab1646\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"629a95d0f46f4b928c5bf43b6c37a75f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"13d664b0fafc49f1aeca68d9e92fbb11\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4d6cc8a60d7c43d4acb8f17fb686747d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"ca58f6743bb94150a5f05595b7af875b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"3ae7b5411a764dc6ac5c3271108b4e77\"},{\"@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\"]},\"metadataId\":\"d0c5ec0fd0cc4990be3c3a138b1694e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"aab1044cd28f413c90d189445c2622b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"535884fac653475bb941179b1a0efaaa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"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\"]},\"metadataId\":\"8f19711c29214ea5b261a1500e8a6851\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMeta
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073311293442, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"4763f0070b5f4cc7b8952c4e90f8549b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"6baab2c2fc9442b6ae2f8ee099340009\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"e2dc2503211e4b08bf547783bc6886f1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"8a3719cbbfce4dc7837654193ba7cfb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"9b43fa91fb124eaba531b33598b1cba6\"},{\"@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\"]},\"metadataId\":\"5c8c01423ca24a9ab6271d520d813e1c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"1920fbb944084461bcafe23ed54ed95f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"cff61e1f2b434aadbddcee5448466e52\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"986d173de845453f8d53c54cfbfe5820\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f91a2fae2bc64d4db6effe9052776b4d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b77074442d1f41c08bd11abd4f614c33\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"9814ffd2eb874a3da92732db934
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073315487745, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"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\"]},\"metadataId\":\"02d00a13b7e74007929aeb34cea16f08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"3057afdd6a764434a1f5289763e855cd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"e36819d3cee3481385995387f2300f49\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"bc5db38326a444d4aa4e0e743699e33b\"},{\"@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\"]},\"metadataId\":\"ebf8a34d029d481c8ec140e7fadd99f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"ca9542c667b646afb854c37f4526e0d8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"a68c98ed50ea40afacdc076b10f5a708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f8a92852e6144b06b5745463add11e27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"bc5d5486b7174a6082243ac16115bd46\"},{\"@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\"]},\"metadataId\":\"2df60799f25f40a09e95951347d612a3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Se
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073315487746, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"99cfa63ef27f4321928d8467d09ecda2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"30b6770627094c5cb98d6283fe40e27c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"5263afe3d9634a95ba340e718674d804\"},{\"@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\"]},\"metadataId\":\"68a8737e784a4aa3a6fd8adb0861b2e5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"aef43b9fb0c240aa85b9df6fd6315277\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"3223abc4456540e88f777ec449215560\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"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\"]},\"metadataId\":\"2320a7fdbf26489cbbedc305b448f837\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"53b9b6d88064473281e9d53fb9407ef5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b9b6cbaf704143d0bb3634bef67246c8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"66134d91b16b4a279b652ba3833cfd8d\"},{\"@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\"]},\"metadataId\":\"d5d6f826b9c44c7dad5a4ffb1d9b5151\"},{\"@type\":\"cn.sty
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073315487747, '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[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"b3ef309d0b7145d8ab2e3dd10b44a52f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"4d7675129b0b4cdf804b82f9fad26004\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"58d81869102f4ca38e24358e8ff88097\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b7248ca790e840b48f806f8fd986bbff\"},{\"@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\"]},\"metadataId\":\"4c8e17d4b4ef4315bf0ba3f9c276893a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"28689b86a6f74d4ba90b4a49ec921cfb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"b6e2ca970e8d46fba3c1379b6e93686e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"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\"]},\"metadataId\":\"111f6d1baf9545e3b9d44cbe1f573f05\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"30eb5fa22bdd46908d135da6574dcafe\"},{\"@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\"]},\"metadataId\":\"9c93370df246465097854d66390d93c9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"63f3e49ef6cf40298fe9
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073319682050, '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[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]},\"metadataId\":\"7f0ff9d746e24594a1aae16773821747\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"c79222ac7a9f485592552053e7356f70\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"fa328ce3549d42ab93d75d11f790d77f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"a52845da80214f8fb95a6405e9d7a34e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"71ced4324fa64dcbb39d4afc9a71dcae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"d69643a34ecd4166b2b3002e6bdb1557\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"09453076b0764a5fac1d8d10cd8e6e4a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"7853994659fb42b58d0cba52a2eaa089\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"30849981910843148cda98c48d03b059\"},{\"@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\"]},\"metadataId\":\"472d7f278b9648b3ad9223cfec54dff6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4704997fffc5405bb6d9c9696214529d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"d037d271c0724e7ca5d01f3b64b855ef\"},{\"@type\":\"cn.stylefeng.rose
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073319682051, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"da8c638a7d4f4d6cb48f897e2b828fd1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"5bcb137da1dd4975ad58508565d8f33b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c507bed04bd54f8aaad29c2d96ef3a88\"},{\"@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\"]},\"metadataId\":\"2b41f269f09e4c89b488b4db711dbf20\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"310427d4e0e24ce0b3854ebca2de47e4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"56bb397e5c5f4e9e9cf63d8c275772f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"d9eff39376b94c36a1a46312023374e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"631b7c160c8e41b2b96b4000fa6f102c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"ee6c4d1c3c40429d8088925e18152e31\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"40120899c8c74781b68a4f4f5140fe5a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"8741f353524d4e0d8080de533442cfaf\"},{\"@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[\"DateVal
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073319682052, '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_SWITCHING_PROTOCOLS\",\"metadataId\":\"d6a468d5a68d4297bc25ca8ad7dd9615\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\",\"metadataId\":\"e7a352ad18124a5f82148653cb726b47\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\",\"metadataId\":\"a802b94f538641ca81f10d9e97a3490e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\",\"metadataId\":\"8ce3630b10b5475893f34cfc80e38895\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\",\"metadataId\":\"19320fee8710440e87df9687e5309529\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\",\"metadataId\":\"ba074a091653462cb1300bf6a82e9bba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\",\"metadataId\":\"588c9b56a2c1409c9816476536155c60\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\",\"metadataId\":\"6296b023812f46608a1c10e9497a0491\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\",\"metadataId\":\"56a10507fa94472eb3186bb4baee2246\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\",\"metadataId\":\"66e706a97e304f9f8a5ffb012d828250\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\",\"metadataId\":\"03757f3ed4e045b1a76037ce67c104f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\",\"metadataId\":\"b6d49c34ecca416db9dc3f6c6955261b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\",\"metadataId\":\"8d6e9c9391f34c2b86abbaa9727d2100\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\",\"metadataId\":\"3bfcb22c92454e1fa0126ca73c2a9432\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\",\"metadataId\":\"675ad7c3dea54b9dad4bc1dda0aa2f8b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\",\"metadataId\":\"ad656e390c2e4d418a1131fa5605335f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\",\"metadataId\":\"66ba735855a345d3a017ff35a2c24cac\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\",\"metadataId\":\"4759145c069e4b9e8da5e068128ae993\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\",\"metadataId\":\"82bbcccbeadf49d8ae55437819716e80\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMeta
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073319682053, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"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\"]},\"metadataId\":\"9acae7d96a91411596e1002d6663edbe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"80d744b46fad4301994b6fe95ca93fc9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"865801ddd41f4255abd9884a1138fbbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"602e6b3938f244d4a73b92b94f7f50f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"b47122c21b104f348fd0fe2e92b3901a\"},{\"@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\"]},\"metadataId\":\"700e856d80984c4d81f13f9db520d9d2\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"c834e8846d464cfab54aadacfd415edd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"2f8c6c2381f94251914045d113144f23\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"967d1bee09c54d92ac191ab8e481a295\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"723d8a844d614a54af8f100dc048ac21\"},{\"@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\",
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073328070658, '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[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]},\"metadataId\":\"9e8bab56e9fa48da91740fdad0a27c81\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"a6e4e7e02bcf4967b7e4e54837eae6b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"288b00abc60b483b936583befd3fbf83\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9be99634dc6f405188e2b8d8c91c0f54\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"38b513f0f44c43ae9c752a2f9ae07eb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"30d7463d7e204825a81a8a56254e669c\"},{\"@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\"]},\"metadataId\":\"b2cc4713ee0a4326b69b93ef11a168a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"eaf71e1095e04732aceff5c1063f1e7c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"ac086cb228fd42979bd215c56770ea02\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"7cb15a4e49f4437790643e58d7018688\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"3caf5e84185d4cbd8ddeb8a27f483b56\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"30e2a573dc544a00b60d8ba5874e2a40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":S
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073328070659, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"255307c040ef4b29848cccbaafd86341\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"positionId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"6b6bf17dfc5f45d2bcb01f76684fc22e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]},\"metadataId\":\"955f98a598de444c80b51382224ed8f7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"b9d92cd820e748b3b31178754f2d93de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"0d8dc67af763472eb4f0503ab405a7bb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"82cad12fd0e54aefa84562d406474d5f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"5f28522bb8854c199393f86cdf9f0027\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"5f9f2db8556648588de65f691e15174f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]},\"metadataId\":\"6bdc2f1e006442e88ca72ab9e58d926c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"orgId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"50feaac5601a48569408e06ec04dda94\"},{\"@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\"]},\"metadataId\":\"19357a1cc51a426098ef15e5a627de14\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"c7067b57e8b54058a2ba9eaf4a923e2a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073328070660, '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[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"realName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b48a6becff98438bbaf7bb9995b0b6a8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]},\"metadataId\":\"8e2fa9c6a5af47259aa23f4134c1da39\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]},\"metadataId\":\"4f9c32bfcdd146e78edba55375daa1ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"22307bfd504f426698340687f569b8f3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"8bba4a81d39244bcb4c69818dc85c06b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\",\"metadataId\":\"96e4ec2e9a394bd5826595d14805c6ad\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"userId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"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\"]},\"metadataId\":\"6b169cd3524c4055ac6a512e51d63b42\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]},\"metadataId\":\"7cd3d294c9784a7e82126a59d0236487\"},{\"@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\"]},\"metadataId\":\"0ab233d312654e74af1416135d698b6e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\",\"metadataId\":\"d9846b05b7f74bbc93b8383016c7e2de\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]},\"metadataId\":\"317e779631944c8f84cca051beaa6da8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264961, '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\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"85eda71aef2c4a2c89d72eaec32d4a3e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"1e5868c558ab4aafaa62328f46f9ea37\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"bc043c08e0ac49028485de6b467c1d89\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"100e5c57ed7c45daae5f7f9b512ee8f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"7cf8a159ae5749c89a7b2075560d2c6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"6738558fcb2d40d6975849ce6093e17e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"67cdd7b1bf0141f18a8347b175b90d93\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"240495dbe33f4b40b4ab4f2ecef37a0c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0fc72fef5c044aa1a6bec9e231257e40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"3fe8b1182db940f287450b929fbafd7a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"0e2e868f25b04ba19bbe74f5470b7b9f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"5b3e5f7778c741f3962c1e9a3b67618b\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264962, '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\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"3a083563a6bf42648de658fef40913ae\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"97e45d6bf0154a0783975ab3db403eb4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"26df2b02226b4829be628ca61206d6ba\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"cc408c25bb264d74ba7f9b9b38fbe76f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"31dad295bb5c4289bc8e2333c4bbb1b4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"a0d8e35c852a4bc799cdf0132af5fa08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"75511e8ce27643608b27b121d388973c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b1297fd5670744b5850aa06e36bab545\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"777696b99b4f476b9b90a9271c86289b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6a44b3b9a6e848978472b7dbd2344c68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"bb81519cafe9425aa130e9bb7d6fc3d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"3856a99964e44765add41c1976e2fa82\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264963, '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\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"b56966dc51fc4cdda380d2243fabd17d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"9ecdaa18382a486f9bae975c136e5efb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"c72c07960e5e4b778c849b5c38eb0abc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d94901929095497f85fc4f2a225f6253\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"07677ef3165349299e0198265b358fbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"85000fd71ded4ac3960669d6f7503d3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"41d8b10bb953456bba0e8caf3acd3d6a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"37cb7003ff4b445aba20d0875ac8d7fe\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"22aab68a13fc49c0a60aae58b41aecb6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"3852258517104bad965fa1575ba24723\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0107ba9c28f64e249baa7fc42775b4f9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"fbb1b87545db416099e6f1a4ff9e1499\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264964, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"16e6562d0d46436da6879ae8d0ca7a3d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"cb775421019a41c0a466984bd228ab68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"30e6973d861f49eeb0b54edf9a8ac78e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"b23c6210476c4aa7b9a408692a22742f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"a169591952c440d182ec83bc55a0e9e8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"d0efb308c9e549a68b00a1317368f353\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"4bb694d0feba43c5b4dcfec0d44fd9cb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"55ef2397c72945f2aaab2c55b7e5a0ed\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"6e7ce512ed73476b923ad0e29e8d3e40\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"458f577b883f4f348b78cd9460b9446a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"7e543f03596b4e7fa953b8f3866fc6dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"d7fe83495dae488dade235e884a38d11\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264965, '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\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"f06392eab3684ba3b516f5d79d26cd1d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"299f32d6d7314ee292b6c1c70c090187\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"5a9c5b50fafc4066813347528718fc65\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ee5d562521db4678b15df621e5515b63\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"ed291053b9dc4a22aac9f99f400f92e7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"99674de6b76346a6a8bb0e7e0b5d28c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f22c56b9e40a46aeae59bcc006ed59b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"d6324cf1671b4b32b4c076e1d815efa5\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0bfd2c0d20d84e848680ccd343f0949c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"9877a34b32004eecb1f8849377848ea5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"4a2b901653024173876f859e1befb25b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"cfbdfb471c264c369c802bc0419476c1\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073332264966, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"configId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4e8d2937ef03411b93f49acaa4f74cf9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]},\"metadataId\":\"a97288af79364055aa5f339b716e8fd7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"00385273708a457b9b41c57190a75ec6\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"metadataId\":\"a26b6a295f384477ac103fc041343ab9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"b169182e127a4261b7dcf664282da9ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\",\"metadataId\":\"ce49a38b8ebb4965b9f207c544b3721f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"11fe23509e50455a96b95fbcabe429fe\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"configValue\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]},\"metadataId\":\"6187e28f26ad4342988979556855ecb1\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fc1bd50d014e4db99a7eba297406db3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"0bbe633877f94e568157fbd292d5785b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e8990e9c46524e73a896db2499bca700\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"62979560c6bc4fbc80d56408a16d7bc5\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073340653570, 'guns', 'guns$dict$get_dict_list', '获取字典列表', 'guns', 'DictController', 'getDictList', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictList', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"5c0ddb1531194b2dae3ccad79b85a4ff\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"98e0ca27ccc047a2b2b8cc4c3df6fbe8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"3524ece36148443abd7c3912187a02c3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"35afcbbcec2c4d66965c61a6f783f850\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"c22d618ee1984a29a5b7d5b43f7709f8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"887aeea1b42341bb92c7cf03fddf5d5c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"cee748240031469fafabc730e420300c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"9df44e12d10d41a4b05098edfb9dd519\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"0ddb3e8894564f1e81ab9e8f1eac728a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"27e0fa96907745fbbccde8dc1a796828\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"20f73d61f46149a1853a53993fd81628\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"abe85d40eb4147658538e880def42d32\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"6c0f6921bc5f43fdbc16e89ed56af0fb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"7168dfa74d9f4a39bd4fcd830e9be739\"},{\"@type\":
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073344847874, 'guns', 'guns$dict$add_dict', '添加字典', 'guns', 'DictController', 'addDict', '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"4ec72a9d855b4bb8be639d886379fd15\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"ac4a44ef54474ec1aa89a1520f4c645c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"9461ab1748b54ca9936e122eff07f1ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"725350c085604b58bf4e5f471b22e697\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"2742a147b9734a09a9abf9dbf31f8565\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f7211bf3f22a42fabc03d4d401b0ee8e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"8d9956ef37d94b79a0e1d326d1bb9083\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"aa8051124b0c461a8836695c37cbf244\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"1fa5e7b5edde4b1f99bb37e590268ee7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"cb03c6e9e725401e999c5c2be71249cc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"a41ac942283c48cca1c46c6760cdcaee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"0f36c7b8260b4098b394e10eda531560\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"b6580c8a14304528b0c5adf3e396b088\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"0a572265870d4f2183e22f75cc04ca88\"},{\"@type\":\"cn
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073344847875, 'guns', 'guns$dict$get_dict_list_exclude_sub', '获取字典列表(排除下级)', 'guns', 'DictController', 'getDictListExcludeSub', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictListExcludeSub', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"b2d21abcc888489fa1e3874f5224d524\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"f087dcdef7bb46fea7447021904bfcf9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"14e36d4f094b4565a25403b5917247dc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"6bfd28ea495140d09c648515fd15d90f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"4894757e883743819d790909935a9d91\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"16905d41e87d4002a474a5a5ebf8ea46\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"ab285731ac7d46f684f88b9711bb8f45\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"e06288604bfb49da8807f4717e728313\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"e6d2015bfbb7421b87741b38308b2b38\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"28e6eb8353a34fd1bcb8bd9eb2381684\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"31d07f1a5ff3469199911f46985c6f8d\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073349042177, 'guns', 'guns$dict$validate_code_available', 'code校验', 'guns', 'DictController', 'validateCodeAvailable', 'Dict', '字典详情管理', '192.168.11.1', '/dict/validateCodeAvailable', 'GET', 'Y', 'N', 'Set[\"validateAvailable\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"e60d9326734740808010c7d360aaec51\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"59767c6eccbb41ff8d6ec4b6dddb616e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"fdf20ada5129485b9ba528cd88e21a50\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"9cc078e85f44415d97611ae744f707ee\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"c4a0611bb95e4c669b2cfb9058503cbd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"9e50ea3150c64c66bea5104c5e5d8abd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"19017ba1135e4006a115f3d2aa4d7708\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"068f29320b99423d8a769b9d526c17d0\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"c74b9a1862ca4975ab0f904c3787bab8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"8a1fc06f45a04df392a4e43d0652b08f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"af6a88b6ccf540a09d67069fbccfea19\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"8cbdcd3ad68f48d9a84834a1add193e6\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"c6c75d4564b74635a59ecc93c9339d3f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073349042178, 'guns', 'guns$dict$get_dict_detail', '获取字典详情', 'guns', 'DictController', 'getDictDetail', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictDetail', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MIN_VALUE\",\"metadataId\":\"c8b42f97c20743178fb397916dc69d2b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5f241ee2a060423099c9d34052f5c354\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"BYTES\",\"metadataId\":\"34c3430c85bc49eab8a68e130e12a85f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"MAX_VALUE\",\"metadataId\":\"8f26141ed2cd4a8eb4b8116b70e3ebf4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"SIZE\",\"metadataId\":\"851ebb5828104c84b4583bc706bef76f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"value\",\"metadataId\":\"14a376addf9e4b4186c04b229cc33b72\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Class\",\"fieldName\":\"TYPE\",\"metadataId\":\"a50bd87d8d814bfabfca1985484f05fa\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"044ff4e686644cac8be1d71b93f0870b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"44682bd36f5a417f82a461cc6441413a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"24e188ca6a49483980ff94237cbc754d\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"412af0f7fb3144a8bbcce66e7b45adde\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073349042179, '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[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"123d8cbebb674dd7bb632627b77dfe93\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"efffc191c1e24d1f9059c1fa025a1ca1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"c41dcd3b352c48bda6e0df3af0593d08\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"9342a99aed504ac79c7be7d08857febd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"fa8fb2e1c20c4a8daec710cadd6d62ea\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"7469e8dd2f3a4de1a2c25e953b1c7c00\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"f8ddc80c73dc4508a7f14efcb3753e96\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"aa9471b785a644c899ba83f202894e7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"f635a0ac87324754afda714d5c191953\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"22064b54d59c428ab2a7694834d661f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"b7165a547a264a459d901336217ee943\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0584f560a72c45ca9253e730157d30d3\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"a897a84edaf84ee68defcac923c21001\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"a505b94ce2164c359fc00570ff690f2d\"},{\"@type\
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073349042180, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"8fed3f2de2454f35a751fbf4e1840e7e\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"a34eebc9be9c4b41bcde6a8c2b210222\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"59e89720f73e4747b05e0a18abec0674\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"7d2f069aec8e446788c6801b14ada040\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"22d6e9f4356e41ddaf13efb75e0bf07f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"472a43833a3a43e2a81466e169bf7daf\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"0c0c6aca2b1242d9930507d2ecf2fc0f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"1e6c8ac7eba048a29af6464edd2ef077\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"4fb8d991f4c840b2845fc7cd47c040be\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"9d2264010c0f4355a64a3c7ae4f1b6f4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"47273b61adb144508a72885e1ca1d65c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"c8d1d658d97d46e19abf7b8ec1567c9c\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\",\"metadataId\":\"ca80f8014e2646a5987175ce22cf6903\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"4486fa792979461c8f838278825c613d\"},{\"
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073357430785, 'guns', 'guns$dict$get_dict_list_page', '获取字典列表', 'guns', 'DictController', 'getDictListPage', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictListPage', 'GET', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"1201967778d54b7398653cb6981d7006\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"495de81bcbef42a8809c2de436d4fe55\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"af3d12661cd04ded9056a144d2e6b5b9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"3e097f06ad6e451ea228e20544666386\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"9f558279fb404186b65bb7a9d85b70fa\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"a9c4bdc38dd0461496161522bfd0e8d5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"008c77aeb5ad41079d7bb4a2be4bbb8f\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"f7482efc2eda4a0e9266dd8450d6c03a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"36ad180d4faa4191865ea3f125704a27\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"eba18be371e74a6b9bf9b858f212bbcc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"a7eac17e2757404189a935a2ca302739\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"014b8e52bdea470c9520697cb7878055\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"d7ae8bdeea6e4f9e9d046462f3f221ca\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"f479ffee8aa245aca98ef5240c91de49\"
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073357430786, '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\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"a47f2fb47af342598a0b27d0ae6dc7b8\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"b7a98134d20b47f79dc420a4a3bfc9b1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"2cbb628855e94e5aa128ff35f2fdcdf9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"bcd25e4fafe2498cb488a3fd4442a997\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"374a9408bb914ca98e9bbad78f450dd3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"b77b189314e04bd7badfaa8fcff95ccd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"067acf6773d248bebdaf4cca135aad28\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"ad58877ee8594b4bbf6c0f441a572603\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"20f5ff7d462042dca18462e672f1eef5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"f59987361ef943798524d9ee4dc64981\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"c9f9c5daf606467ebef6424a0e01c7dd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"05da6da1e2d44d7c9655109270c36688\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"316fa3aca8c541ccb15d5c3ed0e7f80c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"message\",\"metadataId\":\"fdc638fb8
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073361625089, 'guns', 'guns$dict$get_dict_tree_list', '获取树形字典列表', 'guns', 'DictController', 'getDictTreeList', 'Dict', '字典详情管理', '192.168.11.1', '/dict/getDictTreeList', 'GET', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]},\"metadataId\":\"612241280aaf482090dfe688d8aa67fd\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"dictId\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]},\"metadataId\":\"1fc7496f75ae4c73840ea961869911a5\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]},\"metadataId\":\"d321ef11a8284692b08cab480bbedfc4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\",\"metadataId\":\"ad2ee9b70bd6458b984aa58243e028e1\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictPids\",\"metadataId\":\"90a3727c197b4cacbc80046a08b7b073\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictEncode\",\"metadataId\":\"334a538d57314578aa0ec467f4276389\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]},\"metadataId\":\"fad6885f58714edeb6e8ef5e94f01538\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"dictSort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]},\"metadataId\":\"355db37eec144f9f83b628a81b94b38c\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\",\"metadataId\":\"5347220a10d94e5bafc013bb9aec38a4\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]},\"metadataId\":\"b3bede96d9654bbab2d55385e04fbb6b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Long\",\"fieldName\":\"dictParentId\",\"metadataId\":\"5b02586dc259407580d0f7ff20c9dc8b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"dictNamePinYin\",\"metadataId\":\"8ff90262c9f14e4881f1ed8286058c2a\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\",\"metadataId\":\"caf9b9fb57da448c8c030663f478fc92\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"metadataId\":\"bbdc672a14124
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073361625090, 'guns', 'guns$index_view$lock', '锁屏界面', 'guns', 'IndexViewController', 'lock', 'IndexView', '首页相关的界面渲染', '192.168.11.1', '/lock', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"5af71d81216041b39a62dbf08d2dcde7\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"08c749adb7384834b866947ab2871982\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"6f51fdea0988415fa8b5858550fde337\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"bc8b01ebf83f41acba08eab22579b982\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"d07892523501441886d99ef535ce25ee\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073361625091, 'guns', 'guns$index_view$personal', '个人中心界面', 'guns', 'IndexViewController', 'personal', 'IndexView', '首页相关的界面渲染', '192.168.11.1', '/personal', 'GET', 'N', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"a4e2680dac8740329e63a64be808d426\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"697a998adc4e4d0dbc6321c0b0f72a68\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"986d6831364b44e3b0fe018c3d209695\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"a7f36f8368aa4e2494b84ea9b6d0c13a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"d721f5554f294482a5f1f704fb5ca92a\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073365819393, 'guns', 'guns$index_view$theme', '主题切换界面', 'guns', 'IndexViewController', 'theme', 'IndexView', '首页相关的界面渲染', '192.168.11.1', '/theme', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"13e94308e3664936ad8daf35fe6882e3\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"3718c7f822314968aeb8bf22f5ae71d9\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"4c0541317e004ef48c846d4277f01649\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"b456999aa9f545baa9371687c37fd163\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"5bdecd9833ae460ab5c7324574102723\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073365819394, 'guns', 'guns$index_view$change_password', '修改密码界面', 'guns', 'IndexViewController', 'changePassword', 'IndexView', '首页相关的界面渲染', '192.168.11.1', '/changePassword', 'GET', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"4f8487dc909e43fdae3d70b5d3b94abc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"b882e12d9ae6422a8c7d2edde6458459\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"247d4aaa763842e1878485553dabe63a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"9a29170a89e746d58e452b70e0d5375a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"c0cef67875d94fe8b4eb56f20834b2cb\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_resource` VALUES (1343927073365819395, 'guns', 'guns$index_view$index_view', '首页界面', 'guns', 'IndexViewController', 'indexView', 'IndexView', '首页相关的界面渲染', '192.168.11.1', '/', 'GET', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"Comparator\",\"fieldName\":\"CASE_INSENSITIVE_ORDER\",\"metadataId\":\"17850b3c1dca425783b43d37f4d9837b\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"char[]\",\"fieldName\":\"value\",\"metadataId\":\"57149dd7d7764934aff0759e97864e3a\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"int\",\"fieldName\":\"hash\",\"metadataId\":\"acf80042d2e346b499d09e323fa1f659\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\",\"metadataId\":\"2fba4df5ba434978a082c5e34d90f127\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldMetadata\",\"fieldClassType\":\"ObjectStreamField[]\",\"fieldName\":\"serialPersistentFields\",\"metadataId\":\"41e1453a7d464f249c7f9b538e7b67c5\"}]', -1, '2020-12-29 22:29:18', NULL, NULL);
|
2020-12-13 11:14:29 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_role
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_role`;
|
|
|
|
|
CREATE TABLE `sys_role` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`role_id` bigint(20) NOT NULL COMMENT '主键id',
|
|
|
|
|
`role_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称',
|
|
|
|
|
`role_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色编码',
|
|
|
|
|
`role_sort` decimal(10, 2) NOT NULL COMMENT '序号',
|
|
|
|
|
`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-禁用',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-已删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`role_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-14 15:32:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_role
|
|
|
|
|
-- ----------------------------
|
2020-12-17 13:15:49 +00:00
|
|
|
|
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);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_role_data_scope
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_role_data_scope`;
|
|
|
|
|
CREATE TABLE `sys_role_data_scope` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`role_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
|
|
|
|
`organization_id` bigint(20) NOT NULL COMMENT '机构id',
|
2020-12-17 13:15:49 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`role_data_scope_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色数据范围表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-19 15:15:42 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_role_menu
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_role_menu`;
|
|
|
|
|
CREATE TABLE `sys_role_menu` (
|
|
|
|
|
`role_menu_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
|
|
|
|
`menu_id` bigint(20) NOT NULL COMMENT '菜单id',
|
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
|
|
|
|
PRIMARY KEY (`role_menu_id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单关联' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_role_menu
|
|
|
|
|
-- ----------------------------
|
2020-12-29 12:23:55 +00:00
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639301, 1339550467939639303, 1339550467939639301, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639302, 1339550467939639303, 1339550467939639302, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639303, 1339550467939639303, 1339550467939639303, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639304, 1339550467939639303, 1339550467939639304, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639305, 1339550467939639303, 1339550467939639305, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639306, 1339550467939639303, 1339550467939639306, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639307, 1339550467939639303, 1339550467939639307, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639308, 1339550467939639303, 1339550467939639308, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639309, 1339550467939639303, 1339550467939639309, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639310, 1339550467939639303, 1339550467939639310, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639311, 1339550467939639303, 1339550467939639311, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639312, 1339550467939639303, 1339550467939639312, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639313, 1339550467939639303, 1339550467939639313, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639314, 1339550467939639303, 1339550467939639314, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639315, 1339550467939639303, 1339550467939639315, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639316, 1339550467939639303, 1339550467939639316, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639317, 1339550467939639303, 1339550467939639317, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639318, 1339550467939639303, 1339550467939639318, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639319, 1339550467939639303, 1339550467939639319, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639320, 1339550467939639303, 1339550467939639320, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639321, 1339550467939639303, 1339550467939639321, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639322, 1339550467939639303, 1339550467939639322, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639323, 1339550467939639303, 1339550467939639323, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639324, 1339550467939639303, 1339550467939639324, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639325, 1339550467939639303, 1339550467939639325, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639326, 1339550467939639303, 1339550467939639326, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639327, 1339550467939639303, 1339550467939639327, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639328, 1339550467939639303, 1339550467939639328, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639329, 1339550467939639303, 1339550467939639329, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639330, 1339550467939639303, 1339550467939639330, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639331, 1339550467939639303, 1339550467939639331, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639332, 1339550467939639303, 1339550467939639332, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_menu` VALUES (1339550467939639333, 1339550467939639303, 1339550467939639333, NULL, NULL, NULL, NULL);
|
2020-12-19 15:15:42 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_role_resource
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_role_resource`;
|
|
|
|
|
CREATE TABLE `sys_role_resource` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`role_resource_id` bigint(20) NOT NULL COMMENT '主键',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`resource_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
|
2020-12-17 13:15:49 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`role_resource_id`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色资源关联' ROW_FORMAT = Dynamic;
|
2020-12-11 10:18:48 +00:00
|
|
|
|
|
2020-12-14 15:32:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_role_resource
|
|
|
|
|
-- ----------------------------
|
2020-12-26 14:45:51 +00:00
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1341030488239853569, 1341003321565011970, 'guns$dict$delete_dict', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1341030488239853570, 1341003321565011970, 'guns$dict$update_dict_status', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1341030488239853571, 1341003321565011970, 'guns$dict$add_dict_type', '2020-12-21 22:39:18', 1339550467939639299, NULL, NULL);
|
2020-12-29 14:36:33 +00:00
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074108211201, 1339550467939639303, 'guns$dict_type$delete_dict_type', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074108211202, 1339550467939639303, 'guns$dict_type$get_dict_type_page_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074108211203, 1339550467939639303, 'guns$dict_type$update_status', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405506, 1339550467939639303, 'guns$dict_type$get_dict_type_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405507, 1339550467939639303, 'guns$dict_type$validate_code_available', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405508, 1339550467939639303, 'guns$dict_type$update_dict_type', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405509, 1339550467939639303, 'guns$dict_type$add_dict_type', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405510, 1339550467939639303, 'guns$hr_organization$update_status', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405511, 1339550467939639303, 'guns$hr_organization$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405512, 1339550467939639303, 'guns$hr_organization$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405513, 1339550467939639303, 'guns$hr_organization$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405514, 1339550467939639303, 'guns$hr_organization$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405515, 1339550467939639303, 'guns$hr_organization$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405516, 1339550467939639303, 'guns$hr_organization$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405517, 1339550467939639303, 'guns$resource$page_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074112405518, 1339550467939639303, 'guns$resource$get_menu_resource_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794113, 1339550467939639303, 'guns$resource$get_tree', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794114, 1339550467939639303, 'guns$resource$get_resource_detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794115, 1339550467939639303, 'guns$log_manager$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794116, 1339550467939639303, 'guns$log_manager$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794117, 1339550467939639303, 'guns$sys_app$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794118, 1339550467939639303, 'guns$sys_app$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074120794119, 1339550467939639303, 'guns$sys_app$set_as_default', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074124988418, 1339550467939639303, 'guns$sys_app$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074124988419, 1339550467939639303, 'guns$sys_app$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074124988420, 1339550467939639303, 'guns$sys_app$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074124988421, 1339550467939639303, 'guns$sys_app$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182722, 1339550467939639303, 'guns$sys_file_info$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182723, 1339550467939639303, 'guns$sys_file_info$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182724, 1339550467939639303, 'guns$sys_file_info$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182725, 1339550467939639303, 'guns$sys_file_info$download', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182726, 1339550467939639303, 'guns$sys_file_info$upload', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182727, 1339550467939639303, 'guns$sys_file_info$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074129182728, 1339550467939639303, 'guns$sys_file_info$preview', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377026, 1339550467939639303, 'guns$blackboard_view$analyse', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377027, 1339550467939639303, 'guns$blackboard_view$platform', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377028, 1339550467939639303, 'guns$hr_position$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377029, 1339550467939639303, 'guns$hr_position$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377030, 1339550467939639303, 'guns$hr_position$update_status', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377031, 1339550467939639303, 'guns$hr_position$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377032, 1339550467939639303, 'guns$hr_position$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074133377033, 1339550467939639303, 'guns$hr_position$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571330, 1339550467939639303, 'guns$hr_position$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571331, 1339550467939639303, 'guns$login_view$login_action', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571332, 1339550467939639303, 'guns$login_view$logout_page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571333, 1339550467939639303, 'guns$login_view$login', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571334, 1339550467939639303, 'guns$sys_role$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571335, 1339550467939639303, 'guns$sys_role$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571336, 1339550467939639303, 'guns$sys_role$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571337, 1339550467939639303, 'guns$sys_role$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074137571338, 1339550467939639303, 'guns$sys_role$grant_resource', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765633, 1339550467939639303, 'guns$sys_role$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765634, 1339550467939639303, 'guns$sys_role$grant_data', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765635, 1339550467939639303, 'guns$sys_role$get_role_data_scope', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765636, 1339550467939639303, 'guns$sys_role$drop_down', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765637, 1339550467939639303, 'guns$sys_role$get_role_menus', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765638, 1339550467939639303, 'guns$sys_menu$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765639, 1339550467939639303, 'guns$sys_menu$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765640, 1339550467939639303, 'guns$sys_menu$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765641, 1339550467939639303, 'guns$sys_menu$tree_for_grant', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074141765642, 1339550467939639303, 'guns$sys_menu$get_app_menus', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959938, 1339550467939639303, 'guns$sys_menu$tree', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959939, 1339550467939639303, 'guns$sys_menu$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959940, 1339550467939639303, 'guns$sys_menu$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959941, 1339550467939639303, 'guns$sys_user$grant_role', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959942, 1339550467939639303, 'guns$sys_user$update_avatar', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959943, 1339550467939639303, 'guns$sys_user$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074145959944, 1339550467939639303, 'guns$sys_user$selector', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154242, 1339550467939639303, 'guns$sys_user$own_data', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154243, 1339550467939639303, 'guns$sys_user$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154244, 1339550467939639303, 'guns$sys_user$change_status', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154245, 1339550467939639303, 'guns$sys_user$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154246, 1339550467939639303, 'guns$sys_user$grant_data', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154247, 1339550467939639303, 'guns$sys_user$reset_pwd', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154248, 1339550467939639303, 'guns$sys_user$update_pwd', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154249, 1339550467939639303, 'guns$sys_user$export', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154250, 1339550467939639303, 'guns$sys_user$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074150154251, 1339550467939639303, 'guns$sys_user$update_info', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348546, 1339550467939639303, 'guns$sys_user$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348547, 1339550467939639303, 'guns$sys_user$own_role', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348548, 1339550467939639303, 'guns$sys_config$delete', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348549, 1339550467939639303, 'guns$sys_config$edit', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348550, 1339550467939639303, 'guns$sys_config$page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348551, 1339550467939639303, 'guns$sys_config$detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348552, 1339550467939639303, 'guns$sys_config$add', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348553, 1339550467939639303, 'guns$sys_config$list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348554, 1339550467939639303, 'guns$dict$get_dict_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348555, 1339550467939639303, 'guns$dict$add_dict', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348556, 1339550467939639303, 'guns$dict$get_dict_list_exclude_sub', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348557, 1339550467939639303, 'guns$dict$validate_code_available', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348558, 1339550467939639303, 'guns$dict$get_dict_detail', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348559, 1339550467939639303, 'guns$dict$update_dict', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348560, 1339550467939639303, 'guns$dict$delete_dict', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348561, 1339550467939639303, 'guns$dict$get_dict_list_page', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348562, 1339550467939639303, 'guns$dict$update_dict_status', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348563, 1339550467939639303, 'guns$dict$get_dict_tree_list', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074154348564, 1339550467939639303, 'guns$index_view$lock', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074162737154, 1339550467939639303, 'guns$index_view$personal', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074162737155, 1339550467939639303, 'guns$index_view$theme', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074162737156, 1339550467939639303, 'guns$index_view$change_password', '2020-12-29 22:29:18', -1, NULL, NULL);
|
|
|
|
|
INSERT INTO `sys_role_resource` VALUES (1343927074162737157, 1339550467939639303, 'guns$index_view$index_view', '2020-12-29 22:29:18', -1, NULL, NULL);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_sms
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_sms`;
|
|
|
|
|
CREATE TABLE `sys_sms` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`sms_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`phone_number` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '手机号',
|
|
|
|
|
`validate_code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信验证码',
|
|
|
|
|
`template_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '短信模板编号',
|
|
|
|
|
`biz_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '业务id',
|
|
|
|
|
`status_flag` tinyint(4) NULL DEFAULT NULL COMMENT '发送状态:1-未发送,2-发送成功,3-发送失败,4-失效',
|
|
|
|
|
`source` int(11) NULL DEFAULT NULL COMMENT '来源:1-app,2-pc,3-其他',
|
|
|
|
|
`invalid_time` datetime(0) NULL DEFAULT NULL COMMENT '短信失效截止时间',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`sms_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统短信表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_timers
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_timers`;
|
|
|
|
|
CREATE TABLE `sys_timers` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`timer_id` bigint(20) NOT NULL COMMENT '定时器id',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`timer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务名称',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`action_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '执行任务的class的类名(实现了TimerAction接口的类的全称)',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`cron` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '定时任务表达式',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`job_status` int(11) NULL DEFAULT NULL COMMENT '状态:1-运行,2-停止',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注信息',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否删除:Y-被删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`timer_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_user
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_user`;
|
|
|
|
|
CREATE TABLE `sys_user` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`user_id` bigint(20) NOT NULL COMMENT '主键',
|
|
|
|
|
`real_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '姓名',
|
|
|
|
|
`nick_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`account` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号',
|
|
|
|
|
`password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码,加密方式为BCrypt',
|
|
|
|
|
`avatar` bigint(20) NULL DEFAULT NULL COMMENT '头像,存的为文件id',
|
|
|
|
|
`birthday` date NULL DEFAULT NULL COMMENT '生日',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`sex` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '性别:M-男,F-女',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱',
|
|
|
|
|
`phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机',
|
|
|
|
|
`tel` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电话',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`super_admin_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '是否是超级管理员:Y-是,N-否',
|
|
|
|
|
`status_flag` tinyint(4) NOT NULL DEFAULT 1 COMMENT '状态:1-正常,2-冻结',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`last_login_ip` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '最后登陆IP',
|
|
|
|
|
`last_login_time` datetime(0) NULL DEFAULT NULL COMMENT '最后登陆时间',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'N' COMMENT '删除标记:Y-已删除,N-未删除',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`user_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-14 15:32:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_user
|
|
|
|
|
-- ----------------------------
|
2020-12-29 14:36:33 +00:00
|
|
|
|
INSERT INTO `sys_user` VALUES (1339550467939639299, '周星驰', '星爷', 'admin', '$2a$10$N/mL91CVAlcuZmW8/m4Fb..BSsimGqhfwpHtIGH3h8NYI41rXhhIq', 10000, '2020-12-17', 'M', 'sn93@qq.com', NULL, NULL, 'Y', 1, '127.0.0.1', '2020-12-29 22:29:50', 'N', '2020-12-17 20:40:31', -1, '2020-12-29 22:29:50', -1);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_user_data_scope
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_user_data_scope`;
|
|
|
|
|
CREATE TABLE `sys_user_data_scope` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`user_data_scope_id` bigint(20) NOT NULL COMMENT '主键',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`org_id` bigint(20) NOT NULL COMMENT '机构id',
|
2020-12-17 13:15:49 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`user_data_scope_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户数据范围表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-19 15:15:42 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_user_org
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_user_org`;
|
|
|
|
|
CREATE TABLE `sys_user_org` (
|
|
|
|
|
`user_org_id` bigint(20) NOT NULL COMMENT '企业员工主键id',
|
|
|
|
|
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
|
|
|
|
`org_id` bigint(20) NOT NULL COMMENT '所属机构id',
|
|
|
|
|
`position_id` bigint(20) NOT NULL COMMENT '职位id',
|
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '添加时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '添加人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
|
|
|
|
PRIMARY KEY (`user_org_id`) USING BTREE
|
|
|
|
|
) 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);
|
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Table structure for sys_user_role
|
|
|
|
|
-- ----------------------------
|
|
|
|
|
DROP TABLE IF EXISTS `sys_user_role`;
|
|
|
|
|
CREATE TABLE `sys_user_role` (
|
2020-12-19 15:15:42 +00:00
|
|
|
|
`user_role_id` bigint(20) NOT NULL COMMENT '主键',
|
2020-12-11 10:18:48 +00:00
|
|
|
|
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
|
|
|
|
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
2020-12-17 13:15:49 +00:00
|
|
|
|
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
|
|
|
|
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
|
|
|
|
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
|
|
|
|
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
2020-12-19 15:15:42 +00:00
|
|
|
|
PRIMARY KEY (`user_role_id`) USING BTREE
|
2020-12-11 10:18:48 +00:00
|
|
|
|
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户角色表' ROW_FORMAT = Dynamic;
|
|
|
|
|
|
2020-12-14 15:32:18 +00:00
|
|
|
|
-- ----------------------------
|
|
|
|
|
-- Records of sys_user_role
|
|
|
|
|
-- ----------------------------
|
2020-12-17 13:15:49 +00:00
|
|
|
|
INSERT INTO `sys_user_role` VALUES (1339554696976781379, 1339550467939639299, 1339550467939639303, '2020-12-17 20:57:31', NULL, NULL, NULL);
|
2020-12-14 15:32:18 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|