Shuxia Ning
2024-10-29 a434b83043a5646d5dd99c3e934cc8a30ac6165f
Service/HStation.Service.Assets.Core/02-model/06-PumpMainManage/PumpMainAndPartMap.cs
@@ -5,13 +5,13 @@
    /// <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;
@@ -19,7 +19,7 @@
            this.SeriesID = rhs.SeriesID;
        }
        public void Reset(PumpMainAndPartMap rhs)
        public void Reset(AssetsPumpMainAndPartMap rhs)
        {
            this.PumpPartID = rhs.PumpPartID;
            this.PumpID = rhs.PumpID;
@@ -42,9 +42,9 @@
        /// </summary>
        public long PumpPartID { get; set; }
        public PumpMain Clone()
        public AssetsPumpMain Clone()
        {
            return (PumpMain)this.MemberwiseClone();
            return (AssetsPumpMain)this.MemberwiseClone();
        }
        object ICloneable.Clone()