lixiaojun
2024-11-30 ff39bbf7e3a3d02f7f051ce1bee06cec007be3ff
Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorMain.cs
@@ -15,6 +15,19 @@
        public AssetsCompressorMain()
        { }
        public AssetsCompressorMain(AssetsCompressorMain rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.SeriesID = rhs.SeriesID;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.KeyWord = rhs.KeyWord;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
        /// 名称
        /// </summary>
@@ -26,19 +39,19 @@
        public long SeriesID { get; set; }
        /// <summary>
        /// 口径
        /// </summary>
        public double? Caliber { get; set; }
        /// <summary>
        /// 材料
        /// </summary>
        public string MaterialName { get; set; }
        public string Material { get; set; }
        /// <summary>
        /// 系数
        /// </summary>
        public double? Coefficient { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
        public double MinorLoss { get; set; }
        /// <summary>
        /// 识别关键字
@@ -46,9 +59,9 @@
        public string KeyWord { get; set; }
        /// <summary>
        /// 是否默认
        /// 排序码
        /// </summary>
        public int IsDefault { get; set; }
        public int SortCode { get; set; }
        /// <summary>
        /// 说明
@@ -58,9 +71,9 @@
        /// <summary>
        ///
        /// </summary>
        public AssetsPumpGroupAndMainMap Clone()
        public AssetsPumpGroupAndMainMapping Clone()
        {
            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
        }
        object ICloneable.Clone()