Compare commits

...

2 Commits

Author SHA1 Message Date
“hsc”
dd287f8b8b Merge branch 'master' of ssh://git.kaiyili-lab.com:2022/huangsucan/IOT 2026-06-09 16:33:38 +08:00
“hsc”
7f539a0316 设备添加 2026-06-09 16:33:32 +08:00
5 changed files with 70 additions and 0 deletions

View File

@@ -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)
{
}
}
}

View File

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

View File

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

View File

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

View File

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