From bc2ab582ea0764a13d295cdad53a31dd1ec19310 Mon Sep 17 00:00:00 2001 From: 25604 Date: Sat, 11 Oct 2025 18:19:58 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E4=BF=AE=E5=A4=8D=E7=83=AD=E6=B3=B5?= =?UTF-8?q?=E9=87=87=E9=9B=86=E7=94=B5=E6=B5=81=E8=AE=BE=E7=BD=AE=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dealdata/impl/DataProcessServiceImpl.java | 7 +- .../device/CollectionParamsManageMapper.java | 2 +- .../CollectionParamsManageServiceImpl.java | 26 ++++- sql/2025新增.sql | 102 ++++++++++++++++++ 4 files changed, 130 insertions(+), 7 deletions(-) diff --git a/mh-framework/src/main/java/com/mh/framework/dealdata/impl/DataProcessServiceImpl.java b/mh-framework/src/main/java/com/mh/framework/dealdata/impl/DataProcessServiceImpl.java index fa73935..ce4dc54 100644 --- a/mh-framework/src/main/java/com/mh/framework/dealdata/impl/DataProcessServiceImpl.java +++ b/mh-framework/src/main/java/com/mh/framework/dealdata/impl/DataProcessServiceImpl.java @@ -230,7 +230,12 @@ public class DataProcessServiceImpl implements DataProcessService { } } - redisCache.setCacheList(cacheKey, entities); + if (!entities.isEmpty()) { + redisCache.setCacheList(cacheKey, entities); + } + + +// redisCache.setCacheList(cacheKey, entities); threadPoolService.execute(() -> { if (!entities.isEmpty()) { diff --git a/mh-system/src/main/java/com/mh/system/mapper/device/CollectionParamsManageMapper.java b/mh-system/src/main/java/com/mh/system/mapper/device/CollectionParamsManageMapper.java index 18284bd..c3cf658 100644 --- a/mh-system/src/main/java/com/mh/system/mapper/device/CollectionParamsManageMapper.java +++ b/mh-system/src/main/java/com/mh/system/mapper/device/CollectionParamsManageMapper.java @@ -357,6 +357,6 @@ public interface CollectionParamsManageMapper extends BaseMapper createOrderList(); } diff --git a/mh-system/src/main/java/com/mh/system/service/device/impl/CollectionParamsManageServiceImpl.java b/mh-system/src/main/java/com/mh/system/service/device/impl/CollectionParamsManageServiceImpl.java index bfaea74..7147fca 100644 --- a/mh-system/src/main/java/com/mh/system/service/device/impl/CollectionParamsManageServiceImpl.java +++ b/mh-system/src/main/java/com/mh/system/service/device/impl/CollectionParamsManageServiceImpl.java @@ -680,8 +680,14 @@ public class CollectionParamsManageServiceImpl implements ICollectionParamsManag dto.setOrderNum(vo.getOrderNum()); switch (vo.getParamType()) { - case "2": // 运行状态 - dto.setRunState(vo.getCollectValue()); + case "48": // 运行状态 + // 这里获取group中paramType=48,并且collectValue>0的记录 + List list = group.stream().filter(v -> "48".equals(v.getParamType()) && new BigDecimal(v.getCollectValue()).compareTo(new BigDecimal("1")) > 0).toList(); + if (!list.isEmpty()) { + dto.setRunState("1"); + } else { + dto.setRunState("0"); + } break; case "5": // 故障状态 dto.setIsFault(vo.getCollectValue()); @@ -911,9 +917,19 @@ public class CollectionParamsManageServiceImpl implements ICollectionParamsManag dlItems.forEach(item -> { switch (item.getParamType()) { case "1": - // 运行状态 - vo.setRunningStatus(item.getCurValue().intValue()); - vo.setRunningStatusId(item.getCpmId()); + case "48": + if (item.getParamType().equals("1")) { + // 运行状态 + vo.setRunningStatus(item.getCurValue().intValue()); + vo.setRunningStatusId(item.getCpmId()); + } else { + List list = dlItems.stream() + .filter(v -> "48".equals(v.getParamType()) && (v.getCurValue().compareTo(new BigDecimal("1")) > 0)).toList(); + if (!list.isEmpty()) { + vo.setRunningStatus(1); + vo.setRunningStatusId(list.getFirst().getCpmId()); + } + } break; case "2": vo.setSwitchStatus(item.getCurValue().intValue()); diff --git a/sql/2025新增.sql b/sql/2025新增.sql index 68ae326..b94b1d3 100644 --- a/sql/2025新增.sql +++ b/sql/2025新增.sql @@ -166,3 +166,105 @@ INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_n INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('hotd1333498ec37f7fc697e404587130', 'hot6b3a898d85f3a1605a2r420711e3e3', '7', '5', '05', '0BDD', '03', '', '', NULL, 1, 0.000, 0, 2, 1, '2025-08-01 11:30:50.000', 0, '', 0, '2', '2', '1', '0', '', 1, 0, '2025-03-09 19:32:22.061', '2025-03-09 19:34:00.072', 'mhtech', 'mhtech', '5号热泵电流2', 140, '48', '1', '1', '10', '0'); INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('hotd1333498ec37f7fc697e404587131', 'hot6b3a898d85f3a1605a2r420711e3e3', '7', '6', '06', '0BD9', '03', '', '', NULL, 1, 0.000, 0, 2, 1, '2025-08-01 11:30:50.000', 0, '', 0, '2', '2', '1', '0', '', 1, 0, '2025-03-09 19:32:22.061', '2025-03-09 19:34:00.072', 'mhtech', 'mhtech', '6号热泵电流1', 140, '48', '1', '1', '10', '0'); INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('hotd1333498ec37f7fc697e404587132', 'hot6b3a898d85f3a1605a2r420711e3e3', '7', '6', '06', '0BDD', '03', '', '', NULL, 1, 0.000, 0, 2, 1, '2025-08-01 11:30:50.000', 0, '', 0, '2', '2', '1', '0', '', 1, 0, '2025-03-09 19:32:22.061', '2025-03-09 19:34:00.072', 'mhtech', 'mhtech', '6号热泵电流2', 140, '48', '1', '1', '10', '0'); + +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00036', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_001', 'drift_status_001', 'drift_status_001', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 1.000, '2025-10-10 18:06:59.934', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标1', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00037', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_002', 'drift_status_002', 'drift_status_002', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标2', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00038', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_003', 'drift_status_003', 'drift_status_003', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标3', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00039', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_004', 'drift_status_004', 'drift_status_004', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标4', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00040', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_005', 'drift_status_005', 'drift_status_005', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标5', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00041', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_006', 'drift_status_006', 'drift_status_006', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标6', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00042', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_status_007', 'drift_status_007', 'drift_status_007', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置启动标7', 140, '29', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00001', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_001', 'drift_time_001', 'drift_time_001', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 18.000, '2025-10-10 18:00:09.224', 0, NULL, 1, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间1-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00002', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_002', 'drift_time_002', 'drift_time_002', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 2, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间1-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00003', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_003', 'drift_time_003', 'drift_time_003', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 20.000, '2025-10-10 18:00:17.345', 0, NULL, 3, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间1-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00004', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_004', 'drift_time_004', 'drift_time_004', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 4, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间1-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00005', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_005', 'drift_time_005', 'drift_time_005', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 5, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间2-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00006', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_006', 'drift_time_006', 'drift_time_006', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 6, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间2-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00007', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_007', 'drift_time_007', 'drift_time_007', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 7, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间2-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00008', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_008', 'drift_time_008', 'drift_time_008', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 8, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间2-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00009', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_009', 'drift_time_009', 'drift_time_009', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 9, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间3-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00010', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_010', 'drift_time_010', 'drift_time_010', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 10, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间3-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00011', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_011', 'drift_time_011', 'drift_time_011', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 11, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间3-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00012', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_012', 'drift_time_012', 'drift_time_012', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 12, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间3-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00013', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_013', 'drift_time_013', 'drift_time_013', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 13, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间4-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00014', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_014', 'drift_time_014', 'drift_time_014', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 14, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间4-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00015', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_015', 'drift_time_015', 'drift_time_015', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 15, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间4-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00016', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_016', 'drift_time_016', 'drift_time_016', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 16, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间4-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00017', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_017', 'drift_time_017', 'drift_time_017', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 17, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间5-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00018', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_018', 'drift_time_018', 'drift_time_018', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 18, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间5-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00019', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_019', 'drift_time_019', 'drift_time_019', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 19, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间5-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00020', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_020', 'drift_time_020', 'drift_time_020', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 20, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间5-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00021', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_021', 'drift_time_021', 'drift_time_021', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 1.000, '2025-10-10 16:27:30.373', 0, NULL, 21, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间6-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00022', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_022', 'drift_time_022', 'drift_time_022', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 1.000, '2025-10-10 16:29:22.905', 0, NULL, 22, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间5-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00023', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_023', 'drift_time_023', 'drift_time_023', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 23, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间6-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00024', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_024', 'drift_time_024', 'drift_time_024', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 24, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间6-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00025', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_025', 'drift_time_025', 'drift_time_025', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 25, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间7-时1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00026', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_026', 'drift_time_026', 'drift_time_026', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 26, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间7-分1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00027', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_027', 'drift_time_027', 'drift_time_027', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 27, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间7-时2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00028', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_time_028', 'drift_time_028', 'drift_time_028', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置时间7-分2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00029', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_001', 'drift_value_001', 'drift_value_001', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 1.000, '2025-10-10 16:16:28.011', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置1', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00030', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_002', 'drift_value_002', 'drift_value_002', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置2', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00031', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_003', 'drift_value_003', 'drift_value_003', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置3', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00032', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_004', 'drift_value_004', 'drift_value_004', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置4', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00033', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_005', 'drift_value_005', 'drift_value_005', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置5', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00034', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_006', 'drift_value_006', 'drift_value_006', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置6', 140, '0', '0', '1', NULL, '0'); +INSERT INTO public.collection_params_manage (id, device_ledger_id, mt_type, mt_num, mt_code, register_addr, func_code, identify_code, mt_caliber_pulse, mt_range, mt_ratio, mt_init_value, digits, data_type, cur_value, cur_time, mt_is_sum, unit, order_num, gateway_id, communication_param_id, protocol_type, communication_type, remark, register_size, is_use, create_time, update_time, create_by, update_by, other_name, grade, param_type, system_type, collection_type, terminal_device_type, quality) VALUES('283034kk26a9b3a79a86332526b00035', 'b0a3c08bd89bb6fb41d2ccd6d8dfc60d', '0', 'drift_value_007', 'drift_value_007', 'drift_value_007', '03', NULL, NULL, NULL, 1, 0.000, 0, 0, 0.000, '2025-10-10 14:31:10.000', 0, NULL, 28, '99', '2', '1', '0', NULL, 2, 0, '2025-10-10 14:31:10.000', NULL, 'mhtech', NULL, '3号主机-偏移值设置7', 140, '0', '0', '1', NULL, '0'); + + +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_001', '9', '定时设置1', '3号主机-偏移值设置时间1-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00001', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_002', '9', '定时设置1', '3号主机-偏移值设置时间1-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00002', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_003', '9', '定时设置1', '3号主机-偏移值设置时间1-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00003', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_004', '9', '定时设置1', '3号主机-偏移值设置时间1-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00004', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_005', '9', '定时设置2', '3号主机-偏移值设置时间2-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00005', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_006', '9', '定时设置2', '3号主机-偏移值设置时间2-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00006', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_007', '9', '定时设置2', '3号主机-偏移值设置时间2-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00007', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_008', '9', '定时设置2', '3号主机-偏移值设置时间2-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00008', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_009', '9', '定时设置3', '3号主机-偏移值设置时间3-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00009', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_010', '9', '定时设置3', '3号主机-偏移值设置时间3-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00010', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_011', '9', '定时设置3', '3号主机-偏移值设置时间3-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00011', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_012', '9', '定时设置3', '3号主机-偏移值设置时间3-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00012', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_013', '9', '定时设置4', '3号主机-偏移值设置时间4-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00013', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_014', '9', '定时设置4', '3号主机-偏移值设置时间4-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00014', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_015', '9', '定时设置4', '3号主机-偏移值设置时间4-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00015', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_016', '9', '定时设置4', '3号主机-偏移值设置时间4-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00016', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_017', '9', '定时设置5', '3号主机-偏移值设置时间5-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00017', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_018', '9', '定时设置5', '3号主机-偏移值设置时间5-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00018', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_019', '9', '定时设置5', '3号主机-偏移值设置时间5-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00019', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_020', '9', '定时设置5', '3号主机-偏移值设置时间5-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00020', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_021', '9', '定时设置6', '3号主机-偏移值设置时间6-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00021', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_022', '9', '定时设置6', '3号主机-偏移值设置时间6-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00022', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_023', '9', '定时设置6', '3号主机-偏移值设置时间6-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00023', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_024', '9', '定时设置6', '3号主机-偏移值设置时间6-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00024', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_025', '9', '定时设置7', '3号主机-偏移值设置时间7-开时1', 'text', NULL, '283034kk26a9b3a79a86332526b00025', 1, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_026', '9', '定时设置7', '3号主机-偏移值设置时间7-开分1', 'text', NULL, '283034kk26a9b3a79a86332526b00026', 2, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_027', '9', '定时设置7', '3号主机-偏移值设置时间7-关时2', 'text', NULL, '283034kk26a9b3a79a86332526b00027', 3, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_time_028', '9', '定时设置7', '3号主机-偏移值设置时间7-关分2', 'text', NULL, '283034kk26a9b3a79a86332526b00028', 4, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_001', '9', '定时设置1', '目标偏移值1', 'text', NULL, '283034kk26a9b3a79a86332526b00029', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_002', '9', '定时设置2', '目标偏移值2', 'text', NULL, '283034kk26a9b3a79a86332526b00030', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_003', '9', '定时设置3', '目标偏移值3', 'text', NULL, '283034kk26a9b3a79a86332526b00031', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_004', '9', '定时设置4', '目标偏移值4', 'text', NULL, '283034kk26a9b3a79a86332526b00032', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_005', '9', '定时设置5', '目标偏移值5', 'text', NULL, '283034kk26a9b3a79a86332526b00033', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_006', '9', '定时设置6', '目标偏移值6', 'text', NULL, '283034kk26a9b3a79a86332526b00034', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_value_007', '9', '定时设置7', '目标偏移值7', 'text', NULL, '283034kk26a9b3a79a86332526b00035', 5, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_001', '9', '定时设置1', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00036', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_002', '9', '定时设置2', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00037', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_003', '9', '定时设置3', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00038', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_004', '9', '定时设置4', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00039', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_005', '9', '定时设置5', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00040', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_006', '9', '定时设置6', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00041', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('drift_status_007', '9', '定时设置7', '启动标志', 'button', NULL, '283034kk26a9b3a79a86332526b00042', 7, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_001', '9', '定时设置1', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_002', '9', '定时设置2', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_003', '9', '定时设置3', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_004', '9', '定时设置4', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_005', '9', '定时设置5', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_006', '9', '定时设置6', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('temp_set_value_007', '9', '定时设置7', '当前冷冻水出水温度设置', '', NULL, '283034kk26a9b3a79a86332526b24855', 6, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_001', '9', '定时设置1', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_002', '9', '定时设置2', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_003', '9', '定时设置3', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_004', '9', '定时设置4', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_005', '9', '定时设置5', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_006', '9', '定时设置6', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +INSERT INTO public.policy_manage (id, policy_type, policy_name, point_name, input_type, unit, cpm_id, order_num, system_type, fun_policy_type, min, max, digits, house_id) VALUES('offset_set_value_007', '9', '定时设置7', '当前偏移值设置', '', NULL, '283034kk26a9b3a79a86332526b24856', 8, '0', '4', NULL, NULL, 0, NULL); +