From 13e69c09c5ac97e0294d64617dfb934e34bb4264 Mon Sep 17 00:00:00 2001 From: Shuxia Ning <NingShuxia0927@outlook.com> Date: 星期一, 02 十二月 2024 17:11:13 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageSeries.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageSeries.cs b/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageSeries.cs index 29b3894..2ca2abf 100644 --- a/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageSeries.cs +++ b/Service/HStation.Service.Assets.Core/02-model/13-Package/AssetsPackageSeries.cs @@ -22,8 +22,8 @@ this.ParentIds = rhs.ParentIds; this.CatalogID = rhs.CatalogID; this.Name = rhs.Name; - this.Paras = rhs.Paras; - this.Flags = rhs.Flags; + this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); + this.Flags = rhs.Flags?.ToList(); this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; @@ -34,8 +34,8 @@ this.ParentIds = rhs.ParentIds; this.CatalogID = rhs.CatalogID; this.Name = rhs.Name; - this.Paras = rhs.Paras; - this.Flags = rhs.Flags; + this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); + this.Flags = rhs.Flags?.ToList(); this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; -- Gitblit v1.9.3