duheng
2024-12-20 3d69e0e8d953690b588c8a868bcf090f6119186b
WinFrmUI/HStation.WinFrmUI.Assets.Core/14-tank/TankViewModel.cs
@@ -1,4 +1,5 @@
using System.ComponentModel;
using HStation.Vmo;
using System.ComponentModel;
namespace HStation.WinFrmUI.Assets
{
@@ -20,6 +21,7 @@
            this.KeyWord = string.Join(",", rhs.KeyWord);
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.Vmo = rhs;
        }
        public void Reset(Vmo.AssetsTankMainVmo rhs)
@@ -34,6 +36,7 @@
            this.KeyWord = string.Join(",", rhs.KeyWord);
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.Vmo = rhs;
        }
        /// <summary>
@@ -103,5 +106,7 @@
        [DisplayName("说明")]
        [Browsable(true)]
        public string Description { get; set; }
        public AssetsTankMainVmo Vmo { get; set; }
    }
}