fit:修改触发构建

This commit is contained in:
高大 2026-01-30 09:05:49 +08:00
parent b0da268f0b
commit 8ae4123274
1 changed files with 6 additions and 6 deletions

View File

@ -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 '主键', `id` BIGINT NOT NULL AUTO_INCREMENT COMMENT '主键',
`name` VARCHAR(255) DEFAULT NULL COMMENT '名称', `name` VARCHAR(255) DEFAULT NULL COMMENT '名称',
`vendor_id` BIGINT DEFAULT NULL COMMENT '厂商ID', `vendor_id` BIGINT DEFAULT NULL COMMENT '厂商ID',
@ -18,7 +18,7 @@ CREATE TABLE IF NOT EXISTS `air_type_general_enum` (
-- Matrice 系列 -- 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 400', 1, 0, 103, 0, '-'),
('Matrice 350 RTK', 1, 0, 89, 0, '-'), ('Matrice 350 RTK', 1, 0, 89, 0, '-'),
('Matrice 300 RTK', 1, 0, 60, 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, '-'); ('Matrice 4TD', 1, 0, 100, 1, '-');
-- Mavic 3 行业系列 -- 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 行业系列 (M3E 相机)', 1, 0, 77, 0, '-'),
('Mavic 3 行业系列 (M3T 相机)', 1, 0, 77, 1, '-'), ('Mavic 3 行业系列 (M3T 相机)', 1, 0, 77, 1, '-'),
('Mavic 3 行业系列 (M3TA 相机)', 1, 0, 77, 3, '-'); ('Mavic 3 行业系列 (M3TA 相机)', 1, 0, 77, 3, '-');
-- DJI Matrice 4 系列 -- 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 系列 (M4E 相机)', 1, 0, 99, 0, '-'),
('DJI Matrice 4 系列 (M4T 相机)', 1, 0, 99, 1, '-'); ('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 带屏遥控器行业版', 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', 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 Plus 2', 1, 2, 174, 0, '搭配 >DJI Matrice 4 系列'),
('DJI RC Pro 行业版', 1, 2, 144, 0, '搭配 Mavic 3 行业系列'); ('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, '-'), ('大疆机场', 1, 3, 1, 0, '-'),
('大疆机场 2', 1, 3, 2, 0, '-'), ('大疆机场 2', 1, 3, 2, 0, '-'),
('大疆机场 3', 1, 3, 3, 0, '-'); ('大疆机场 3', 1, 3, 3, 0, '-');