From a83d8f1b2096c53d78afe75ccd920a46b65ea272 Mon Sep 17 00:00:00 2001 From: Foming Date: Mon, 9 Jun 2025 15:58:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=9B=91=E6=8E=A7=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E5=B1=9E=E6=80=A7sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V1.7.0__update.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/report-core/src/main/resources/db/migration/V1.7.0__update.sql b/report-core/src/main/resources/db/migration/V1.7.0__update.sql index 659f1b48..66980c38 100644 --- a/report-core/src/main/resources/db/migration/V1.7.0__update.sql +++ b/report-core/src/main/resources/db/migration/V1.7.0__update.sql @@ -3,3 +3,9 @@ INSERT INTO `gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create INSERT INTO `gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('CALENDAR_PROPERTIES', '日期', 'date', NULL, 1, 'zh', NULL, 1, 'admin', '2021-08-20 10:31:51', 'admin', '2021-08-20 10:31:51', 1); INSERT INTO `gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('CALENDAR_PROPERTIES', '数据', 'data', NULL, 1, 'zh', NULL, 6, 'admin', '2021-08-20 10:32:52', 'admin', '2021-08-20 10:32:52', 1); + +-- 增加监控视频解析属性 +INSERT INTO `gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('监控视频属性', 'MONITOR_PROPERTIES', '监控视频属性', 'admin', '2021-04-29 10:28:15', 'admin', '2021-06-23 10:47:20', 1); + +INSERT INTO `gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('MONITOR_PROPERTIES', '视频地址', 'src', NULL, 1, 'zh', NULL, 1, 'admin', '2021-08-20 10:31:51', 'admin', '2021-08-20 10:31:51', 1); +INSERT INTO `gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('MONITOR_PROPERTIES', '视频名称', 'name', NULL, 1, 'zh', NULL, 6, 'admin', '2021-08-20 10:32:52', 'admin', '2021-08-20 10:32:52', 1);