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/06-PipeLine/AssetsPipeSeries.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeSeries.cs b/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeSeries.cs
index e8be824..a3a0985 100644
--- a/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeSeries.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeSeries.cs
@@ -23,8 +23,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;
@@ -36,8 +36,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