From dd0784fe7f14e3062db1bbca54f642b3142209ff Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 04 十二月 2024 20:32:37 +0800 Subject: [PATCH] 匹配方法修改 --- Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs index 2985bda..894d816 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs @@ -7,7 +7,7 @@ /// </summary> [SysType("assets_compressor_main")] [SugarTable("assets_compressor_main")] - public class AssetsCompressorMain : BaseEntity, ISorter, System.ICloneable + public class AssetsCompressorMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable { /// <summary> /// @@ -24,6 +24,9 @@ this.Material = rhs.Material; this.MinorLoss = rhs.MinorLoss; this.KeyWord = rhs.KeyWord; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } @@ -59,6 +62,21 @@ public string KeyWord { get; set; } /// <summary> + /// 鍙傛暟 + /// </summary> + public string Paras { get; set; } + + /// <summary> + /// 鏍囩 + /// </summary> + public string Flags { get; set; } + + /// <summary> + /// 鏍囧織 + /// </summary> + public string TagName { get; set; } + + /// <summary> /// 鎺掑簭鐮� /// </summary> public int SortCode { get; set; } -- Gitblit v1.9.3