using Yw.Entity; namespace IStation.Entity { /// /// 测点组 /// public partial class MonitorPointGroup : BaseEntity, System.ICloneable, IFlags, ITagName, ITreeSorter { /// /// /// public MonitorPointGroup() { } /// /// /// public MonitorPointGroup(MonitorPointGroup rhs) : base(rhs) { this.BelongType = rhs.BelongType; this.BelongID = rhs.BelongID; this.ParentIds = rhs.ParentIds; this.Name = rhs.Name; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 所属类型 /// public string BelongType { get; set; } /// /// 所属 id /// public long BelongID { get; set; } /// /// 父级 id 列表 /// public string ParentIds { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 标签列表 /// public string Flags { get; set; } /// /// 标记名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public MonitorPointGroup Clone() { return new MonitorPointGroup(this); } object ICloneable.Clone() { return Clone(); } } }