驱动更新

This commit is contained in:
“hsc”
2026-08-04 15:10:37 +08:00
parent 7250080a24
commit 66bb6d36ba
12 changed files with 283 additions and 1193 deletions

View File

@@ -0,0 +1,20 @@
using DeviceCommand.Base;
using Model.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceCommand.Devices
{
/// <summary>
/// 水冷机 一拖三
/// </summary>
public class MCc30W:ModbusTcp
{
public MCc30W(TcpConfig config) : base(config)
{
}
}
}