From 63834af1872ab37f22a5e67b5df20a082f7a052a Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期二, 24 十二月 2024 16:40:00 +0800 Subject: [PATCH] 修改资产--四通 --- Vmo/HStation.Vmo.Assets.Core/08-FourLink/AssetsFourlinkSeriesVmo.cs | 38 +++++++++++++++++++++++++++++++++++++- 1 files changed, 37 insertions(+), 1 deletions(-) diff --git a/Vmo/HStation.Vmo.Assets.Core/08-FourLink/AssetsFourlinkSeriesVmo.cs b/Vmo/HStation.Vmo.Assets.Core/08-FourLink/AssetsFourlinkSeriesVmo.cs index 8e21f35..c5a5849 100644 --- a/Vmo/HStation.Vmo.Assets.Core/08-FourLink/AssetsFourlinkSeriesVmo.cs +++ b/Vmo/HStation.Vmo.Assets.Core/08-FourLink/AssetsFourlinkSeriesVmo.cs @@ -3,6 +3,42 @@ public class AssetsFourlinkSeriesVmo { /// <summary> + /// + /// </summary> + public AssetsFourlinkSeriesVmo() + { } + + /// <summary> + /// + /// </summary> + public AssetsFourlinkSeriesVmo(AssetsFourlinkSeriesDto rhs) + { + this.ID = rhs.ID; + this.ParentID = rhs.ParentID; + this.Name = rhs.Name; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; + this.SortCode = rhs.SortCode; + this.Description = rhs.Description; + } + + /// <summary> + /// + /// </summary> + public AssetsFourlinkSeriesVmo(AssetsFourlinkSeriesVmo rhs) + { + this.ID = rhs.ID; + this.ParentID = rhs.ParentID; + this.Name = rhs.Name; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; + this.SortCode = rhs.SortCode; + this.Description = rhs.Description; + } + + /// <summary> /// id /// </summary> public long ID { get; set; } @@ -15,7 +51,7 @@ /// <summary> /// 鐖剁骇ID /// </summary> - public List<long> ParentIds { get; set; } + public long ParentID { get; set; } /// <summary> /// 鎵�灞炵被鍒獻D -- Gitblit v1.9.3