dataease-dm/backend/src/main/resources/db/migration/V8__demo.sql

140 lines
110 KiB
MySQL
Raw Normal View History

2021-06-21 16:00:09 +08:00
DROP TABLE IF EXISTS `demo_recent_local_cases`;
CREATE TABLE `demo_recent_local_cases` (
`city` varchar(50) NOT NULL DEFAULT '' COMMENT '城市',
`province` varchar(50) NOT NULL COMMENT '省市区',
`new_add` bigint(13) COMMENT '新增',
`existing` bigint(13) COMMENT '现有',
`risk` varchar(50) NOT NULL COMMENT '区域风险',
PRIMARY KEY (`city`)
)ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('广州', '广东', '8', '106', '部分中高风险');
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('深圳', '广东', '0', '4', '全部低风险');
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('佛山', '广东', '0', '10', '部分中风险');
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('湛江', '广东', '0', '1', '部分中风险');
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('营口', '辽宁', '0', '2', '全部低风险');
INSERT INTO `demo_recent_local_cases` (`city`, `province`, `new_add`, `existing`, `risk`) VALUES ('德宏州', '云南', '0', '2', '全部低风险');
DROP TABLE IF EXISTS `demo_vaccination`;
CREATE TABLE `demo_vaccination` (
`cumulative` DECIMAL(10,2) NOT NULL COMMENT '累计接种',
`new_add` DECIMAL(10,2) COMMENT '较上日新增',
`vaccination_per_100_people` DECIMAL(10,2) NOT NULL COMMENT '每百人接种'
)ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;
INSERT INTO `demo_vaccination` (`cumulative`, `new_add`, `vaccination_per_100_people`) VALUES (7.9, 1625.5, 55.17);
DROP TABLE IF EXISTS `demo_domestic_epidemic`;
CREATE TABLE `demo_domestic_epidemic` (
`statistical_time` varchar(50) NOT NULL DEFAULT '' COMMENT '统计时间',
`cumulative_cure` bigint(13) COMMENT '累计治愈',
`current_diagnosis` bigint(13) COMMENT '现有确诊',
`cumulative_diagnosis` bigint(13) COMMENT '累计确诊',
`asymptomatic_patient` bigint(13) COMMENT '无症状感染者',
`input` bigint(13) COMMENT '境外输入',
`cumulative_death` bigint(13) COMMENT '累计死亡'
)ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;
INSERT INTO `demo_domestic_epidemic` (`statistical_time`, `cumulative_cure`, `current_diagnosis`, `cumulative_diagnosis`, `asymptomatic_patient`, `input` , `cumulative_death`) VALUES ('2021-06-09 10:24:27 ', 99071, 10740, 114929, 361, 6173, 5154);
DROP TABLE IF EXISTS `demo_new_trend_of_diagnosis`;
CREATE TABLE `demo_new_trend_of_diagnosis` (
`date` varchar(50) NOT NULL DEFAULT '' COMMENT '日期',
`new_diagnosis` bigint(13) COMMENT '新增确诊',
`current_diagnosis` bigint(13) COMMENT '现有确诊'
)ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-8', 22, 499);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-9', 13, 485);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5/10', 33, 505);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5/11', 28, 506);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5/12', 32, 512);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5/13', 35, 523);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5/14', 49, 542);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-15', 206, 727);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-16', 236, 935);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-17', 358, 1262);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-18', 258, 1497);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-19', 286, 1759);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-20', 317, 2097);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-21', 325, 2365);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-22', 743, 3098);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-23', 480, 3561);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-24', 612, 4143);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-25', 554, 4675);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-26', 655, 5036);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-27', 677, 5948);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-28', 570, 6480);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-29', 503, 6951);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-30', 381, 7303);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-5-31', 378, 7652);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-1', 362, 7983);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-2', 571, 8535);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-3', 610, 9110);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-4', 497, 9674);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-5', 541, 10049);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-6', 368, 10372);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-7', 233, 10552);
INSERT INTO `demo_new_trend_of_diagnosis` (`date`, `new_diagnosis`, `current_diagnosis`) VALUES ('2021-6-8', 232, 10740);
INSERT INTO `datasource` (`id`, `name`, `desc`, `type`, `configuration`, `create_time`, `update_time`, `create_by`) VALUES ('76026997-94f9-4a35-96ca-151084638969', 'demo', 'demo', 'mysql', 'ROM9ccqPioJ1SCj70u/B+KCVPfwPyNbqgIgkguMQEbjrQLbGyQLfqnQdH64Nyb+LyW+vDZzSK0SJFxUGAwGxvUtKnmpwinKRZ9OcFiQB10Nq5r/DH4+2F9/dKBs2lQgrwNj5w6MyhRswSKzkfCw5fNndcN2ad990JjOQLYz2Y5M=', '1624247414781', '1624247414781', 'admin');
INSERT INTO `dataset_group` (`id`, `name`, `pid`, `level`, `type`, `create_by`, `create_time`) VALUES ('f0728785-cc9a-4c9f-94ca-5bb106534916', '新冠肺炎疫情数据', '0', '0', 'group', 'admin', '1623211708679');
INSERT INTO `dataset_group` (`id`, `name`, `pid`, `level`, `type`, `create_by`, `create_time`) VALUES ('873c9833-e79d-4004-b809-a81fa83d3e7b', '国内疫情', 'f0728785-cc9a-4c9f-94ca-5bb106534916', '1', 'group', 'admin', '1623211723216');
INSERT INTO `dataset_table` (`id`, `name`, `scene_id`, `data_source_id`, `type`, `mode`, `info`, `create_by`, `create_time`) VALUES ('10de6211-3104-461f-a5e4-c01c997dcfea', '本土新增确诊趋势_demo', '873c9833-e79d-4004-b809-a81fa83d3e7b', '76026997-94f9-4a35-96ca-151084638969', 'db', '0', '{\"table\":\"demo_new_trend_of_diagnosis\"}', 'admin', '1624247848737');
INSERT INTO `dataset_table` (`id`, `name`, `scene_id`, `data_source_id`, `type`, `mode`, `info`, `create_by`, `create_time`) VALUES ('23601ac8-d723-45f9-a84f-b1799982422d', '国内疫情_demo', '873c9833-e79d-4004-b809-a81fa83d3e7b', '76026997-94f9-4a35-96ca-151084638969', 'db', '0', '{\"table\":\"demo_domestic_epidemic\"}', 'admin', '1624247848685');
INSERT INTO `dataset_table` (`id`, `name`, `scene_id`, `data_source_id`, `type`, `mode`, `info`, `create_by`, `create_time`) VALUES ('d54b3270-b8d3-49cb-95e5-1467467d6431', '近期31省市区本土病例_demo', '873c9833-e79d-4004-b809-a81fa83d3e7b', '76026997-94f9-4a35-96ca-151084638969', 'db', '0', '{\"table\":\"demo_recent_local_cases\"}', 'admin', '1624247848780');
INSERT INTO `dataset_table` (`id`, `name`, `scene_id`, `data_source_id`, `type`, `mode`, `info`, `create_by`, `create_time`) VALUES ('d85a6ff8-1683-4e87-9fe7-3f393ad8a83c', '国内新冠疫苗接种追踪_demo', '873c9833-e79d-4004-b809-a81fa83d3e7b', '76026997-94f9-4a35-96ca-151084638969', 'db', '0', '{\"table\":\"demo_vaccination\"}', 'admin', '1624247848593');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('7d179f54-fb48-4e44-b316-f333e5e8e3bf', '10de6211-3104-461f-a5e4-c01c997dcfea', 'new_diagnosis', '新增确诊', 'C_a04c95358dd94af700a379bd5e55b200', 'BIGINT', '19', '2', '2', '1', '1', '1624247848759');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('8a4f319e-82fc-4368-9a96-5f233d3f302a', '10de6211-3104-461f-a5e4-c01c997dcfea', 'date', '日期', 'C_5fc732311905cb27e82d67f4f6511f7f', 'VARCHAR', '50', '0', '0', '1', '0', '1624247848759');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('e8be862b-2802-43b1-8eea-138fec66693c', '10de6211-3104-461f-a5e4-c01c997dcfea', 'current_diagnosis', '现有确诊', 'C_c3bd1b57fc3cd1b1462bae6430e32b01', 'BIGINT', '19', '2', '2', '1', '2', '1624247848759');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('1297d9a6-ee21-4f49-b0fa-10c9274652de', '23601ac8-d723-45f9-a84f-b1799982422d', 'cumulative_death', '累计死亡', 'C_3f83e60853692a995186ef663ef4b9c4', 'BIGINT', '19', '2', '2', '1', '6', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('37b583fc-3227-4aef-a8d6-3337c1bb5816', '23601ac8-d723-45f9-a84f-b1799982422d', 'cumulative_cure', '累计治愈', 'C_e2e1c18cff9edab2282b9ac6f3428ada', 'BIGINT', '19', '2', '2', '1', '1', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('3d664864-6575-4869-b452-4aba27c5da37', '23601ac8-d723-45f9-a84f-b1799982422d', 'input', '境外输入', 'C_a43c1b0aa53a0c908810c06ab1ff3967', 'BIGINT', '19', '2', '2', '1', '5', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('b4cb38fb-521f-4b41-8856-3a5873a81e1c', '23601ac8-d723-45f9-a84f-b1799982422d', 'current_diagnosis', '现有确诊', 'C_c3bd1b57fc3cd1b1462bae6430e32b01', 'BIGINT', '19', '2', '2', '1', '2', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('c016ec91-7490-498b-8d33-14aee11da501', '23601ac8-d723-45f9-a84f-b1799982422d', 'statistical_time', '统计时间', 'C_e52bb875b9521bcc59a6d571c612f9d6', 'VARCHAR', '50', '0', '0', '1', '0', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('cb9e9310-1c25-4688-bbfe-5c96ebaa2912', '23601ac8-d723-45f9-a84f-b1799982422d', 'asymptomatic_patient', '无症状感染者', 'C_483c6dc1f3689e52364d81ac789bdbe8', 'BIGINT', '19', '2', '2', '1', '4', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('fba80c10-fe67-4dbe-8983-8367461c4c8b', '23601ac8-d723-45f9-a84f-b1799982422d', 'cumulative_diagnosis', '累计确诊', 'C_497ca676e1e4729b00c9d1cb070f0834', 'BIGINT', '19', '2', '2', '1', '3', '1624247848706');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('3a4112a5-1e1c-4333-b9ca-df9ab2983a59', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'existing', '现有', 'C_f4e0ac58eb46d88efc451c164db3b837', 'BIGINT', '19', '2', '2', '1', '3', '1624247848804');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('4045a206-0a59-4a12-9920-9c0426f822c8', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'new_add', '新增', 'C_65e7f9dc5f5e7904f56be638600763ae', 'BIGINT', '19', '2', '2', '1', '2', '1624247848804');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('64bad760-b320-4f61-ad2d-d065b1cb70b2', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'city', '城市', 'C_4ed5d2eaed1a1fadcc41ad1d58ed603e', 'VARCHAR', '50', '0', '0', '1', '0', '1624247848804');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('a2a86354-6f3e-41e6-bbac-e4950d9b5370', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'province', '省市区', 'C_53aad639aca4b5c010927cf610c3ff9c', 'VARCHAR', '50', '0', '0', '1', '1', '1624247848804');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('c92ce162-9bd7-4c46-9fc1-49fa30c348d9', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'risk', '区域风险', 'C_c6142b27f1385bc163ffe7f4ebfc52ac', 'VARCHAR', '50', '0', '0', '1', '4', '1624247848804');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('59c03fe2-c026-4f61-b0eb-8aafcc7144c1', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'cumulative', '累计接种', 'C_dd259fe1898bfef8be8771aca900f7ea', 'DECIMAL', '10', '3', '3', '1', '0', '1624247848620');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('a1c180b0-8de3-447d-bd31-1359b92b74ce', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'vaccination_per_100_people', '每百人接种', 'C_26b2c7f3b8b45ddc449f4f16c39fa6b5', 'DECIMAL', '10', '3', '3', '1', '2', '1624247848620');
INSERT INTO `dataset_table_field` (`id`, `table_id`, `origin_name`, `name`, `dataease_name`, `type`, `size`, `de_type`, `de_extract_type`, `checked`, `column_index`, `last_sync_time`) VALUES ('f3c5d452-8358-4669-bd7d-ce410b957556', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'new_add', '较上日新增', 'C_65e7f9dc5f5e7904f56be638600763ae', 'DECIMAL', '10', '3', '3', '1', '1', '1624247848620');
INSERT INTO `chart_group` (`id`, `name`, `pid`, `level`, `type`, `create_by`, `create_time`) VALUES ('5a8e8b0a-2f64-4d1b-aac1-d284b2b8436f', '新冠疫情', '0', '0', 'group', 'admin', '1623212582950');
INSERT INTO `chart_group` (`id`, `name`, `pid`, `level`, `type`, `create_by`, `create_time`) VALUES ('4de97755-5d5a-4fe0-9af0-27601f967787', '国内疫情分析', '5a8e8b0a-2f64-4d1b-aac1-d284b2b8436f', '1', 'group', 'admin', '1623212597088');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('03410ec1-1bd0-4afd-ac37-9306e00e328c', '累计死亡', '4de97755-5d5a-4fe0-9af0-27601f967787', '23601ac8-d723-45f9-a84f-b1799982422d', 'text', '累计死亡', '[]', '[{\"id\":\"1297d9a6-ee21-4f49-b0fa-10c9274652de\",\"tableId\":\"23601ac8-d723-45f9-a84f-b1799982422d\",\"originName\":\"cumulative_death\",\"name\":\"累计死亡\",\"dataeaseName\":\"C_3f83e60853692a995186ef663ef4b9c4\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":6,\"lastSyncTime\":1624247848706,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#969696\",\"quotaColor\":\"#a1b4cc\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"累计死亡\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249965605', '1624252925726', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('0d8bc9d7-b76b-4ec5-96e7-0df1c3426205', '现有确诊', '4de97755-5d5a-4fe0-9af0-27601f967787', '10de6211-3104-461f-a5e4-c01c997dcfea', 'text', '现有确诊', '[]', '[{\"id\":\"e8be862b-2802-43b1-8eea-138fec66693c\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"current_diagnosis\",\"name\":\"现有确诊\",\"dataeaseName\":\"C_c3bd1b57fc3cd1b1462bae6430e32b01\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":2,\"lastSyncTime\":1624247848759,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#696969\",\"quotaColor\":\"#0071be\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"现有确诊\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249438271', '1624249484520', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('1aad98e5-3f99-4c0a-aa75-ca9236de0f09', '境外输入', '4de97755-5d5a-4fe0-9af0-27601f967787', '23601ac8-d723-45f9-a84f-b1799982422d', 'text', '境外输入', '[]', '[{\"id\":\"3d664864-6575-4869-b452-4aba27c5da37\",\"tableId\":\"23601ac8-d723-45f9-a84f-b1799982422d\",\"originName\":\"input\",\"name\":\"境外输入\",\"dataeaseName\":\"C_a43c1b0aa53a0c908810c06ab1ff3967\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":5,\"lastSyncTime\":1624247848706,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#696969\",\"quotaColor\":\"#0071be\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"境外输入\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249147884', '1624252914434', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('2f9bf4d5-b1d3-4cac-9df2-2c8827d65bbf', '全国新增确诊趋势', '4de97755-5d5a-4fe0-9af0-27601f967787', '10de6211-3104-461f-a5e4-c01c997dcfea', 'line', '全国新增确诊趋势', '[{\"id\":\"8a4f319e-82fc-4368-9a96-5f233d3f302a\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"date\",\"name\":\"日期\",\"dataeaseName\":\"C_5fc732311905cb27e82d67f4f6511f7f\",\"type\":\"VARCHAR\",\"size\":50,\"deType\":0,\"deExtractType\":0,\"checked\":true,\"columnIndex\":0,\"lastSyncTime\":1624247848759,\"dateStyle\":\"y_M_d\",\"datePattern\":\"date_sub\",\"sort\":\"none\",\"filter\":[]}]', '[{\"id\":\"7d179f54-fb48-4e44-b316-f333e5e8e3bf\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"new_diagnosis\",\"name\":\"新增确诊\",\"dataeaseName\":\"C_a04c95358dd94af700a379bd5e55b200\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":1,\"lastSyncTime\":1624247848759,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"retro\",\"colors\":[\"#0780cf\",\"#765005\",\"#fa6d1d\",\"#0e2c82\",\"#b6b51f\",\"#da1f18\",\"#701866\",\"#f47a75\",\"#009db2\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":true,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":18,\"quotaFontSize\":18,\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":true,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"全国新增确诊趋势\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624248675969', '1624248840182', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('3a5e4081-4cd5-427f-bd3a-ff7815efaf25', '无症状感染者', '4de97755-5d5a-4fe0-9af0-27601f967787', '23601ac8-d723-45f9-a84f-b1799982422d', 'text', '无症状感染者', '[]', '[{\"id\":\"cb9e9310-1c25-4688-bbfe-5c96ebaa2912\",\"tableId\":\"23601ac8-d723-45f9-a84f-b1799982422d\",\"originName\":\"asymptomatic_patient\",\"name\":\"无症状感染者\",\"dataeaseName\":\"C_483c6dc1f3689e52364d81ac789bdbe8\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":4,\"lastSyncTime\":1624247848706,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#696969\",\"quotaColor\":\"#0071be\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"无症状感染者\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249361370', '1624252918488', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('57760693-15db-4de9-9170-55ee7d1eb0eb', '病例数TOP5城市', '4de97755-5d5a-4fe0-9af0-27601f967787', 'd54b3270-b8d3-49cb-95e5-1467467d6431', 'bar-horizontal', '病例数TOP5城市', '[{\"id\":\"a2a86354-6f3e-41e6-bbac-e4950d9b5370\",\"tableId\":\"d54b3270-b8d3-49cb-95e5-1467467d6431\",\"originName\":\"province\",\"name\":\"省市区\",\"dataeaseName\":\"C_53aad639aca4b5c010927cf610c3ff9c\",\"type\":\"VARCHAR\",\"size\":50,\"deType\":0,\"deExtractType\":0,\"checked\":true,\"columnIndex\":1,\"lastSyncTime\":1624247848804,\"dateStyle\":\"y_M_d\",\"datePattern\":\"date_sub\",\"sort\":\"none\",\"filter\":[]},{\"id\":\"64bad760-b320-4f61-ad2d-d065b1cb70b2\",\"tableId\":\"d54b3270-b8d3-49cb-95e5-1467467d6431\",\"originName\":\"city\",\"name\":\"城市\",\"dataeaseName\":\"C_4ed5d2eaed1a1fadcc41ad1d58ed603e\",\"type\":\"VARCHAR\",\"size\":50,\"deType\":0,\"deExtractType\":0,\"checked\":true,\"columnIndex\":0,\"lastSyncTime\":1624247848804,\"dateStyle\":\"y_M_d\",\"datePattern\":\"date_sub\",\"sort\":\"none\",\"filter\":[]}]', '[{\"id\":\"3a4112a5-1e1c-4333-b9ca-df9ab2983a59\",\"tableId\":\"d54b3270-b8d3-49cb-95e5-1467467d6431\",\"originName\":\"existing\",\"name\":\"现有\",\"dataeaseName\":\"C_f4e0ac58eb46d88efc451c164db3b837\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":3,\"lastSyncTime\":1624247848804,\"summary\":\"sum\",\"sort\":\"asc\",\"filter\":[]}]', '{\"color\":{\"value\":\"retro\",\"colors\":[\"#0780cf\",\"#765005\",\"#fa6d1d\",\"#0e2c82\",\"#b6b51f\",\"#da1f18\",\"#701866\",\"#f47a75\",\"#009db2\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":18,\"quotaFontSize\":18,\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":true,\"position\":\"right\",\"color\":\"#909399\",\"fontSize\":\"12\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":true,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249684417', '1624249790735', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('5f694f25-b0fd-45f6-acbd-9dd338e196ce', '疫苗接种', '4de97755-5d5a-4fe0-9af0-27601f967787', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'gauge', '疫苗接种', '[]', '[{\"id\":\"a1c180b0-8de3-447d-bd31-1359b92b74ce\",\"tableId\":\"d85a6ff8-1683-4e87-9fe7-3f393ad8a83c\",\"originName\":\"vaccination_per_100_people\",\"name\":\"疫苗接种率\",\"dataeaseName\":\"C_26b2c7f3b8b45ddc449f4f16c39fa6b5\",\"type\":\"DECIMAL\",\"size\":10,\"deType\":3,\"deExtractType\":3,\"checked\":true,\"columnIndex\":2,\"lastSyncTime\":1624247848620,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[],\"index\":0,\"renameType\":\"quota\"}]', '{\"color\":{\"value\":\"retro\",\"colors\":[\"#0780cf\",\"#765005\",\"#fa6d1d\",\"#0e2c82\",\"#b6b51f\",\"#da1f18\",\"#701866\",\"#f47a75\",\"#009db2\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":18,\"quotaFontSize\":18,\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":true,\"position\":\"top\",\"color\":\"#e2534d\",\"fontSize\":\"14\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"疫苗接种\"},\"legend\":{\"show\":false,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249520603', '1624249658182', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('93a58625-3730-4a07-99bd-75f174ff428d', '全国现有确诊趋势', '4de97755-5d5a-4fe0-9af0-27601f967787', '10de6211-3104-461f-a5e4-c01c997dcfea', 'line', '全国现有确诊趋势', '[{\"id\":\"8a4f319e-82fc-4368-9a96-5f233d3f302a\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"date\",\"name\":\"日期\",\"dataeaseName\":\"C_5fc732311905cb27e82d67f4f6511f7f\",\"type\":\"VARCHAR\",\"size\":50,\"deType\":0,\"deExtractType\":0,\"checked\":true,\"columnIndex\":0,\"lastSyncTime\":1624247848759,\"dateStyle\":\"y_M_d\",\"datePattern\":\"date_sub\",\"sort\":\"none\",\"filter\":[]}]', '[{\"id\":\"e8be862b-2802-43b1-8eea-138fec66693c\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"current_diagnosis\",\"name\":\"现有确诊\",\"dataeaseName\":\"C_c3bd1b57fc3cd1b1462bae6430e32b01\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":2,\"lastSyncTime\":1624247848759,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"retro\",\"colors\":[\"#0780cf\",\"#765005\",\"#fa6d1d\",\"#0e2c82\",\"#b6b51f\",\"#da1f18\",\"#701866\",\"#f47a75\",\"#009db2\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"none\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":18,\"quotaFontSize\":18,\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":true,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624248876997', '1624248945385', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('ce33ad2c-3915-41cc-8d86-55405456ed05', '累计接种', '4de97755-5d5a-4fe0-9af0-27601f967787', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'text', '累计接种', '[]', '[{\"id\":\"59c03fe2-c026-4f61-b0eb-8aafcc7144c1\",\"tableId\":\"d85a6ff8-1683-4e87-9fe7-3f393ad8a83c\",\"originName\":\"cumulative\",\"name\":\"累计接种\",\"dataeaseName\":\"C_dd259fe1898bfef8be8771aca900f7ea\",\"type\":\"DECIMAL\",\"size\":10,\"deType\":3,\"deExtractType\":3,\"checked\":true,\"columnIndex\":0,\"lastSyncTime\":1624247848620,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#00af57\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"30\",\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":true,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249858884', '1624252923879', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('de923e69-df6b-4f61-9391-da2987f77b51', '较上日新增', '4de97755-5d5a-4fe0-9af0-27601f967787', 'd85a6ff8-1683-4e87-9fe7-3f393ad8a83c', 'text', '较上日新增', '[]', '[{\"id\":\"f3c5d452-8358-4669-bd7d-ce410b957556\",\"tableId\":\"d85a6ff8-1683-4e87-9fe7-3f393ad8a83c\",\"originName\":\"new_add\",\"name\":\"较上日新增\",\"dataeaseName\":\"C_65e7f9dc5f5e7904f56be638600763ae\",\"type\":\"DECIMAL\",\"size\":10,\"deType\":3,\"deExtractType\":3,\"checked\":true,\"columnIndex\":1,\"lastSyncTime\":1624247848620,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#00afee\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"32\",\"spaceSplit\":10,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"较上日新增\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624250284730', '1624252930099', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('eaa8947b-d9e7-4ca4-ba65-08965dfa620c', '新增确诊', '4de97755-5d5a-4fe0-9af0-27601f967787', '10de6211-3104-461f-a5e4-c01c997dcfea', 'text', '新增确诊', '[]', '[{\"id\":\"7d179f54-fb48-4e44-b316-f333e5e8e3bf\",\"tableId\":\"10de6211-3104-461f-a5e4-c01c997dcfea\",\"originName\":\"new_diagnosis\",\"name\":\"新增确诊\",\"dataeaseName\":\"C_a04c95358dd94af700a379bd5e55b200\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":1,\"lastSyncTime\":1624247848759,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#696969\",\"quotaColor\":\"#0071be\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"新增确诊\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624249288236', '1624252916490', 'view');
INSERT INTO `chart_view` (`id`, `name`, `scene_id`, `table_id`, `type`, `title`, `x_axis`, `y_axis`, `custom_attr`, `custom_style`, `custom_filter`, `create_by`, `create_time`, `update_time`, `style_priority`) VALUES ('9ecb6827-f47f-4b19-b788-81a6b55940af', '累计治愈', '4de97755-5d5a-4fe0-9af0-27601f967787', '23601ac8-d723-45f9-a84f-b1799982422d', 'text', '累计治愈', '[]', '[{\"id\":\"37b583fc-3227-4aef-a8d6-3337c1bb5816\",\"tableId\":\"23601ac8-d723-45f9-a84f-b1799982422d\",\"originName\":\"cumulative_cure\",\"name\":\"累计治愈\",\"dataeaseName\":\"C_e2e1c18cff9edab2282b9ac6f3428ada\",\"type\":\"BIGINT\",\"size\":19,\"deType\":2,\"deExtractType\":2,\"checked\":true,\"columnIndex\":1,\"lastSyncTime\":1624247848706,\"summary\":\"sum\",\"sort\":\"none\",\"filter\":[]}]', '{\"color\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#c4c4c4\",\"quotaColor\":\"#a1b4cc\"},\"tableColor\":{\"value\":\"default\",\"colors\":[\"#5470c6\",\"#91cc75\",\"#fac858\",\"#ee6666\",\"#73c0de\",\"#3ba272\",\"#fc8452\",\"#9a60b4\",\"#ea7ccc\"],\"alpha\":100,\"tableHeaderBgColor\":\"#4e81bb\",\"tableItemBgColor\":\"#c6d9f0\",\"tableFontColor\":\"#000000\",\"tableStripe\":true,\"dimensionColor\":\"#000000\",\"quotaColor\":\"#000000\"},\"size\":{\"barDefault\":true,\"barWidth\":40,\"barGap\":0.4,\"lineWidth\":1,\"lineType\":\"solid\",\"lineSymbol\":\"emptyCircle\",\"lineSymbolSize\":4,\"lineSmooth\":false,\"lineArea\":false,\"pieInnerRadius\":0,\"pieOuterRadius\":60,\"pieRoseType\":\"radius\",\"pieRoseRadius\":5,\"funnelWidth\":80,\"radarShape\":\"polygon\",\"tableTitleFontSize\":12,\"tableItemFontSize\":12,\"gaugeMin\":0,\"gaugeMax\":100,\"gaugeStartAngle\":225,\"gaugeEndAngle\":-45,\"dimensionFontSize\":\"14\",\"quotaFontSize\":\"26\",\"spaceSplit\":5,\"dimensionShow\":true,\"quotaShow\":true},\"label\":{\"show\":false,\"position\":\"top\",\"color\":\"#909399\",\"fontSize\":\"10\",\"formatter\":\"{c}\",\"gaugeFormatter\":\"{value}\"},\"tooltip\":{\"show\":true,\"trigger\":\"item\",\"confine\":true,\"textStyle\":{\"fontSize\":\"10\",\"color\":\"#909399\"},\"formatter\":\"\"}}', '{\"text\":{\"show\":false,\"fontSize\":\"18\",\"color\":\"#303133\",\"hPosition\":\"center\",\"vPosition\":\"top\",\"isItalic\":false,\"title\":\"累计治愈\"},\"legend\":{\"show\":true,\"hPosition\":\"center\",\"vPosition\":\"bottom\",\"orient\":\"horizontal\",\"icon\":\"rect\",\"textStyle\":{\"color\":\"#333333\",\"fontSize\":\"12\"}},\"xAxis\":{\"show\":true,\"position\":\"bottom\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"yAxis\":{\"show\":true,\"position\":\"left\",\"name\":\"\",\"axisLabel\":{\"rotate\":0,\"formatter\":\"{value}\"}},\"background\":{\"color\":\"#ffffff\",\"alpha\":0}}', '[]', 'admin', '1624260562502', '1624260618861', 'view');
INSERT INTO `panel_group` (`id`, `name`, `pid`, `level`, `node_type`, `create_by`, `create_time`, `panel_type`, `panel_style`, `panel_data`) VALUES ('308b5d60-ceb4-465d-9bad-cf901f2d38f1', '示例看板', 'panel_list', '0', 'folder', 'admin', '1624250448802', 'self', '{\"width\":1600,\"height\":900,\"scale\":100,\"scaleWidth\":100,\"scaleHeight\":100,\"selfAdaption\":true,\"auxiliaryMatrix\":true,\"openCommonStyle\":true,\"panel\":{\"color\":\"#ffffff\",\"imageUrl\":null,\"backgroundType\":\"image\",\"gap\":\"no\"},\"chart\":{\"xaxis\":\"[]\",\"yaxis\":\"[]\",\"show\":true,\"type\":\"panel\",\"title\":\"\",\"customAttr\":\"{\\\"color\\\":{\\\"value\\\":\\\"default\\\",\\\"colors\\\":[\\\"#5470c6\\\",\\\"#91cc75\\\",\\\"#fac858\\\",\\\"#ee6666\\\",\\\"#73c0de\\\",\\\"#3ba272\\\",\\\"#fc8452\\\",\\\"#9a60b4\\\",\\\"#ea7ccc\\\"],\\\"alpha\\\":100,\\\"tableHeaderBgColor\\\":\\\"#4e81bb\\\",\\\"tableItemBgColor\\\":\\\"#c6d9f0\\\",\\\"tableFontColor\\\":\\\"#000000\\\",\\\"tableStripe\\\":true,\\\"dimensionColor\\\":\\\"#000000\\\",\\\"quotaColor\\\":\\\"#000000\\\"},\\\"tableColor\\\":{\\\"value\\\":\\\"default\\\",\\\"colors\\\":[\\\"#5470c6\\\",\\\"#91cc75\\\",\\\"#fac858\\\",\\\"#ee6666\\\",\\\"#73c0de\\\",\\\"#3ba272\\\",\\\"#fc8452\\\",\\\"#9a60b4\\\",\\\"#ea7ccc\\\"],\\\"alpha\\\":100,\\\"tableHeaderBgColor\\\":\\\"#4e81bb\\\",\\\"tableItemBgColor\\\":\\\"#c6d9f0\\\",\\\"tableFontColor\\\":\\\"#000000\\\",\\\"tableStripe\\\":true,\\\"dimensionColor\\\":\\\"#000000\\\",\\\"quotaColor\\\":\\\"#000000\\\"},\\\"size\\\":{\\\"barDefault\\\":true,\\\"barWidth\\\":40,\\\"barGap\\\":0.4,\\\"lineWidth\\\":1,\\\"lineType\\\":\\\"solid\\\",\\\"lineSymbol\\\":\\\"emptyCircle\\\",\\\"lineSymbolSize\\\":4,\\\"lineSmooth\\\":false,\\\"lineArea\\\":false,\\\"pieInnerRadius\\\":0,\\\"pieOuterRadius\\\":60,\\\"pieRoseType\\\":\\\"radius\\\",\\\"pieRoseRadius\\\":5,\\\"funnelWidth\\\":80,\\\"radarShape\\\":\\\"polygon\\\",\\\"tableTitleFontSize\\\":12,\\\"tableItemFontSize\\\":12,\\\"gaugeMin\\\":0,\\\"gaugeMax\\\":100,\\\"gaugeStartAngle\\\":225,\\\"gaugeEndAngle\\\":-45,\\\"dimensionFontSize\\\":18,\\\"quotaFontSize\\\":18,\\\"spaceSplit\\\":10,\\\"dimensionShow\\\":true,\\\"quotaShow\\\":true},\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"color\\\":\\\"#909399\\\",\\\"fontSize\\\":\\\"10\\\",\\\"formatter\\\":\\\"{c}\\\",\\\"gaugeFormatter\\\":\\\"{value}\\\"},\\\"tooltip\\\":{\\\"show\\\":true,\\\"trigger\\\":\\\"item\\\",\\\"confine\\\":true,\\\"textStyle\\\":{\\\"fontSize\\\":\\\"10\\\",\\\"color\\\":\\\"#909399\\\"},\\\"formatter\\\":\\\"\\\"}}\",\"customStyle\":\"{\\\"text\\\":{\\\"show\\\":true,\\\"fontSize\\\":\\\"18\\\",\\\"color\\\":\\\"#303133\\\",\\\"hPosition\\\":\\\"center\\\",\\\"vPosition\\\":\\\"top\\\",\\\"isItalic\\\":false},\\\"legend\\\":{\\\"show\\\":true,\\\"hPosition\\\":\\\"center\\\",\\\"vPosition\\\":\\\"bottom\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"icon\\\":\\\"rect\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#333333\\\",\\\"fontSize\\\":\\\"12\\\"}},\\\"xAxis\\\":{\\\"show\\\":true,\\\"position\\\":\\\"bottom\\\",\\\"name\\\":\\\"\\\",\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"formatter\\\":\\\"{value}\\\"}},\\\"yAxis\\\":{\\\"show\\\":true,\\\"position\\\":\\\"left\\\",\\\"name\\\":\\\"\\\",\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"formatter\\\":\\\"{value}\\\"}},\\\"background\\\":{\\\"color\\\":\\\"#ffffff\\\",\\\"alpha\\\":0}}\",\"customFilter\":\"[]\"}}', '[]');
INSERT INTO `panel_group` (`id`, `name`, `pid`, `level`, `node_type`, `create_by`, `create_time`, `panel_type`, `panel_style`, `panel_data`) VALUES ('ceb6cd6c-531e-4a23-a467-caa5ef7218cc', '新冠疫情动态看板', '308b5d60-ceb4-465d-9bad-cf901f2d38f1', '1', 'panel', 'admin', '1624252989144', 'self', '{\"width\":1600,\"height\":900,\"scale\":100,\"scaleWidth\":100,\"scaleHeight\":100,\"selfAdaption\":true,\"auxiliaryMatrix\":false,\"openCommonStyle\":true,\"panel\":{\"color\":\"#ffffff\",\"imageUrl\":null,\"backgroundType\":\"image\",\"gap\":\"yes\"},\"chart\":{\"xaxis\":\"[]\",\"yaxis\":\"[]\",\"show\":true,\"type\":\"panel\",\"title\":\"\",\"customAttr\":\"{\\\"color\\\":{\\\"value\\\":\\\"default\\\",\\\"colors\\\":[\\\"#5470c6\\\",\\\"#91cc75\\\",\\\"#fac858\\\",\\\"#ee6666\\\",\\\"#73c0de\\\",\\\"#3ba272\\\",\\\"#fc8452\\\",\\\"#9a60b4\\\",\\\"#ea7ccc\\\"],\\\"alpha\\\":100,\\\"tableHeaderBgColor\\\":\\\"#4e81bb\\\",\\\"tableItemBgColor\\\":\\\"#c6d9f0\\\",\\\"tableFontColor\\\":\\\"#000000\\\",\\\"tableStripe\\\":true,\\\"dimensionColor\\\":\\\"#000000\\\",\\\"quotaColor\\\":\\\"#000000\\\"},\\\"tableColor\\\":{\\\"value\\\":\\\"default\\\",\\\"colors\\\":[\\\"#5470c6\\\",\\\"#91cc75\\\",\\\"#fac858\\\",\\\"#ee6666\\\",\\\"#73c0de\\\",\\\"#3ba272\\\",\\\"#fc8452\\\",\\\"#9a60b4\\\",\\\"#ea7ccc\\\"],\\\"alpha\\\":100,\\\"tableHeaderBgColor\\\":\\\"#4e81bb\\\",\\\"tableItemBgColor\\\":\\\"#c6d9f0\\\",\\\"tableFontColor\\\":\\\"#000000\\\",\\\"tableStripe\\\":true,\\\"dimensionColor\\\":\\\"#000000\\\",\\\"quotaColor\\\":\\\"#000000\\\"},\\\"size\\\":{\\\"barDefault\\\":true,\\\"barWidth\\\":40,\\\"barGap\\\":0.4,\\\"lineWidth\\\":1,\\\"lineType\\\":\\\"solid\\\",\\\"lineSymbol\\\":\\\"emptyCircle\\\",\\\"lineSymbolSize\\\":4,\\\"lineSmooth\\\":false,\\\"lineArea\\\":false,\\\"pieInnerRadius\\\":0,\\\"pieOuterRadius\\\":60,\\\"pieRoseType\\\":\\\"radius\\\",\\\"pieRoseRadius\\\":5,\\\"funnelWidth\\\":80,\\\"radarShape\\\":\\\"polygon\\\",\\\"tableTitleFontSize\\\":12,\\\"tableItemFontSize\\\":12,\\\"gaugeMin\\\":0,\\\"gaugeMax\\\":100,\\\"gaugeStartAngle\\\":225,\\\"gaugeEndAngle\\\":-45,\\\"dimensionFontSize\\\":18,\\\"quotaFontSize\\\":18,\\\"spaceSplit\\\":10,\\\"dimensionShow\\\":true,\\\"quotaShow\\\":true},\\\"label\\\":{\\\"show\\\":false,\\\"position\\\":\\\"top\\\",\\\"color\\\":\\\"#909399\\\",\\\"fontSize\\\":\\\"10\\\",\\\"formatter\\\":\\\"{c}\\\",\\\"gaugeFormatter\\\":\\\"{value}\\\"},\\\"tooltip\\\":{\\\"show\\\":true,\\\"trigger\\\":\\\"item\\\",\\\"confine\\\":true,\\\"textStyle\\\":{\\\"fontSize\\\":\\\"10\\\",\\\"color\\\":\\\"#909399\\\"},\\\"formatter\\\":\\\"\\\"}}\",\"customStyle\":\"{\\\"text\\\":{\\\"show\\\":true,\\\"fontSize\\\":\\\"18\\\",\\\"color\\\":\\\"#303133\\\",\\\"hPosition\\\":\\\"center\\\",\\\"vPosition\\\":\\\"top\\\",\\\"isItalic\\\":false},\\\"legend\\\":{\\\"show\\\":true,\\\"hPosition\\\":\\\"center\\\",\\\"vPosition\\\":\\\"bottom\\\",\\\"orient\\\":\\\"horizontal\\\",\\\"icon\\\":\\\"rect\\\",\\\"textStyle\\\":{\\\"color\\\":\\\"#333333\\\",\\\"fontSize\\\":\\\"12\\\"}},\\\"xAxis\\\":{\\\"show\\\":true,\\\"position\\\":\\\"bottom\\\",\\\"name\\\":\\\"\\\",\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"formatter\\\":\\\"{value}\\\"}},\\\"yAxis\\\":{\\\"show\\\":true,\\\"position\\\":\\\"left\\\",\\\"name\\\":\\\"\\\",\\\"axisLabel\\\":{\\\"rotate\\\":0,\\\"formatter\\\":\\\"{value}\\\"}},\\\"background\\\":{\\\"color\\\":\\\"#ffffff\\\",\\\"alpha\\\":0}}\",\"customFilter\":\"[]\"}}', '[{\"animations\":[],\"events\":{},\"groupStyle\":{},\"isLock\":false,\"id\":\"ca491ff0-d262-11eb-a946-2b135fb6155e\",\"component\":\"rect-shape\",\"label\":\"矩形\",\"propValue\":\"\",\"icon\":\"juxing\",\"type\":\"rect-shape\",\"style\":{\"rotate\":0,\"opacity\":1,\"width\":397.6811594202899,\"height\":333.63180515759313,\"borderColor\":\"#FFFFFF\",\"borderWidth\":1,\"backgroundColor\":\"#FFFFFF\",\"borderStyle\":\"solid\",\"top\":77.82951146131805,\"left\":1.1594202898550725},\"filters\":[]},{\"animations\":[],\"events\":{},\"groupStyle\":{},\"isLock\":false,\"id\":\"ca491ff1-d262-11eb-a946