From 7f539a0316322c0bb3d8ae15d831a24099faf720 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Chsc=E2=80=9D?= <“huangsucan@kaiyili-lab.com”>
Date: Tue, 9 Jun 2026 16:16:33 +0800
Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E6=B7=BB=E5=8A=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
DeviceCommand/DeviceCommand.csproj | 4 ----
DeviceCommand/Devices/CTS3-6-300-8IS0.cs | 17 +++++++++++++++++
DeviceCommand/Devices/SDE710FH-A.cs | 13 +++++++++++++
DeviceCommand/Devices/SDE720SH-A.cs | 13 +++++++++++++
DeviceCommand/Devices/SDL710FH.cs | 13 +++++++++++++
DeviceCommand/Devices/THC-1100-602A.cs | 14 ++++++++++++++
6 files changed, 70 insertions(+), 4 deletions(-)
create mode 100644 DeviceCommand/Devices/CTS3-6-300-8IS0.cs
create mode 100644 DeviceCommand/Devices/SDE710FH-A.cs
create mode 100644 DeviceCommand/Devices/SDE720SH-A.cs
create mode 100644 DeviceCommand/Devices/SDL710FH.cs
create mode 100644 DeviceCommand/Devices/THC-1100-602A.cs
diff --git a/DeviceCommand/DeviceCommand.csproj b/DeviceCommand/DeviceCommand.csproj
index 90ec535..6c99400 100644
--- a/DeviceCommand/DeviceCommand.csproj
+++ b/DeviceCommand/DeviceCommand.csproj
@@ -17,8 +17,4 @@
-
-
-
-
diff --git a/DeviceCommand/Devices/CTS3-6-300-8IS0.cs b/DeviceCommand/Devices/CTS3-6-300-8IS0.cs
new file mode 100644
index 0000000..6b8e30a
--- /dev/null
+++ b/DeviceCommand/Devices/CTS3-6-300-8IS0.cs
@@ -0,0 +1,17 @@
+using DeviceCommand.Base;
+using Model.Model;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeviceCommand.Devices
+{
+ public class CTS3 : EnovaDataReporter
+ {
+ public CTS3(HttpClient httpClient) : base(httpClient)
+ {
+ }
+ }
+}
diff --git a/DeviceCommand/Devices/SDE710FH-A.cs b/DeviceCommand/Devices/SDE710FH-A.cs
new file mode 100644
index 0000000..7f21f8d
--- /dev/null
+++ b/DeviceCommand/Devices/SDE710FH-A.cs
@@ -0,0 +1,13 @@
+using DeviceCommand.Base;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeviceCommand.Devices
+{
+ public class SDE710FH_A:ModbusTcp
+ {
+ }
+}
diff --git a/DeviceCommand/Devices/SDE720SH-A.cs b/DeviceCommand/Devices/SDE720SH-A.cs
new file mode 100644
index 0000000..e567702
--- /dev/null
+++ b/DeviceCommand/Devices/SDE720SH-A.cs
@@ -0,0 +1,13 @@
+using DeviceCommand.Base;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeviceCommand.Devices
+{
+ public class SDE720SH_A : ModbusTcp
+ {
+ }
+}
diff --git a/DeviceCommand/Devices/SDL710FH.cs b/DeviceCommand/Devices/SDL710FH.cs
new file mode 100644
index 0000000..e400978
--- /dev/null
+++ b/DeviceCommand/Devices/SDL710FH.cs
@@ -0,0 +1,13 @@
+using DeviceCommand.Base;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeviceCommand.Devices
+{
+ public class SDL710FH:ModbusTcp
+ {
+ }
+}
diff --git a/DeviceCommand/Devices/THC-1100-602A.cs b/DeviceCommand/Devices/THC-1100-602A.cs
new file mode 100644
index 0000000..3e916ba
--- /dev/null
+++ b/DeviceCommand/Devices/THC-1100-602A.cs
@@ -0,0 +1,14 @@
+using DeviceCommand.Base;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DeviceCommand.Devices
+{
+ public class THC1100:S7Device
+ {
+
+ }
+}