| | |
| | | using Yw.Model; |
| | | using HStation.Assets; |
| | | using Yw.Model; |
| | | |
| | | namespace HStation.Model |
| | | { |
| | |
| | | /// 业务站 |
| | | /// </summary> |
| | | [SysType("assets_elbow_main")] |
| | | public class ElbowMain : BaseModel, ISorter, System.ICloneable |
| | | public class AssetsElbowMain : BaseModel, ISorter, System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public ElbowMain() |
| | | public AssetsElbowMain() |
| | | { } |
| | | |
| | | public ElbowMain(ElbowMain rhs) |
| | | public AssetsElbowMain(AssetsElbowMain rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.SeriesID = rhs.SeriesID; |
| | |
| | | this.MaterialName = rhs.MaterialName; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Name = rhs.Name; |
| | | this.Angle = rhs.Angle; |
| | | this.Description = rhs.Description; |
| | | this.ConnectionLength = rhs.ConnectionLength; |
| | | } |
| | | |
| | | public void Reset(ElbowMain rhs) |
| | | public void Reset(AssetsElbowMain rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.SeriesID = rhs.SeriesID; |
| | |
| | | this.MaterialName = rhs.MaterialName; |
| | | this.SortCode = rhs.SortCode; |
| | | this.Name = rhs.Name; |
| | | this.Angle = rhs.Angle; |
| | | this.Description = rhs.Description; |
| | | this.ConnectionLength = rhs.ConnectionLength; |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | /// 口径 |
| | | /// </summary> |
| | | public double? Caliber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 管路连接长度 |
| | | /// </summary> |
| | | public eLengthType? ConnectionLength { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 角度 |
| | | /// </summary> |
| | | public int? Angle { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public PumpGroupAndMainMap Clone() |
| | | public AssetsPumpGroupAndMainMap Clone() |
| | | { |
| | | return (PumpGroupAndMainMap)this.MemberwiseClone(); |
| | | return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |