using System; using System.Collections.Generic; using System.Linq; namespace SlnMesnac.Config { /// /// /// public class DeviceInfoConfig { /// /// 备 注: /// 默认值: /// public string Deviceid { get; set; } = null!; /// /// 备 注: /// 默认值: /// public string? Name { get; set; } /// /// 备 注: /// 默认值: /// public string? Connectstr { get; set; } /// /// 备 注: /// 默认值: /// public decimal? Connectmode { get; set; } /// /// 备 注: /// 默认值: /// public string? Devicetype { get; set; } /// /// 备 注:所属汇集软件ID /// 默认值: /// public string? Collectid { get; set; } /// /// 备 注: /// 默认值: /// public string? Addr { get; set; } /// /// 备 注: /// 默认值: /// public int? Deleteflag { get; set; } } }