| | |
| | | /// <summary> |
| | | /// 泵产品映射 |
| | | /// </summary> |
| | | [SysType("pump_main_partmapping")] |
| | | public class PumpMainAndPartMap : BaseModel, System.ICloneable |
| | | [SysType("assets_pump_main_partmapping")] |
| | | public class AssetsPumpMainAndPartMap : BaseModel, System.ICloneable |
| | | { |
| | | public PumpMainAndPartMap() |
| | | public AssetsPumpMainAndPartMap() |
| | | { } |
| | | |
| | | public PumpMainAndPartMap(PumpMainAndPartMap rhs) |
| | | public AssetsPumpMainAndPartMap(AssetsPumpMainAndPartMap rhs) |
| | | { |
| | | this.PumpPartID = rhs.PumpPartID; |
| | | this.PumpID = rhs.PumpID; |
| | |
| | | this.SeriesID = rhs.SeriesID; |
| | | } |
| | | |
| | | public void Reset(PumpMainAndPartMap rhs) |
| | | public void Reset(AssetsPumpMainAndPartMap rhs) |
| | | { |
| | | this.PumpPartID = rhs.PumpPartID; |
| | | this.PumpID = rhs.PumpID; |
| | |
| | | /// </summary> |
| | | public long PumpPartID { get; set; } |
| | | |
| | | public PumpMain Clone() |
| | | public AssetsPumpMain Clone() |
| | | { |
| | | return (PumpMain)this.MemberwiseClone(); |
| | | return (AssetsPumpMain)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |