duheng
2024-12-04 b32c0a21755ac3e86df0242d993398773cb627f2
Service/HStation.Service.Assets.Core/01-entity/15-Tank/AssetsTankMain.cs
@@ -12,7 +12,8 @@
         /// <summary>
         ///
         /// </summary>
         public AssetsTankMain() { }
        public AssetsTankMain()
        { }
         /// <summary>
         ///
@@ -21,9 +22,10 @@
         {
            this.Name = rhs.Name;
            this.SeriesID = rhs.SeriesID;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.MinLevel = rhs.MinLevel;
            this.MaxLevel = rhs.MaxLevel;
            this.DN = rhs.DN;
            this.OverFlow = rhs.OverFlow;
            this.KeyWord = rhs.KeyWord;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
@@ -44,20 +46,29 @@
        public long SeriesID { get; set; }
         
        /// <summary>
        /// 口径
        /// 最低水位
        ///</summary>
        public double? Caliber { get; set; }
        public double MinLevel { get; set; }
         
        /// <summary>
        /// 材料
        /// 最高水位
        ///</summary>
        [SugarColumn(Length = 255, IsNullable = true)]
        public string Material { get; set; }
        public double MaxLevel { get; set; }
         
        /// <summary>
        /// 局阻系数
        /// 公称直径
        ///</summary>
        public double MinorLoss { get; set; }
        public double DN { get; set; }
        /// <summary>
        /// 最小容积
        /// </summary>
        public double MinVol { get; set; }
        /// <summary>
        /// 是否允许溢流
        /// </summary>
        public bool OverFlow { get; set; }
         
        /// <summary>
        /// 识别关键字 
@@ -94,7 +105,6 @@
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]  
        public string Description { get; set; }
         
        /// <summary>
        ///
        /// </summary>
@@ -107,10 +117,5 @@
        {
         return this.MemberwiseClone();
        }
    }
}