Shuxia Ning
2025-01-08 687a3dfd095bc8c099b7fa6e65f0dc699fdc8f1d
Service/HStation.Service.Assets.Core/01-entity/20-Translation/AssetsTranslationFactor.cs
@@ -21,8 +21,11 @@
        public AssetsTranslationFactor(AssetsTranslationFactor rhs) : base(rhs)
        {
            this.Name = rhs.Name;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.Diameter = rhs.Diameter;
            this.StartDiameter = rhs.StartDiameter;
            this.EndDiameter = rhs.EndDiameter;
            this.TranslationType = rhs.TranslationType;
            this.MinorLoss = rhs.MinorLoss;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
@@ -35,17 +38,32 @@
        public string Name { get; set; }
        /// <summary>
        /// 口径
        ///</summary>
        public double? Caliber { get; set; }
        /// <summary>
        /// 材料
        ///</summary>
        [SugarColumn(Length = 255, IsNullable = true)]
        public string Material { get; set; }
        /// <summary>
        /// 直径
        /// </summary>
        public double Diameter { get; set; }
        /// <summary>
        /// 上游直径
        /// </summary>
        public double StartDiameter { get; set; }
        /// <summary>
        /// 下游直径
        /// </summary>
        public double EndDiameter { get; set; }
        /// <summary>
        /// 过渡件类型
        /// </summary>
        public int TranslationType { get; set; }
        /// <summary>
        /// 局阻系数
        ///</summary>
        public double MinorLoss { get; set; }