mirror of
				https://github.com/YunaiV/ruoyi-vue-pro.git
				synced 2025-10-31 18:49:06 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- 菜单 SQL
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status, component_name
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表管理', '', 2, 0, 1281,
 | |
|            'ureport-data', '', 'report/ureport/index', 0, 'UReportData'
 | |
|        );
 | |
| 
 | |
| -- 按钮父菜单ID
 | |
| -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
 | |
| SELECT @parentId := LAST_INSERT_ID();
 | |
| 
 | |
| -- 按钮 SQL
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表查询', 'report:ureport-data:query', 3, 1, @parentId,
 | |
|            '', '', '', 0
 | |
|        );
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表创建', 'report:ureport-data:create', 3, 2, @parentId,
 | |
|            '', '', '', 0
 | |
|        );
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表更新', 'report:ureport-data:update', 3, 3, @parentId,
 | |
|            '', '', '', 0
 | |
|        );
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表删除', 'report:ureport-data:delete', 3, 4, @parentId,
 | |
|            '', '', '', 0
 | |
|        );
 | |
| INSERT INTO system_menu(
 | |
|     name, permission, type, sort, parent_id,
 | |
|     path, icon, component, status
 | |
| )
 | |
| VALUES (
 | |
|            'Ureport2报表导出', 'report:ureport-data:export', 3, 5, @parentId,
 | |
|            '', '', '', 0
 | |
|        );
 | |
| 
 | |
| 
 | |
| DROP TABLE IF EXISTS `report_ureport_data`;
 | |
| CREATE TABLE `report_ureport_data`  (
 | |
|     `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
 | |
|     `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文件名称',
 | |
|     `status` tinyint(4) NOT NULL COMMENT '状态',
 | |
|     `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '文件内容',
 | |
|     `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注',
 | |
|     `creator` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '创建者',
 | |
|     `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
 | |
|     `updater` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '更新者',
 | |
|     `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
 | |
|     `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除',
 | |
|     `tenant_id` bigint(20) NOT NULL DEFAULT 0 COMMENT '租户编号',
 | |
|     PRIMARY KEY (`id`) USING BTREE
 | |
| ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'Ureport2报表' ROW_FORMAT = Dynamic;
 | |
| 
 | |
| -- ----------------------------
 | |
| -- Records of report_ureport_data
 | |
| -- ----------------------------
 | |
| INSERT INTO `report_ureport_data` VALUES (11, 'role.ureport.xml', 0, '<?xml version=\"1.0\" encoding=\"UTF-8\"?><ureport><cell expand=\"Down\" name=\"A1\" row=\"1\" col=\"1\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><dataset-value dataset-name=\"role\" aggregate=\"group\" property=\"name\" order=\"none\" mapping-type=\"simple\"></dataset-value></cell><cell expand=\"Down\" name=\"B1\" row=\"1\" col=\"2\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><dataset-value dataset-name=\"role\" aggregate=\"group\" property=\"code\" order=\"none\" mapping-type=\"simple\"></dataset-value></cell><cell expand=\"Down\" name=\"C1\" row=\"1\" col=\"3\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><dataset-value dataset-name=\"role\" aggregate=\"group\" property=\"status\" order=\"none\" mapping-type=\"simple\"></dataset-value></cell><cell expand=\"None\" name=\"D1\" row=\"1\" col=\"4\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"A2\" row=\"2\" col=\"1\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"B2\" row=\"2\" col=\"2\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"C2\" row=\"2\" col=\"3\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"D2\" row=\"2\" col=\"4\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"A3\" row=\"3\" col=\"1\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"B3\" row=\"3\" col=\"2\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"C3\" row=\"3\" col=\"3\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><cell expand=\"None\" name=\"D3\" row=\"3\" col=\"4\"><cell-style font-size=\"10\" align=\"center\" valign=\"middle\"></cell-style><simple-value><![CDATA[]]></simple-value></cell><row row-number=\"1\" height=\"18\"/><row row-number=\"2\" height=\"18\"/><row row-number=\"3\" height=\"18\"/><column col-number=\"1\" width=\"80\"/><column col-number=\"2\" width=\"80\"/><column col-number=\"3\" width=\"80\"/><column col-number=\"4\" width=\"80\"/><datasource name=\"UReportDataSource\" type=\"buildin\"><dataset name=\"role\" type=\"sql\"><sql><![CDATA[select * from system_role]]></sql><field name=\"id\"/><field name=\"name\"/><field name=\"code\"/><field name=\"sort\"/><field name=\"data_scope\"/><field name=\"data_scope_dept_ids\"/><field name=\"status\"/><field name=\"type\"/><field name=\"remark\"/><field name=\"creator\"/><field name=\"create_time\"/><field name=\"updater\"/><field name=\"update_time\"/><field name=\"deleted\"/><field name=\"tenant_id\"/></dataset></datasource><paper type=\"A4\" left-margin=\"90\" right-margin=\"90\"\n    top-margin=\"72\" bottom-margin=\"72\" paging-mode=\"fitpage\" fixrows=\"0\"\n    width=\"595\" height=\"842\" orientation=\"portrait\" html-report-align=\"left\" bg-image=\"\" html-interval-refresh-value=\"0\" column-enabled=\"false\"></paper></ureport>', NULL, NULL, '2023-11-25 22:40:58', NULL, '2023-11-25 23:00:42', b'0', 0);
 |