duheng
2024-12-10 26917739c47252ecdc3b8f43eca6ebaf9cba6ac4
Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerPropContent.cs
@@ -6,27 +6,29 @@
    /// 属性值
    /// </summary>
    [SysType("assets_exchanger_part_prop_content")]
    public class AssetsExchangerPropContent : BaseModel, System.ICloneable
    public class AssetsExchangerPropContent : BaseModel, ITagName, System.ICloneable
    {
        public AssetsExchangerPropContent()
        { }
        public AssetsExchangerPropContent(AssetsExchangerPropContent rhs)
        {
            this.SeriesID = rhs.SeriesID;
            this.PropID = rhs.PropID;
            this.ID = rhs.ID;
            this.SeriesID = rhs.SeriesID;
            this.PartID = rhs.PartID;
            this.PropID = rhs.PropID;
            this.PropValue = rhs.PropValue;
            this.TagName = rhs.TagName;
        }
        public void Reset(AssetsExchangerPropContent rhs)
        {
            this.SeriesID = rhs.SeriesID;
            this.PropID = rhs.PropID;
            this.ID = rhs.ID;
            this.SeriesID = rhs.SeriesID;
            this.PartID = rhs.PartID;
            this.PropID = rhs.PropID;
            this.PropValue = rhs.PropValue;
            this.TagName = rhs.TagName;
        }
        /// <summary>
@@ -50,6 +52,11 @@
        public string PropValue { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        ///
        /// </summary>
        public AssetsPumpMain Clone()