using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("assets_threelink_main")] public class AssetsThreelinkMain : BaseModel, ISorter, System.ICloneable { /// /// /// public AssetsThreelinkMain() { } public AssetsThreelinkMain(AssetsThreelinkMain rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.Coefficient = rhs.Coefficient; this.Caliber = rhs.Caliber; this.KeyWord = rhs.KeyWord; this.IsDefault = rhs.IsDefault; this.MaterialName = rhs.MaterialName; this.SortCode = rhs.SortCode; this.Name = rhs.Name; this.Description = rhs.Description; this.RunThroughCoefficient = rhs.RunThroughCoefficient; this.BranchThroughCoefficient = rhs.BranchThroughCoefficient; } public void Reset(AssetsThreelinkMain rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.Coefficient = rhs.Coefficient; this.Caliber = rhs.Caliber; this.MaterialName = rhs.MaterialName; this.KeyWord = rhs.KeyWord; this.IsDefault = rhs.IsDefault; this.SortCode = rhs.SortCode; this.Name = rhs.Name; this.Description = rhs.Description; this.RunThroughCoefficient = rhs.RunThroughCoefficient; this.BranchThroughCoefficient = rhs.BranchThroughCoefficient; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 口径 /// public double? Caliber { get; set; } /// /// 材料 /// public string MaterialName { get; set; } /// /// 系数 /// public double? Coefficient { get; set; } /// /// 运行通过损失系数 /// public double? RunThroughCoefficient { get; set; } /// /// 支管通过损失系数 /// public double? BranchThroughCoefficient { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 识别关键字 /// public string KeyWord { get; set; } /// /// 是否默认 /// public bool IsDefault { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public AssetsPumpGroupAndMainMap Clone() { return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }