You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
489 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.UpsEqm.ModBusTcp
{
/// <summary>
/// UPS连接的基础信息
/// </summary>
public class CmnUpsBaseInfo
{
#region 基础字段
/// <summary>
/// UPS
/// </summary>
public static UpsModbusTool UPS01 = new UpsModbusTool("172.0.50.102", 502, 6, "U001");
#endregion 基础字段
}
}