using System; namespace IStation.Entity { /// /// 数据来源 /// public class MonitorDataSources : BaseEntity, System.ICloneable, IFlags, ITagName, ISorter { public MonitorDataSources() { } public MonitorDataSources(MonitorDataSources rhs) : base(rhs) { this.Name = rhs.Name; this.DataSources = rhs.DataSources; this.DataSourcesMappings = rhs.DataSourcesMappings; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 数据来源 /// public string DataSources { get; set; } /// /// 数据来源映射列表 /// public string DataSourcesMappings { get; set; } /// /// 标签列表 /// public string Flags { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } public MonitorDataSources Clone() { return (MonitorDataSources)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }