using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("xhs-pumpmap")] [SugarTable("xhs-pumpmap")] public class PumpGroupAndMainMap : BaseModel, IParas, IFlags, ITagName, System.ICloneable { /// /// /// public PumpGroupAndMainMap() { } /// /// /// public PumpGroupAndMainMap(PumpGroupAndMainMap rhs) : base(rhs) { this.ID = rhs.ID; this.PumpGroupID = rhs.PumpGroupID; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.PumpMainID = rhs.PumpMainID; this.TagName = rhs.TagName; this.Description = rhs.Description; } public void Reset(PumpGroupAndMainMap rhs) { this.ID = rhs.ID; this.PumpGroupID = rhs.PumpGroupID; this.Paras = rhs.Paras; this.PumpMainID = rhs.PumpMainID; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.Description = rhs.Description; } /// /// 泵组ID /// public long PumpGroupID { get; set; } /// /// 泵型号ID /// public long PumpMainID { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpGroupAndMainMap Clone() { return (PumpGroupAndMainMap)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }