using JiShe.CollectBus.Common.Enums;
namespace JiShe.CollectBus.Host.Models
{
public class GeneralIssuedInput
{
///
/// 测量点号 0~2040 为0被删除
///
public int Pn { get; set; }
///
/// 波特率600起 1~7
///
public int BaudRate { get; set; }
///
/// 端口号 1-31
///
public int Port { get; set; }
public CommunicationProtocolType ProtocolType { get; set; }
///
/// 通信地址 0~999999999999
///
public string Address { get; set; }
///
/// 通信密码
///
public string Password { get; set; } = "000000";
}
}