duheng
2024-07-10 2a41fffc9f962999ba163c3b471873b6b96f05bc
WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs
ÎļþÃû´Ó WinFrmUI/HStation.WinFrmUI.Xhs.Project/04-TypeManage/00-viewModel/TypeViewModel.cs ÐÞ¸Ä
@@ -1,10 +1,10 @@
using Yw.Dto;
namespace HStation.WinFrmUI.Xhs
namespace HStation.WinFrmUI.Basic
{
    public class TypeViewModel : Yw.Dto.SysTypeDto
    public class SysTypeViewModel : Yw.Dto.SysTypeDto
    {
        public TypeViewModel(SysTypeDto rhs)
        public SysTypeViewModel(SysTypeDto rhs)
        {
            this.ID = rhs.ID;
            this.Description = rhs.Description;
@@ -31,11 +31,11 @@
            this.ID = rhs.ID;
            this.Description = rhs.Description;
            this.Name = rhs.Name;
            if (ExtendType == Yw.Basic.eExtendType.None)
            if (rhs.ExtendType == Yw.Basic.eExtendType.None)
            {
                this.ExtendTypeDisPlayName = "无";
            }
            else if (ExtendType == Yw.Basic.eExtendType.Config)
            else if (rhs.ExtendType == Yw.Basic.eExtendType.Config)
            {
                this.ExtendTypeDisPlayName = "配置";
            }