From 7bf79c6515f27ba9be8d2b3fb4e3ceae5718e3e5 Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期四, 18 七月 2024 17:48:45 +0800
Subject: [PATCH] 提交修改

---
 Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs |   76 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs b/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs
new file mode 100644
index 0000000..01d0d6d
--- /dev/null
+++ b/Service/HStation.Service.Assets.Core/01-entity/PumpGroupAndMainMap.cs
@@ -0,0 +1,76 @@
+锘縰sing SqlSugar;
+using Yw.Entity;
+
+namespace HStation.Entity
+{
+    /// <summary>
+    /// 涓氬姟绔�
+    /// </summary>
+    [SysType("xhs_pumpmap")]
+    [SugarTable("xhs_pumpmap")]
+    public class PumpGroupAndMainMap : BaseEntity, IParas, IFlags, ITagName, System.ICloneable
+    {
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap()
+        { }
+
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap(PumpGroupAndMainMap rhs) : base(rhs)
+        {
+            this.ID = rhs.ID;
+            this.PumpGroupID = rhs.PumpGroupID;
+            this.Paras = rhs.Paras;
+            this.Flags = rhs.Flags;
+            this.PumpMainID = rhs.PumpMainID;
+            this.TagName = rhs.TagName;
+            this.Description = rhs.Description;
+        }
+
+        /// <summary>
+        /// 娉电粍ID
+        /// </summary>
+        public long PumpGroupID { get; set; }
+
+        /// <summary>
+        /// 娉靛瀷鍙稩D
+        /// </summary>
+        public long PumpMainID { 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 string Description { get; set; }
+
+        /// <summary>
+        ///
+        /// </summary>
+        public PumpGroupAndMainMap Clone()
+        {
+            return (PumpGroupAndMainMap)this.MemberwiseClone();
+        }
+
+        object ICloneable.Clone()
+        {
+            return this.MemberwiseClone();
+        }
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3