WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropViewModel.cs
@@ -2,9 +2,9 @@
namespace HStation.WinFrmUI.Basic
{
    public class SysPropViewModel : Yw.Dto.SysPropDto
    public class SysPropViewModel
    {
        public SysPropViewModel(SysPropDto rhs)
        public SysPropViewModel(Yw.Vmo.SysPropVmo rhs)
        {
            ID = rhs.ID;
            GroupID = rhs.GroupID;
@@ -46,7 +46,7 @@
            Description = rhs.Description;
        }
        public void Reset(UpdateSysPropInput rhs)
        public void Reset(Yw.Vmo.SysPropVmo rhs)
        {
            ID = rhs.ID;
            Name = rhs.Name;
@@ -88,5 +88,27 @@
        public string ExtendTypeDisPlayName { get; set; }
        public string FormatDisPlayName { get; set; }
        public long ID { get; set; }
        public long GroupID { get; set; }
        public long TypeID { get; set; }
        public string Name { get; set; }
        public string Code { get; set; }
        public Yw.Basic.ePropFormat Format { get; set; }
        public string UnitName { get; set; }
        public bool IsNull { get; set; }
        public string DefaultValue { get; set; }
        public int SortCode { get; set; }
        public string Description { get; set; }
    }
}