From a32a910873d852e6b72f7fc013f7787a69f80254 Mon Sep 17 00:00:00 2001 From: wangshilong Date: Wed, 11 Dec 2024 20:25:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=87=E4=BB=A4=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../isu/gaswellwatch/vo/command/etc/TimingMode.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/isu/gaswellwatch/vo/command/etc/TimingMode.java b/src/main/java/com/isu/gaswellwatch/vo/command/etc/TimingMode.java index 41bfd70..53181b6 100644 --- a/src/main/java/com/isu/gaswellwatch/vo/command/etc/TimingMode.java +++ b/src/main/java/com/isu/gaswellwatch/vo/command/etc/TimingMode.java @@ -92,7 +92,7 @@ public class TimingMode extends Command implements Timing { // 100 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 0064 0003 06 - command.append("011000640000306"); + command.append("01100064000306"); command.append(this.toHexString(this.minCloseWellTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build()); @@ -100,7 +100,7 @@ public class TimingMode extends Command implements Timing { // 106 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 006A 0003 06 - command.append("0110006A0000306"); + command.append("0110006A000306"); command.append(this.toHexString(this.plungerRiseTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build()); @@ -108,7 +108,7 @@ public class TimingMode extends Command implements Timing { // 121 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 0079 0003 06 - command.append("0110006A0000306"); + command.append("01100079000306"); command.append(this.toHexString(this.minOpenWellTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build()); @@ -116,7 +116,7 @@ public class TimingMode extends Command implements Timing { // 130 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 0082 0003 06 - command.append("011000820000306"); + command.append("01100082000306"); command.append(this.toHexString(this.maxOpenWellTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build()); @@ -124,7 +124,7 @@ public class TimingMode extends Command implements Timing { // 136 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 0088 0006 0C - command.append("01100088000060C"); + command.append("0110008800060C"); command.append(this.toHexString(this.maxCloseWellTime)); command.append(this.toHexString(this.arrivalSensorDelayTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build()); @@ -133,7 +133,7 @@ public class TimingMode extends Command implements Timing { // 142 // 地址码 功能码 起始地址 连续长度 连续字长 // 01 10 008E 0006 0C - command.append("0110008E000060C"); + command.append("0110008E00060C"); command.append(this.toHexString(this.wellShutInTime)); command.append(this.toHexString(this.afterFlowTime)); resultList.add(ModbusCommandDto.builder().command(command.toString()).length(16).build());