2025-04-17 20:28:50 +08:00

41 lines
879 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
/// <summary>
/// 读取表号输出
/// </summary>
public class ReadMeterNumOutput
{
public List<ReadMeterNumRemarkOutput> Remark { get; set; }
}
public class ReadMeterNumRemarkOutput
{
public string ComNum { get; set; }
public string BerComPass { get; set; }
public string RuleType { get; set; }
/// <summary>
/// 波特率
/// </summary>
public int BaudRate { get; set; }
/// <summary>
/// 集中器地址
/// </summary>
public string CollectorAddress { get; set; }
/// <summary>
/// 端口
/// </summary>
public int Port { get; set; }
}
}