using HStation.Assets; using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("xhs_equipmentmanage")] public class AdaptingManage : BaseModel, ISorter, System.ICloneable { /// /// /// public AdaptingManage() { } public AdaptingManage(AdaptingManage rhs) { this.AdaptingType = rhs.AdaptingType; this.Coefficient = rhs.Coefficient; this.Caliber = rhs.Caliber; this.Material = rhs.Material; this.SortCode = rhs.SortCode; this.Name = rhs.Name; this.Description = rhs.Description; } public void Reset(AdaptingManage rhs) { this.AdaptingType = rhs.AdaptingType; this.Coefficient = rhs.Coefficient; this.Caliber = rhs.Caliber; this.Material = rhs.Material; this.SortCode = rhs.SortCode; this.Name = rhs.Name; this.Description = rhs.Description; } /// /// 设备类型(弯头,三通,四通....) /// public eAdaptingType AdaptingType { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 口径 /// public string Caliber { get; set; } /// /// 材料 /// public string Material { get; set; } /// /// 系数 /// public double? Coefficient { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpGroupAndMainMap Clone() { return (PumpGroupAndMainMap)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }