duheng
2024-06-23 7a3d178b414201f7c3af3d000468159cfead00ed
WinFrmUI/HStation.WinFrmUI.Xhs.Project/01-project/00-ViewModel/ProjectViewModel.cs
@@ -13,6 +13,7 @@
            this.PrjNumber = rhs.PrjNumber;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.Address = rhs.Address;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
@@ -21,7 +22,7 @@
            this.CreateUserID = rhs.CreateUserID;
            this.Version = rhs.Version;
            this.MapPosition = rhs.MapPosition;
            this.CreateDisplayName = CreateUserID.ToString();
            this.CreateUserDisplayName = rhs.CreateUserDisplayName;
        }
        public void Reset(ProjectViewModel rhs)
@@ -38,7 +39,7 @@
            this.CreateUserID = rhs.CreateUserID;
            this.Version = rhs.Version;
            this.MapPosition = rhs.MapPosition;
            this.CreateDisplayName = CreateUserID.ToString();
            this.CreateUserDisplayName = rhs.CreateUserDisplayName;
        }
        public void Reset(UpdateXhsProjectInput rhs)
@@ -55,12 +56,7 @@
            this.CreateUserID = rhs.CreateUserID;
            this.Version = rhs.Version;
            this.MapPosition = rhs.MapPosition;
            this.CreateDisplayName = CreateUserID.ToString();
            this.CreateUserDisplayName = rhs.CreateUserDisplayName;
        }
        /// <summary>
        /// 创建人显示名字
        /// </summary>
        public string CreateDisplayName { get; set; }
    }
}