From 8ae4123274686ce245d6128809f531fc73930e99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E5=A4=A7?= <1504665037@qq.com> Date: Fri, 30 Jan 2026 09:05:49 +0800 Subject: [PATCH] =?UTF-8?q?fit:=E4=BF=AE=E6=94=B9=E8=A7=A6=E5=8F=91?= =?UTF-8?q?=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ql => V5__Create_air_type_general_enum_table.sql} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename src/main/resources/db/migration/{V8__Create_air_type_general_enum_table.sql => V5__Create_air_type_general_enum_table.sql} (85%) diff --git a/src/main/resources/db/migration/V8__Create_air_type_general_enum_table.sql b/src/main/resources/db/migration/V5__Create_air_type_general_enum_table.sql similarity index 85% rename from src/main/resources/db/migration/V8__Create_air_type_general_enum_table.sql rename to src/main/resources/db/migration/V5__Create_air_type_general_enum_table.sql index 1adc428..ebbcf32 100644 --- a/src/main/resources/db/migration/V8__Create_air_type_general_enum_table.sql +++ b/src/main/resources/db/migration/V5__Create_air_type_general_enum_table.sql @@ -1,6 +1,6 @@ -CREATE TABLE IF NOT EXISTS `air_type_general_enum` ( +CREATE TABLE IF NOT EXISTS `device_air_type_general_enum` ( `id` BIGINT NOT NULL AUTO_INCREMENT COMMENT '主键', `name` VARCHAR(255) DEFAULT NULL COMMENT '名称', `vendor_id` BIGINT DEFAULT NULL COMMENT '厂商ID', @@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS `air_type_general_enum` ( -- Matrice 系列 -INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES +INSERT INTO device_air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES ('Matrice 400', 1, 0, 103, 0, '-'), ('Matrice 350 RTK', 1, 0, 89, 0, '-'), ('Matrice 300 RTK', 1, 0, 60, 0, '-'), @@ -30,25 +30,25 @@ INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, rema ('Matrice 4TD', 1, 0, 100, 1, '-'); -- Mavic 3 行业系列 -INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES +INSERT INTO device_air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES ('Mavic 3 行业系列 (M3E 相机)', 1, 0, 77, 0, '-'), ('Mavic 3 行业系列 (M3T 相机)', 1, 0, 77, 1, '-'), ('Mavic 3 行业系列 (M3TA 相机)', 1, 0, 77, 3, '-'); -- DJI Matrice 4 系列 -INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES +INSERT INTO device_air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES ('DJI Matrice 4 系列 (M4E 相机)', 1, 0, 99, 0, '-'), ('DJI Matrice 4 系列 (M4T 相机)', 1, 0, 99, 1, '-'); -- 遥控器系列 -INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES +INSERT INTO device_air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES ('DJI 带屏遥控器行业版', 1, 2, 56, 0, '搭配 Matrice 300 RTK'), ('DJI RC Plus', 1, 2, 119, 0, '搭配 Matrice 350 RTK,Matrice 300 RTK,Matrice 30/30T'), ('DJI RC Plus 2', 1, 2, 174, 0, '搭配 >DJI Matrice 4 系列'), ('DJI RC Pro 行业版', 1, 2, 144, 0, '搭配 Mavic 3 行业系列'); -- 大疆机场系列 -INSERT INTO air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES +INSERT INTO device_air_type_general_enum (name, vendor_id, domain, type, sub_type, remark) VALUES ('大疆机场', 1, 3, 1, 0, '-'), ('大疆机场 2', 1, 3, 2, 0, '-'), ('大疆机场 3', 1, 3, 3, 0, '-'); \ No newline at end of file