using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace IoTSharp.Gateways.Data { public class ModbusSlave { [Key] public Guid Id { get; set; } /// /// /// /// /// DTU: dtu://dev.ttyS0:115200 /// DTU: dtu://COM1:115200 /// TCP: tcp://www.host.com:602 // DTU over TCP: d2t://www.host.com:602 /// [Required] [DisplayName("从机地址")] [Description("Linux下串口格式 dtu://dev.ttyS0:115200 , Windows下串口格式 dtu://COM1:115200 TCP格式 d2t://www.host.com:602")] public Uri Slave { get; set; } /// /// 连接超时和读取写入超时 按秒 /// [DisplayName("连接和读写超时")] public int TimeOut { get; set; } [Required] [DisplayName("设备名称")] public string DeviceName { get; set; } /// /// 如果为空, 则直接使用 DeviceName , /// 否则, 使用 PointMapping 里面的 映射ID作为设备名称。 {Name}-{ID} , 前提是PointMappings中要有, 如果没有, 则为空。 /// [DisplayName("设备名称格式")] public string? DeviceNameFormat { get; set; } /// /// 时间间隔 秒为单位。 /// [DisplayName("采集间隔")] public float TimeInterval { get; set; } public List? PointMappings { get; set; } = new List(); } }