From 2da6b14a2979c73f2efca596c897650d935ceaa9 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期日, 16 二月 2025 10:00:58 +0800 Subject: [PATCH] 导入项目bug修复 --- Service/PBS.Service.Core/01-entity/02-facility/Facility.cs | 78 +++++++++++++++++++------------------- 1 files changed, 39 insertions(+), 39 deletions(-) diff --git a/Service/PBS.Service.Core/01-entity/02-facility/Facility.cs b/Service/PBS.Service.Core/01-entity/02-facility/Facility.cs index cb5ee06..12d6b7d 100644 --- a/Service/PBS.Service.Core/01-entity/02-facility/Facility.cs +++ b/Service/PBS.Service.Core/01-entity/02-facility/Facility.cs @@ -6,19 +6,19 @@ /// 璁炬柦 ///</summary> [SysType("pbs-facility")] - [SugarTable("pbs_facility")] - public class Facility : BaseEntity , IParas, IFlags, ITagName, IUseStatus, ISorter, System.ICloneable + [SugarTable("pbs_facility")] + public class Facility : BaseEntity, IParas, IFlags, ITagName, IUseStatus, ISorter, System.ICloneable { - /// <summary> - /// - /// </summary> - public Facility() { } + /// <summary> + /// + /// </summary> + public Facility() { } - /// <summary> - /// - /// </summary> - public Facility(Facility rhs) : base(rhs) - { + /// <summary> + /// + /// </summary> + public Facility(Facility rhs) : base(rhs) + { this.PlaceID = rhs.PlaceID; this.PackageID = rhs.PackageID; this.Name = rhs.Name; @@ -37,120 +37,120 @@ this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; - } + } /// <summary> /// 鍦烘墍鏍囪瘑 ///</summary> public long PlaceID { get; set; } - + /// <summary> /// 鎴愬璁惧鏍囪瘑 ///</summary> public long PackageID { get; set; } - + /// <summary> /// 鍚嶇О ///</summary> - [SugarColumn(Length = 50, IsNullable = true)] + [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } - + /// <summary> /// 渚涙按鍗曞厓 ///</summary> public int WaterSupply { get; set; } - + /// <summary> /// 渚涙按妯″紡 ///</summary> public int SupplyMode { get; set; } - + /// <summary> /// 妤煎眰 ///</summary> public int Floor { get; set; } - + /// <summary> /// 灞傞珮 ///</summary> public double FloorHeight { get; set; } - + /// <summary> /// 鎴锋暟 ///</summary> public int Households { get; set; } - + /// <summary> /// 鏈�澶ч渶姘撮噺 ///</summary> public double MaxWaterDemand { get; set; } - + /// <summary> /// 鍏ユ埛绠¢暱 ///</summary> public double ServicePipeLength { get; set; } - + /// <summary> /// 鎭掑畾鍘嬪姏 ///</summary> public double ConstantPressure { get; set; } - + /// <summary> /// 鏈鍘嬪姏 ///</summary> public double TerminalPressure { get; set; } - + /// <summary> /// 鍙傛暟 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Paras { get; set; } - + /// <summary> /// 鏍囩 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Flags { get; set; } - + /// <summary> /// 鏍囧織 ///</summary> - [SugarColumn(Length = 500, IsNullable = true)] + [SugarColumn(Length = 500, IsNullable = true)] public string TagName { get; set; } - + /// <summary> /// 浣跨敤鐘舵�� ///</summary> public int UseStatus { get; set; } - + /// <summary> /// 鎺掑簭鐮� ///</summary> public int SortCode { get; set; } - + /// <summary> /// 璇存槑 ///</summary> - [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] + [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } - + /// <summary> /// /// </summary> public Facility Clone() { - return (Facility)this.MemberwiseClone(); + return (Facility)this.MemberwiseClone(); } object ICloneable.Clone() { - return this.MemberwiseClone(); + return this.MemberwiseClone(); } } } - - + + -- Gitblit v1.9.3