From ca1ccd0dd9f2d6936368f07d14a2b29b309fd151 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 04 十二月 2024 15:59:25 +0800 Subject: [PATCH] 增加单独匹配界面 --- Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs b/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs index 71788fb..db4d1ba 100644 --- a/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs +++ b/Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs @@ -6,7 +6,7 @@ /// 绠¢亾绠$悊 /// </summary> [SysType("assets_pipe_main")] - public class AssetsPipeMain : BaseModel, ISorter, System.ICloneable + public class AssetsPipeMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable { /// <summary> /// @@ -25,6 +25,9 @@ this.Darcy = rhs.Darcy; this.Manning = rhs.Manning; this.KeyWord = rhs.KeyWord; + 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; } @@ -41,6 +44,9 @@ this.Darcy = rhs.Darcy; this.Manning = rhs.Manning; this.KeyWord = rhs.KeyWord; + 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; } @@ -71,6 +77,21 @@ public List<string> KeyWord { get; set; } /// <summary> + /// 鍙傛暟 + /// </summary> + public Dictionary<string, string> Paras { get; set; } + + /// <summary> + /// 鏍囩 + /// </summary> + public List<string> Flags { get; set; } + + /// <summary> + /// 鏍囧織 + /// </summary> + public string TagName { get; set; } + + /// <summary> /// 绯绘暟 /// </summary> public double MinorLoss { get; set; } -- Gitblit v1.9.3