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 + { + + } +}