From 7b4b2eb7dd57c29a4b3a75de8234ff9afcbe18d4 Mon Sep 17 00:00:00 2001 From: Shuxia Ning <NingShuxia0927@outlook.com> Date: 星期三, 08 一月 2025 15:13:33 +0800 Subject: [PATCH] 水力业务图表 根据运行点延长 --- Service/HStation.Service.Assets.Core/01-entity/04-Fourlink/AssetsFourlinkMain.cs | 30 ++++++++++++++++++++++++------ 1 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/04-Fourlink/AssetsFourlinkMain.cs b/Service/HStation.Service.Assets.Core/01-entity/04-Fourlink/AssetsFourlinkMain.cs index 06bd6c5..c92b68b 100644 --- a/Service/HStation.Service.Assets.Core/01-entity/04-Fourlink/AssetsFourlinkMain.cs +++ b/Service/HStation.Service.Assets.Core/01-entity/04-Fourlink/AssetsFourlinkMain.cs @@ -3,11 +3,11 @@ namespace HStation.Entity { /// <summary> - /// 涓氬姟绔� + /// 鍥涢�氬瀷鍙� /// </summary> [SysType("assets_fourlink_main")] [SugarTable("assets_fourlink_main")] - public class AssetsFourlinkMain : BaseEntity, ISorter, System.ICloneable + public class AssetsFourlinkMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable { /// <summary> /// @@ -22,7 +22,10 @@ this.Material = rhs.Material; this.Caliber = rhs.Caliber; this.MinorLoss = rhs.MinorLoss; - this.KeyWord = rhs.KeyWord; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; + this.KeyWords = rhs.KeyWords; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } @@ -48,6 +51,21 @@ public string Material { 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 double MinorLoss { get; set; } @@ -55,7 +73,7 @@ /// <summary> /// 璇嗗埆鍏抽敭瀛� /// </summary> - public string KeyWord { get; set; } + public string KeyWords { get; set; } /// <summary> /// 鎺掑簭鐮� @@ -70,9 +88,9 @@ /// <summary> /// /// </summary> - public AssetsPumpGroupAndMainMap Clone() + public AssetsPumpGroupAndMainMapping Clone() { - return (AssetsPumpGroupAndMainMap)this.MemberwiseClone(); + return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone(); } object ICloneable.Clone() -- Gitblit v1.9.3