From 71ff3ccde064c104db61fa28300b039456c0ba06 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 14 八月 2024 17:18:18 +0800 Subject: [PATCH] 冲突 --- Service/HStation.Service.Assets.Core/01-entity/PumpGroup.cs | 81 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 81 insertions(+), 0 deletions(-) diff --git a/Service/HStation.Service.Assets.Core/01-entity/PumpGroup.cs b/Service/HStation.Service.Assets.Core/01-entity/PumpGroup.cs new file mode 100644 index 0000000..e4e8553 --- /dev/null +++ b/Service/HStation.Service.Assets.Core/01-entity/PumpGroup.cs @@ -0,0 +1,81 @@ +锘縰sing Yw.Entity; + +namespace HStation.Entity +{ + /// <summary> + /// 涓氬姟绔� + /// </summary> + [SysType("xhs_pumpgroup")] + [SugarTable("xhs_pumpgroup")] + public class PumpGroup : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable + { + /// <summary> + /// + /// </summary> + public PumpGroup() + { } + + /// <summary> + /// + /// </summary> + public PumpGroup(PumpGroup rhs) : base(rhs) + { + this.ID = rhs.ID; + this.PumpSeriesID = rhs.PumpSeriesID; + this.Name = rhs.Name; + this.Paras = rhs.Paras; + this.Flags = rhs.Flags; + this.TagName = rhs.TagName; + this.SortCode = rhs.SortCode; + this.Description = rhs.Description; + } + + /// <summary> + /// 娉电郴鍒桰D + /// </summary> + public long PumpSeriesID { get; set; } + + /// <summary> + /// 鍚嶇О + /// </summary> + public string Name { 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; } + + /// <summary> + /// 璇存槑 + /// </summary> + public string Description { get; set; } + + /// <summary> + /// + /// </summary> + public PumpGroup Clone() + { + return (PumpGroup)this.MemberwiseClone(); + } + + object ICloneable.Clone() + { + return this.MemberwiseClone(); + } + } +} \ No newline at end of file -- Gitblit v1.9.3