duheng
2024-10-14 3b08b5c772ffc0c10644c1aaa9f7b2447582c858
WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs
@@ -5,16 +5,16 @@
{
    public class SysTypeViewModel
    {
        public SysTypeViewModel(Yw.Vmo.SysType rhs)
        public SysTypeViewModel(Yw.Vmo.SysTypeVmo rhs)
        {
            this.ID = rhs.ID;
            this.Description = rhs.Description;
            this.Name = rhs.Name;
            if (rhs.ExtendType == Yw.Vmo.eExtendType.None)
            if (rhs.ExtendType == Yw.Basic.eExtendType.None)
            {
                this.ExtendTypeDisPlayName = "无";
            }
            else if (rhs.ExtendType == Yw.Vmo.eExtendType.Config)
            else if (rhs.ExtendType == Yw.Basic.eExtendType.Config)
            {
                this.ExtendTypeDisPlayName = "配置";
            }
@@ -27,16 +27,16 @@
            this.SortCode = rhs.SortCode;
        }
        public void Reset(Yw.Vmo.SysType rhs)
        public void Reset(Yw.Vmo.SysTypeVmo rhs)
        {
            this.ID = rhs.ID;
            this.Description = rhs.Description;
            this.Name = rhs.Name;
            if (rhs.ExtendType == Yw.Vmo.eExtendType.None)
            if (rhs.ExtendType == Yw.Basic.eExtendType.None)
            {
                this.ExtendTypeDisPlayName = "无";
            }
            else if (rhs.ExtendType == Yw.Vmo.eExtendType.Config)
            else if (rhs.ExtendType == Yw.Basic.eExtendType.Config)
            {
                this.ExtendTypeDisPlayName = "配置";
            }