21 lines
389 B
C#
21 lines
389 B
C#
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 MCc06U:ModbusTcp
|
|
{
|
|
public MCc06U(TcpConfig config) : base(config)
|
|
{
|
|
}
|
|
}
|
|
}
|