using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("xhs_valvegroup")] [SugarTable("xhs_valvegroup")] public class ValveGroup : BaseModel, ISorter, System.ICloneable { /// /// /// public ValveGroup() { } /// /// /// public ValveGroup(ValveGroup rhs) : base(rhs) { this.Name = rhs.Name; this.ID = rhs.ID; this.Description = rhs.Description; this.ValveSeriesID = rhs.ValveSeriesID; this.SortCode = rhs.SortCode; } public void Reset(ValveGroup rhs) { this.Name = rhs.Name; this.ID = rhs.ID; this.Description = rhs.Description; this.ValveSeriesID = rhs.ValveSeriesID; this.SortCode = rhs.SortCode; } /// /// 阀门系列ID /// public long ValveSeriesID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpGroup Clone() { return (PumpGroup)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }