mirror of https://gitee.com/stylefeng/roses
554 lines
329 KiB
SQL
554 lines
329 KiB
SQL
/*
|
||
Navicat Premium Data Transfer
|
||
|
||
Source Server : local
|
||
Source Server Type : MySQL
|
||
Source Server Version : 50732
|
||
Source Host : localhost:3306
|
||
Source Schema : guns
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 50732
|
||
File Encoding : 65001
|
||
|
||
Date: 13/12/2020 19:13:30
|
||
*/
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_app
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_app`;
|
||
CREATE TABLE `sys_app` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键id',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '应用名称',
|
||
`code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '编码',
|
||
`active_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否默认激活(Y-是,N-否)',
|
||
`status_flag` tinyint(4) NOT NULL COMMENT '状态(字典 1启用 2禁用)',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统应用表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of sys_app
|
||
-- ----------------------------
|
||
INSERT INTO `sys_app` VALUES (1265476890672672821, '系统应用', 'system', 'Y', 1, 'N', '2020-03-25 19:07:00', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
|
||
INSERT INTO `sys_app` VALUES (1265476890672672822, '业务应用', 'business', 'N', 1, 'N', '2020-03-26 08:40:33', 1265476890672672808, '2020-09-17 09:11:21', 1265476890672672808);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_config
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_config`;
|
||
CREATE TABLE `sys_config` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '名称',
|
||
`code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '编码',
|
||
`value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '属性值',
|
||
`sys_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '是否是系统参数(Y-是,N-否)',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注',
|
||
`status` int(2) NULL DEFAULT NULL COMMENT '状态(字典 1正常 2停用)',
|
||
`group_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '常量所属分类的编码,来自于“常量的分类”字典',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'Y' COMMENT '是否删除,Y-被删除,N-未删除',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '参数配置' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of sys_config
|
||
-- ----------------------------
|
||
INSERT INTO `sys_config` VALUES (1, '会话过期时间', 'SYS_SESSION_EXPIRED_SECONDS', '3600', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (2, 'JWT安全码', 'SYS_JWT_SECRET', '1928374650abcdef', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (3, 'JWT过期时间', 'SYS_JWT_TIMEOUT_SECONDS', '259200', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (4, 'Linux本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_LINUX', '/data/home/rays/dev/tmp', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (5, 'Windows本地文件保存路径', 'SYS_LOCAL_FILE_SAVE_PATH_WINDOWS', 'd:/tmp/file', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (6, '不需要过滤的url', 'SYS_NONE_SECURITY_URLS', '/data-hr/login,/login,/swagger-ui.html,/favicon.ico,/swagger-ui/**,/data-hr/swagger-ui/index.html,/data-hr/swagger-ui/**,/data-hr/v3/**,/data-hr/doc/**', 'Y', NULL, 1, 'sys_config', 'Y', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (7, '附件上传方式', 'ATTACHMENT_UPLOAD_METHOD', 'tencent_cloud_file_config', 'Y', '1:MinIO(minlo_file_config) 2:腾讯云(tencent_cloud_file_config) 3:阿里云(alicloud_cloud_file_config) 4:本地(local_file_config)', 1, 'file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (8, 'minlo的BUCKER', 'BUCKER', '1', 'Y', '输入框(minlo的BUCKER)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (9, 'ACCESSKEYID', 'ACCESSKEYID', '3', 'Y', '输入框(minlo的ACCESSKEYID)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (10, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '4', 'Y', '输入框(minlo的ACCESSKEYSECRET)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (11, 'SERVER-ENDPOINT', 'SERVER_ENDPOINT', '5', 'Y', '输入框(minlo的SERVER-ENDPOINT)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (12, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(minlo的本地路径)', 1, 'minlo_file_config', 'N', NULL, NULL, '2020-12-09 16:03:01', 2020);
|
||
INSERT INTO `sys_config` VALUES (13, 'BUCKER', 'BUCKER', '2', 'Y', '输入框(腾讯云的BUCKER)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (14, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(腾讯云的ACCESSKEYID)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (15, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(腾讯云的ACCESSKEYSECRET)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (16, 'SERVER_ENDPOINT', 'SERVER_ENDPOINT', '2', 'Y', '输入框(腾讯云的SERVER_ENDPOINT)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (17, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(腾讯云的本地路径)', 1, 'tencent_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (18, 'ACCESSKEYID', 'ACCESSKEYID', '2', 'Y', '输入框(阿里云的ACCESSKEYID)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (19, 'ACCESSKEYSECRET', 'ACCESSKEYSECRET', '2', 'Y', '输入框(阿里云的ACCESSKEYSECRET)', 1, 'alicloud_cloud_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_config` VALUES (20, '本地路径', 'LOCAL_URL', '2', 'Y', '输入框(本地的本地路径)', 1, 'local_file_config', 'N', NULL, NULL, NULL, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_database_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_database_info`;
|
||
CREATE TABLE `sys_database_info` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`db_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '数据库名称(英文名称)',
|
||
`jdbc_driver` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'jdbc的驱动类型',
|
||
`user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '数据库连接的账号',
|
||
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '数据库连接密码',
|
||
`jdbc_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'jdbc的url',
|
||
`remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注,摘要',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL 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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '数据库信息表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_dict
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_dict`;
|
||
CREATE TABLE `sys_dict` (
|
||
`id` bigint(20) NOT NULL COMMENT '字典id',
|
||
`dict_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典编码',
|
||
`dict_name` 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_short_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称',
|
||
`dict_short_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典简称的编码',
|
||
`parent_dict_id` bigint(20) NULL DEFAULT NULL COMMENT '上级字典的id(如果没有上级字典id,则为-1)',
|
||
`dict_status` int(2) NULL DEFAULT NULL COMMENT '状态(1:启用,2:禁用),参考 StatusEnum',
|
||
`dict_sort` double(11, 5) NULL DEFAULT NULL COMMENT '排序,带小数点',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除,Y-被删除,N-未删除',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典实体' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_dict_type
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_dict_type`;
|
||
CREATE TABLE `sys_dict_type` (
|
||
`id` bigint(20) NOT NULL COMMENT '字典类型id',
|
||
`dict_type_class` int(2) NULL DEFAULT NULL COMMENT '字典类型: 1-业务类型,2-系统类型,参考 DictTypeClassEnum',
|
||
`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_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '字典类型描述',
|
||
`dict_type_status` int(2) NULL DEFAULT NULL COMMENT '字典类型的状态:1-启用,2-禁用,参考 StatusEnum',
|
||
`dict_type_sort` double(11, 5) NULL DEFAULT NULL COMMENT '排序,带小数点',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除,Y-被删除,N-未删除',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '字典类型表,一个字典类型下有多个字典' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_employee
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_employee`;
|
||
CREATE TABLE `sys_employee` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
||
`organization_id` bigint(20) NOT NULL COMMENT '所属机构id',
|
||
`position_ids` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位id集合,用逗号隔开',
|
||
`main_dept_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否是主要部门,Y-是,N-否,一个人只能有一个主要部门',
|
||
`employee_no` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工编号',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '添加时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '添加人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '企业员工表,用户-组织机构的关联' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_file_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_file_info`;
|
||
CREATE TABLE `sys_file_info` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`file_location` int(2) NULL DEFAULT NULL COMMENT '文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地)',
|
||
`file_bucket` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件仓库',
|
||
`file_origin_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件名称(上传时候的文件名)',
|
||
`file_suffix` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件后缀',
|
||
`file_size_kb` bigint(20) NULL DEFAULT NULL COMMENT '文件大小kb',
|
||
`file_size_info` varchar(0) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件大小信息,计算后的',
|
||
`file_object_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储到bucket的名称(文件唯一标识id)',
|
||
`file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '存储路径',
|
||
`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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '文件信息表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_log`;
|
||
CREATE TABLE `sys_log` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志的名称,一般为业务名称',
|
||
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志记录的内容',
|
||
`app_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '服务名称,一般为spring.application.name',
|
||
`request_params` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'http或方法的请求参数体',
|
||
`request_result` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'http或方法的请求结果',
|
||
`date_time` datetime(0) NULL DEFAULT NULL COMMENT '操作发生的时间',
|
||
`server_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前服务器的ip',
|
||
`token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户端请求的token,如果是http请求,并且用户已经登录',
|
||
`user_id` bigint(20) NULL DEFAULT NULL COMMENT '客户端请求的用户id,如果是http请求,并且用户已经登录',
|
||
`client_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户端的ip',
|
||
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '当前用户请求的url',
|
||
`http_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '请求方式(GET POST PUT DELETE)',
|
||
`browser` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '浏览器,如果是http请求',
|
||
`os` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '操作系统,如果是http请求',
|
||
`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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '日志记录' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_menu
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_menu`;
|
||
CREATE TABLE `sys_menu` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`pid` bigint(20) NOT NULL COMMENT '父id,顶级节点的父id是0',
|
||
`pids` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父id集合,中括号包住,逗号分隔',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '名称',
|
||
`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 COMMENT '是否可见(Y-是,N-否)',
|
||
`sort` decimal(11, 2) NOT NULL COMMENT '排序',
|
||
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态(1-启用,2-禁用)',
|
||
`resource_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联的资源的编码',
|
||
`icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标',
|
||
`router` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '路由地址,浏览器显示的URL,例如/menu',
|
||
`component` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '前端组件名',
|
||
`link_open_type` tinyint(4) NULL DEFAULT NULL COMMENT '外部链接打开方式(1内置外链 2新页面外链)',
|
||
`link_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '外部链接地址',
|
||
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL 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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统菜单表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_organization
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_organization`;
|
||
CREATE TABLE `sys_organization` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`pid` bigint(20) NOT NULL COMMENT '父id,顶级节点父id是0',
|
||
`pids` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '父ids',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织名称',
|
||
`code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '组织编码',
|
||
`sort` decimal(11, 2) NOT NULL COMMENT '排序',
|
||
`status_flag` tinyint(4) NOT NULL COMMENT '状态(1-启用,2-禁用)',
|
||
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记(Y-已删除,N-未删除)',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统组织机构表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of sys_organization
|
||
-- ----------------------------
|
||
INSERT INTO `sys_organization` VALUES (1, 0, '[0],', 'Guns总公司', 'guns_level_one', 1.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_organization` VALUES (2, 1, '[0],[1],', '北京分公司', 'guns_beijing', 2.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_organization` VALUES (3, 2, '[0],[1],[2],', '北京东直门分公司', 'guns_beijing_dongzhimen', 3.00, 1, NULL, 'N', NULL, NULL, NULL, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_position
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_position`;
|
||
CREATE TABLE `sys_position` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位名称',
|
||
`code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '职位编码',
|
||
`sort` decimal(11, 2) NOT NULL COMMENT '排序',
|
||
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态(1-启用,2-禁用)',
|
||
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记(Y-已删除,N-未删除)',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `CODE_UNI`(`code`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统职位表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_resource
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_resource`;
|
||
CREATE TABLE `sys_resource` (
|
||
`id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源id',
|
||
`app_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '应用编码',
|
||
`code` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源编码',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源名称',
|
||
`project_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目编码',
|
||
`class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类名称',
|
||
`method_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '方法名称',
|
||
`modular_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块编码',
|
||
`modular_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源模块名称',
|
||
`ip_address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源初始化的服务器ip地址',
|
||
`url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资源url',
|
||
`http_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'http请求方法',
|
||
`menu_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否是方法(Y-页面,N-API接口)',
|
||
`required_login_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要登录(Y-是,N-否)',
|
||
`required_permission_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要鉴权(Y-是,N-否)',
|
||
`validate_groups` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '需要进行参数校验的分组',
|
||
`param_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口参数的字段描述',
|
||
`response_field_descriptions` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接口返回结果的字段描述',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
||
`create_user_dept` bigint(20) NULL DEFAULT NULL COMMENT '创建人部门ID',
|
||
`update_user_dept` bigint(20) NULL DEFAULT NULL COMMENT '更新人部门ID',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资源表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of sys_resource
|
||
-- ----------------------------
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$add_dict_type', 'guns-backend', 'guns-backend$dict$add_dict_type', '添加字典', 'guns', 'DictController', 'addDictType', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/addDict', 'POST', 'N', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$delete_dict', 'guns-backend', 'guns-backend$dict$delete_dict', '删除字典', 'guns', 'DictController', 'deleteDict', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/deleteDict', 'POST', 'N', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_detail', 'guns-backend', 'guns-backend$dict$get_dict_detail', '获取字典详情', 'guns', 'DictController', 'getDictDetail', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictDetail', 'GET', 'N', 'Y', 'N', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_list', 'guns-backend', 'guns-backend$dict$get_dict_list', '获取字典列表', 'guns', 'DictController', 'getDictList', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_list_page', 'guns-backend', 'guns-backend$dict$get_dict_list_page', '获取字典列表', 'guns', 'DictController', 'getDictListPage', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictListPage', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$get_dict_tree_list', 'guns-backend', 'guns-backend$dict$get_dict_tree_list', '获取树形字典列表', 'guns', 'DictController', 'getDictTreeList', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/getDictTreeList', 'POST', 'N', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$update_dict', 'guns-backend', 'guns-backend$dict$update_dict', '修改字典', 'guns', 'DictController', 'updateDict', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/updateDict', 'POST', 'N', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$update_dict_status', 'guns-backend', 'guns-backend$dict$update_dict_status', '更新字典状态', 'guns', 'DictController', 'updateDictStatus', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/updateDictStatus', 'POST', 'N', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict$validate_code_available', 'guns-backend', 'guns-backend$dict$validate_code_available', 'code校验', 'guns', 'DictController', 'validateCodeAvailable', 'Dict', '字典详情管理', '192.168.11.1', '/guns-backend/dict/validateCodeAvailable', 'POST', 'N', 'Y', 'N', 'Set[\"treeList\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictShortCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"validateAvailable\":Set[\"NotBlank\"],\"treeList\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"parentDictId\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$add_dict_type', 'guns-backend', 'guns-backend$dict_type$add_dict_type', '添加字典类型', 'guns', 'DictTypeController', 'addDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/addDictType', 'POST', 'N', 'Y', 'N', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$delete_dict_type', 'guns-backend', 'guns-backend$dict_type$delete_dict_type', '删除字典类型', 'guns', 'DictTypeController', 'deleteDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/deleteDictType', 'POST', 'N', 'Y', 'N', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$get_dict_type_list', 'guns-backend', 'guns-backend$dict_type$get_dict_type_list', '获取字典类型列表', 'guns', 'DictTypeController', 'getDictTypeList', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/getDictTypeList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$get_dict_type_page_list', 'guns-backend', 'guns-backend$dict_type$get_dict_type_page_list', '获取字典类型列表(分页)', 'guns', 'DictTypeController', 'getDictTypePageList', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/getDictTypePageList', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$update_dict_type', 'guns-backend', 'guns-backend$dict_type$update_dict_type', '修改字典类型', 'guns', 'DictTypeController', 'updateDictType', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/updateDictType', 'POST', 'N', 'Y', 'N', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$update_status', 'guns-backend', 'guns-backend$dict_type$update_status', '修改字典类型状态', 'guns', 'DictTypeController', 'updateStatus', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/updateStatus', 'POST', 'N', 'Y', 'N', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$dict_type$validate_code_available', 'guns-backend', 'guns-backend$dict_type$validate_code_available', 'code校验', 'guns', 'DictTypeController', 'validateCodeAvailable', 'DictType', '字典类型管理', '192.168.11.1', '/guns-backend/dictType/validateCodeAvailable', 'POST', 'N', 'Y', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeStatus\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dictTypeClass\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeDesc\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"dictTypeName\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$index$logout_page', 'guns-backend', 'guns-backend$index$logout_page', '首页接口', 'guns', 'IndexController', 'logoutPage', 'Index', '首页接口', '192.168.11.1', '/guns-backend/', 'GET', 'N', 'N', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$login$do_auth', 'guns-backend', 'guns-backend$login$do_auth', '登陆', 'guns', 'LoginController', 'doAuth', 'Login', '登陆登出管理', '192.168.11.1', '/guns-backend/login', 'POST', 'N', 'N', 'N', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"account\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"password\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"rememberMe\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$login$logout_page', 'guns-backend', 'guns-backend$login$logout_page', '登出', 'guns', 'LoginController', 'logoutPage', 'Login', '登陆登出管理', '192.168.11.1', '/guns-backend/logout', 'GET', 'N', 'Y', 'N', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$resource$get_menu_resource_list', 'guns-backend', 'guns-backend$resource$get_menu_resource_list', '获取资源下拉列表', 'guns', 'ResourceController', 'getMenuResourceList', 'Resource', '资源管理', '192.168.11.1', '/guns-backend/resource/getMenuResourceList', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$resource$page_list', 'guns-backend', 'guns-backend$resource$page_list', '获取资源列表', 'guns', 'ResourceController', 'pageList', 'Resource', '资源管理', '192.168.11.1', '/guns-backend/resource/pageList', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"url\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"menuFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"long\",\"fieldName\":\"serialVersionUID\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"appCode\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"resourceName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$add', 'guns-backend', 'guns-backend$sys_app$add', '添加系统应用', 'guns', 'SysAppController', 'add', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$delete', 'guns-backend', 'guns-backend$sys_app$delete', '删除系统应用', 'guns', 'SysAppController', 'delete', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$detail', 'guns-backend', 'guns-backend$sys_app$detail', '查看系统应用', 'guns', 'SysAppController', 'detail', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$edit', 'guns-backend', 'guns-backend$sys_app$edit', '编辑系统应用', 'guns', 'SysAppController', 'edit', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$list', 'guns-backend', 'guns-backend$sys_app$list', '系统应用列表', 'guns', 'SysAppController', 'list', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$page', 'guns-backend', 'guns-backend$sys_app$page', '查询系统应用', 'guns', 'SysAppController', 'page', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_app$set_as_default', 'guns-backend', 'guns-backend$sys_app$set_as_default', '设为默认应用', 'guns', 'SysAppController', 'setAsDefault', 'SysApp', '系统应用', '192.168.11.1', '/guns-backend/sysApp/setAsDefault', 'POST', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"activeFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$add', 'guns-backend', 'guns-backend$sys_config$add', '添加系统参数配置', 'guns', 'SysConfigController', 'add', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$delete', 'guns-backend', 'guns-backend$sys_config$delete', '删除系统参数配置', 'guns', 'SysConfigController', 'delete', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$detail', 'guns-backend', 'guns-backend$sys_config$detail', '查看系统参数配置', 'guns', 'SysConfigController', 'detail', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$edit', 'guns-backend', 'guns-backend$sys_config$edit', '编辑系统参数配置', 'guns', 'SysConfigController', 'edit', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$list', 'guns-backend', 'guns-backend$sys_config$list', '系统参数配置列表', 'guns', 'SysConfigController', 'list', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_config$page', 'guns-backend', 'guns-backend$sys_config$page', '分页查询配置列表', 'guns', 'SysConfigController', 'page', 'SysConfig', '参数配置控制器', '192.168.11.1', '/guns-backend/sysConfig/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"sysFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"value\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"groupCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$delete', 'guns-backend', 'guns-backend$sys_file_info$delete', '删除文件信息', 'guns', 'SysFileInfoController', 'delete', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$detail', 'guns-backend', 'guns-backend$sys_file_info$detail', '查看详情文件信息表', 'guns', 'SysFileInfoController', 'detail', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$download', 'guns-backend', 'guns-backend$sys_file_info$download', '下载文件', 'guns', 'SysFileInfoController', 'download', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/download', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$list', 'guns-backend', 'guns-backend$sys_file_info$list', '获取全部文件信息表', 'guns', 'SysFileInfoController', 'list', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$page', 'guns-backend', 'guns-backend$sys_file_info$page', '分页查询文件信息表', 'guns', 'SysFileInfoController', 'page', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$preview', 'guns-backend', 'guns-backend$sys_file_info$preview', '文件预览', 'guns', 'SysFileInfoController', 'preview', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/preview', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"fileSizeKb\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileSuffix\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileBucket\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"fileLocation\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileObjectName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"filePath\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"fileOriginName\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_file_info$upload', 'guns-backend', 'guns-backend$sys_file_info$upload', '上传文件', 'guns', 'SysFileInfoController', 'upload', 'SysFileInfo', '文件信息相关接口', '192.168.11.1', '/guns-backend/sysFileInfo/upload', 'POST', 'N', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$add', 'guns-backend', 'guns-backend$sys_menu$add', '添加系统菜单', 'guns', 'SysMenuController', 'add', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$delete', 'guns-backend', 'guns-backend$sys_menu$delete', '删除系统菜单', 'guns', 'SysMenuController', 'delete', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$detail', 'guns-backend', 'guns-backend$sys_menu$detail', '查看系统菜单', 'guns', 'SysMenuController', 'detail', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$edit', 'guns-backend', 'guns-backend$sys_menu$edit', '编辑系统菜单', 'guns', 'SysMenuController', 'edit', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$get_app_menus', 'guns-backend', 'guns-backend$sys_menu$get_app_menus', '获取某个应用的菜单', 'guns', 'SysMenuController', 'getAppMenus', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/getAppMenus', 'GET', 'N', 'Y', 'Y', 'Set[\"getAppMenus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$list', 'guns-backend', 'guns-backend$sys_menu$list', '系统菜单列表(树)', 'guns', 'SysMenuController', 'list', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$tree', 'guns-backend', 'guns-backend$sys_menu$tree', '获取系统菜单树,用于新增,编辑时选择上级节点', 'guns', 'SysMenuController', 'tree', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/tree', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_menu$tree_for_grant', 'guns-backend', 'guns-backend$sys_menu$tree_for_grant', '获取系统菜单树,用于给角色授权时选择', 'guns', 'SysMenuController', 'treeForGrant', 'SysMenu', '菜单管理', '192.168.11.1', '/guns-backend/sysMenu/treeForGrant', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"icon\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"component\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"weight\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"router\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"appCode\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"],\"getAppMenus\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"openType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"redirect\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Min\",\"Max\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"type\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Min\",\"Max\",\"NotNull\"],\"edit\":Set[\"Min\",\"Max\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"link\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\",\"FlagValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"visible\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\",\"FlagValue\"],\"edit\":Set[\"NotBlank\",\"FlagValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"permission\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$add', 'guns-backend', 'guns-backend$sys_organization$add', '添加系统组织机构', 'guns', 'SysOrganizationController', 'add', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$delete', 'guns-backend', 'guns-backend$sys_organization$delete', '删除系统组织机构', 'guns', 'SysOrganizationController', 'delete', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$detail', 'guns-backend', 'guns-backend$sys_organization$detail', '查看详情系统组织机构', 'guns', 'SysOrganizationController', 'detail', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$edit', 'guns-backend', 'guns-backend$sys_organization$edit', '编辑系统组织机构', 'guns', 'SysOrganizationController', 'edit', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$list', 'guns-backend', 'guns-backend$sys_organization$list', '获取全部系统组织机构', 'guns', 'SysOrganizationController', 'list', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$page', 'guns-backend', 'guns-backend$sys_organization$page', '分页查询系统组织机构', 'guns', 'SysOrganizationController', 'page', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_organization$update_status', 'guns-backend', 'guns-backend$sys_organization$update_status', '修改组织机构状态', 'guns', 'SysOrganizationController', 'updateStatus', 'SysOrganization', '系统组织机构管理', '192.168.11.1', '/guns-backend/sysOrganization/updateStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"pids\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"pid\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$add', 'guns-backend', 'guns-backend$sys_position$add', '添加系统职位', 'guns', 'SysPositionController', 'add', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$delete', 'guns-backend', 'guns-backend$sys_position$delete', '删除系统职位', 'guns', 'SysPositionController', 'delete', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$detail', 'guns-backend', 'guns-backend$sys_position$detail', '查看详情系统职位', 'guns', 'SysPositionController', 'detail', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$edit', 'guns-backend', 'guns-backend$sys_position$edit', '编辑系统职位', 'guns', 'SysPositionController', 'edit', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$list', 'guns-backend', 'guns-backend$sys_position$list', '获取全部系统职位', 'guns', 'SysPositionController', 'list', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/list', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$page', 'guns-backend', 'guns-backend$sys_position$page', '分页查询系统职位', 'guns', 'SysPositionController', 'page', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_position$update_status', 'guns-backend', 'guns-backend$sys_position$update_status', '更新职位状态', 'guns', 'SysPositionController', 'updateStatus', 'SysPosition', '系统职位管理', '192.168.11.1', '/guns-backend/sysPosition/updateStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"updateStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$add', 'guns-backend', 'guns-backend$sys_role$add', '添加系统', 'guns', 'SysRoleController', 'add', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$delete', 'guns-backend', 'guns-backend$sys_role$delete', '角色删除', 'guns', 'SysRoleController', 'delete', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$detail', 'guns-backend', 'guns-backend$sys_role$detail', '角色查看', 'guns', 'SysRoleController', 'detail', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$drop_down', 'guns-backend', 'guns-backend$sys_role$drop_down', '角色下拉', 'guns', 'SysRoleController', 'dropDown', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/dropDown', 'GET', 'N', 'Y', 'Y', NULL, NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$edit', 'guns-backend', 'guns-backend$sys_role$edit', '角色编辑', 'guns', 'SysRoleController', 'edit', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$get_role_data_scope', 'guns-backend', 'guns-backend$sys_role$get_role_data_scope', '角色拥有数据', 'guns', 'SysRoleController', 'getRoleDataScope', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/getRoleDataScope', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$get_role_menus', 'guns-backend', 'guns-backend$sys_role$get_role_menus', '角色拥有菜单', 'guns', 'SysRoleController', 'getRoleMenus', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/getRoleMenus', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$grant_data', 'guns-backend', 'guns-backend$sys_role$grant_data', '授权数据', 'guns', 'SysRoleController', 'grantData', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/grantData', 'POST', 'N', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$grant_resource', 'guns-backend', 'guns-backend$sys_role$grant_resource', '授权资源', 'guns', 'SysRoleController', 'grantResource', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/grantResource', 'POST', 'N', 'Y', 'Y', 'Set[\"grantResource\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_role$page', 'guns-backend', 'guns-backend$sys_role$page', '查询角色', 'guns', 'SysRoleController', 'page', 'SysRole', '系统角色管理', '192.168.11.1', '/guns-backend/sysRole/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"code\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updateStatus\":Set[\"NotNull\"],\"grantResource\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"remark\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantResourceList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantResource\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"BigDecimal\",\"fieldName\":\"sort\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Null\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"dataScopeType\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Null\"],\"edit\":Set[\"Null\"],\"grantData\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$add', 'guns-backend', 'guns-backend$sys_user$add', '系统用户_增加', 'guns', 'SysUserController', 'add', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/add', 'POST', 'N', 'Y', 'Y', 'Set[\"add\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$change_status', 'guns-backend', 'guns-backend$sys_user$change_status', '系统用户_修改状态', 'guns', 'SysUserController', 'changeStatus', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/changeStatus', 'POST', 'N', 'Y', 'Y', 'Set[\"changeStatus\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$delete', 'guns-backend', 'guns-backend$sys_user$delete', '系统用户_删除', 'guns', 'SysUserController', 'delete', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/delete', 'POST', 'N', 'Y', 'Y', 'Set[\"delete\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$detail', 'guns-backend', 'guns-backend$sys_user$detail', '系统用户_查看', 'guns', 'SysUserController', 'detail', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/detail', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$edit', 'guns-backend', 'guns-backend$sys_user$edit', '系统用户_编辑', 'guns', 'SysUserController', 'edit', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/edit', 'POST', 'N', 'Y', 'Y', 'Set[\"edit\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$export', 'guns-backend', 'guns-backend$sys_user$export', '系统用户_导出', 'guns', 'SysUserController', 'export', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/export', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NO_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PARTIAL_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_URI_TOO_LONG\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CREATED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_ACCEPTABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_IMPLEMENTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_RESET_CONTENT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONTINUE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MULTIPLE_CHOICES\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_USE_PROXY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_TEMPORARY_REDIRECT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_CONFLICT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_INTERNAL_SERVER_ERROR\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NON_AUTHORITATIVE_INFORMATION\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SEE_OTHER\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_OK\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FOUND\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_REQUEST\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNAUTHORIZED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SERVICE_UNAVAILABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_METHOD_NOT_ALLOWED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_LENGTH_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PRECONDITION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_ENTITY_TOO_LARGE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_UNSUPPORTED_MEDIA_TYPE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_NOT_MODIFIED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUEST_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GONE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_BAD_GATEWAY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_HTTP_VERSION_NOT_SUPPORTED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PAYMENT_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_TEMPORARILY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_FORBIDDEN\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_PROXY_AUTHENTICATION_REQUIRED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_REQUESTED_RANGE_NOT_SATISFIABLE\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_GATEWAY_TIMEOUT\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_EXPECTATION_FAILED\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_SWITCHING_PROTOCOLS\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_MOVED_PERMANENTLY\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"int\",\"fieldName\":\"SC_ACCEPTED\"}]', NULL, -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$grant_data', 'guns-backend', 'guns-backend$sys_user$grant_data', '系统用户_授权数据', 'guns', 'SysUserController', 'grantData', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/grantData', 'POST', 'N', 'Y', 'Y', 'Set[\"grantData\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$grant_role', 'guns-backend', 'guns-backend$sys_user$grant_role', '系统用户_授权角色', 'guns', 'SysUserController', 'grantRole', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/grantRole', 'POST', 'N', 'Y', 'Y', 'Set[\"grantRole\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$own_data', 'guns-backend', 'guns-backend$sys_user$own_data', '系统用户_获取用户数据范围列表', 'guns', 'SysUserController', 'ownData', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/getUserDataScope', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$own_role', 'guns-backend', 'guns-backend$sys_user$own_role', '系统用户_获取用户的角色列表', 'guns', 'SysUserController', 'ownRole', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/getUserRoles', 'GET', 'N', 'Y', 'Y', 'Set[\"detail\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$page', 'guns-backend', 'guns-backend$sys_user$page', '系统用户_查询', 'guns', 'SysUserController', 'page', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/page', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$reset_pwd', 'guns-backend', 'guns-backend$sys_user$reset_pwd', '系统用户_重置密码', 'guns', 'SysUserController', 'resetPwd', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/resetPwd', 'POST', 'N', 'Y', 'Y', 'Set[\"resetPwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$selector', 'guns-backend', 'guns-backend$sys_user$selector', '系统用户_选择器', 'guns', 'SysUserController', 'selector', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/selector', 'GET', 'N', 'Y', 'Y', NULL, 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_avatar', 'guns-backend', 'guns-backend$sys_user$update_avatar', '系统用户_修改头像', 'guns', 'SysUserController', 'updateAvatar', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updateAvatar', 'POST', 'N', 'Y', 'Y', 'Set[\"updateAvatar\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_info', 'guns-backend', 'guns-backend$sys_user$update_info', '系统用户_更新信息', 'guns', 'SysUserController', 'updateInfo', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updateInfo', 'POST', 'N', 'Y', 'Y', 'Set[\"updateInfo\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
INSERT INTO `sys_resource` VALUES ('guns-backend$sys_user$update_pwd', 'guns-backend', 'guns-backend$sys_user$update_pwd', '系统用户_修改密码', 'guns', 'SysUserController', 'updatePwd', 'SysUser', '用户管理', '192.168.11.1', '/guns-backend/sysUser/updatePwd', 'POST', 'N', 'Y', 'Y', 'Set[\"updatePwd\"]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"nickName\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"sex\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Email\"],\"fieldClassType\":\"String\",\"fieldName\":\"email\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"Email\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"password\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"TableUniqueValue\",\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"account\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"TableUniqueValue\",\"NotBlank\"],\"edit\":Set[\"TableUniqueValue\",\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"newPassword\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updatePwd\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Size\",\"NotNull\"],\"fieldClassType\":\"String\",\"fieldName\":\"phone\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"Size\",\"NotNull\"],\"updateInfo\":Set[\"Size\",\"NotNull\"],\"edit\":Set[\"Size\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"StatusValue\",\"NotNull\"],\"fieldClassType\":\"Integer\",\"fieldName\":\"statusFlag\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateStatus\":Set[\"StatusValue\",\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"avatar\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateAvatar\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"DateValue\"],\"fieldClassType\":\"String\",\"fieldName\":\"birthday\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"DateValue\"],\"updateInfo\":Set[\"DateValue\"],\"edit\":Set[\"DateValue\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"Long\",\"fieldName\":\"id\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"updateInfo\":Set[\"NotNull\"],\"updateAvatar\":Set[\"NotNull\"],\"resetPwd\":Set[\"NotNull\"],\"stop\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"],\"grantData\":Set[\"NotNull\"],\"updatePwd\":Set[\"NotNull\"],\"start\":Set[\"NotNull\"],\"changeStatus\":Set[\"NotNull\"],\"detail\":Set[\"NotNull\"],\"grantRole\":Set[\"NotNull\"],\"delete\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotBlank\"],\"fieldClassType\":\"String\",\"fieldName\":\"name\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotBlank\"],\"edit\":Set[\"NotBlank\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"Valid\",\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"sysEmployeeRequest\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"add\":Set[\"NotNull\"],\"edit\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantRoleIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantRole\":Set[\"NotNull\"]}},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"tel\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Long\",\"fieldName\":\"organizationId\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"annotations\":Set[\"NotNull\"],\"fieldClassType\":\"List\",\"fieldName\":\"grantOrgIdList\",\"groupAnnotations\":{\"@type\":\"java.util.HashMap\",\"grantData\":Set[\"NotNull\"]}}]', 'Set[{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Boolean\",\"fieldName\":\"success\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"Object\",\"fieldName\":\"data\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"code\"},{\"@type\":\"cn.stylefeng.roses.kernel.resource.api.pojo.resource.FieldDescription\",\"fieldClassType\":\"String\",\"fieldName\":\"message\"}]', -1, '2020-12-13 18:52:37', NULL, NULL, NULL, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_role
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_role`;
|
||
CREATE TABLE `sys_role` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键id',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称',
|
||
`code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色编码',
|
||
`sort` decimal(11, 2) NOT NULL COMMENT '序号',
|
||
`data_scope_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '数据范围类型(字典 10全部数据 20本部门及以下数据 30本部门数据 40仅本人数据 50自定义数据)',
|
||
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态(1-启用,2-禁用)',
|
||
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL 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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_role_data_scope
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_role_data_scope`;
|
||
CREATE TABLE `sys_role_data_scope` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
||
`organization_id` bigint(20) NOT NULL COMMENT '机构id',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色数据范围表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_role_resource
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_role_resource`;
|
||
CREATE TABLE `sys_role_resource` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
||
`resource_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '资源id',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统角色菜单表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_sms
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_sms`;
|
||
CREATE TABLE `sys_sms` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`phone_numbers` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '手机号',
|
||
`validate_code` varchar(8) 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 '短信模板ID',
|
||
`biz_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '回执id',
|
||
`status` int(2) NULL DEFAULT NULL COMMENT '发送状态(字典 0 未发送,1 发送成功,2 发送失败,3 失效)',
|
||
`source` int(5) NULL DEFAULT NULL COMMENT '来源(字典 1 app, 2 pc, 3 其他)',
|
||
`invalid_time` datetime(0) NULL DEFAULT NULL COMMENT '失效时间',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否删除,Y-被删除,N-未删除',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统短信表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_timers
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_timers`;
|
||
CREATE TABLE `sys_timers` (
|
||
`id` bigint(20) NOT NULL COMMENT '定时器id',
|
||
`timer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务名称',
|
||
`action_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '执行任务的class的类名(实现了TimerTaskRunner接口的类的全称)',
|
||
`cron` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '定时任务表达式',
|
||
`job_status` int(2) NULL DEFAULT NULL COMMENT '状态(字典 1运行 2停止)',
|
||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注信息',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL 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 (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '定时任务' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_user
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_user`;
|
||
CREATE TABLE `sys_user` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`account` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号',
|
||
`password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '密码,加密方式为BCrypt',
|
||
`nick_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '昵称',
|
||
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '姓名',
|
||
`avatar` bigint(20) NULL DEFAULT NULL COMMENT '头像,存的为文件id',
|
||
`birthday` date NULL DEFAULT NULL COMMENT '生日',
|
||
`sex` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '性别(M-男,F-女)',
|
||
`email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱',
|
||
`phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机',
|
||
`tel` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电话',
|
||
`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 '最后登陆时间',
|
||
`super_admin_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT '是否是超级管理员,超级管理员可以拥有所有权限(Y-是,N-否)',
|
||
`status_flag` tinyint(4) NOT NULL DEFAULT 0 COMMENT '状态(字典 1正常 2冻结)',
|
||
`del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '删除标记(Y-已删除,N-未删除)',
|
||
`create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
|
||
`create_user` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||
`update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
|
||
`update_user` bigint(20) NULL DEFAULT NULL COMMENT '更新人',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_user_data_scope
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_user_data_scope`;
|
||
CREATE TABLE `sys_user_data_scope` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
||
`organization_id` bigint(20) NOT NULL COMMENT '机构id',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户数据范围表' ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for sys_user_role
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `sys_user_role`;
|
||
CREATE TABLE `sys_user_role` (
|
||
`id` bigint(20) NOT NULL COMMENT '主键',
|
||
`user_id` bigint(20) NOT NULL COMMENT '用户id',
|
||
`role_id` bigint(20) NOT NULL COMMENT '角色id',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统用户角色表' ROW_FORMAT = Dynamic;
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|