From 46db25ec513ceb5dbfa78c1ea447003b41f1c900 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期五, 27 十二月 2024 10:16:23 +0800 Subject: [PATCH] 资产--单独匹配修改 --- Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs | 28 +++++++++++++++++++++++----- 1 files changed, 23 insertions(+), 5 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs b/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs index d2f0544..3d1d9ea 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs @@ -7,7 +7,7 @@ /// </summary> [SysType("assets_pipe_main")] [SugarTable("assets_pipe_main")] - public class AssetsPipeMain : BaseEntity, ISorter, System.ICloneable + public class AssetsPipeMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable { /// <summary> /// @@ -26,7 +26,10 @@ this.Hazen = rhs.Hazen; this.Darcy = rhs.Darcy; this.Manning = rhs.Manning; - this.KeyWord = rhs.KeyWord; + this.KeyWords = rhs.KeyWords; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } @@ -59,7 +62,22 @@ /// <summary> /// 璇嗗埆鍏抽敭瀛� /// </summary> - public string KeyWord { get; set; } + public string KeyWords { get; set; } + + /// <summary> + /// 鍙傛暟 + /// </summary> + public string Paras { get; set; } + + /// <summary> + /// 鏍囩 + /// </summary> + public string Flags { get; set; } + + /// <summary> + /// 鏍囧織 + /// </summary> + public string TagName { get; set; } /// <summary> ///Hazen @@ -89,9 +107,9 @@ /// <summary> /// /// </summary> - public AssetsPumpGroupAndMainMap Clone() + public AssetsPumpGroupAndMainMapping Clone() { - return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); + return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone(); } object ICloneable.Clone() -- Gitblit v1.9.3