duheng
2024-12-19 56e4b8aab223072bef1e1749b8ee9e499dd04f83
Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveCoefficient.cs
@@ -6,7 +6,7 @@
    /// 业务站
    /// </summary>
    [SysType("assets_valve_coefficient")]
    public class AssetsValveCoefficient : BaseModel, System.ICloneable
    public class AssetsValveCoefficient : BaseModel, ISorter, System.ICloneable
    {
        /// <summary>
        ///
@@ -24,6 +24,8 @@
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        public void Reset(AssetsValveCoefficient rhs)
@@ -36,6 +38,8 @@
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
@@ -74,6 +78,17 @@
        public double MinorLoss { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
        /// <summary>
        /// 说明
        /// </summary>
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string Description { get; set; }
        /// <summary>
        ///
        /// </summary>
        public AssetsValveCoefficient Clone()