Shuxia Ning
2024-09-10 049f546f25cabfb5b08e29c54f49d61a544b0395
IStation.Service/02-model/02-schedule/SchedulePump.cs
@@ -21,10 +21,11 @@
            this.Flag = rhs.Flag;
            this.Flow = rhs.Flow;
            this.Head = rhs.Head;
            this.PressureDiff = rhs.PressureDiff;
            this.Power = rhs.Power;
            this.Efficiency = rhs.Efficiency;
            this.Frequency = rhs.Frequency;
            this.Speed = rhs.Speed;
            this.Hz = rhs.Hz;
            this.Rpm = rhs.Rpm;
        }
@@ -39,10 +40,11 @@
            this.Flag = rhs.Flag;
            this.Flow = rhs.Flow;
            this.Head = rhs.Head;
            this.PressureDiff = rhs.PressureDiff;
            this.Power = rhs.Power;
            this.Efficiency = rhs.Efficiency;
            this.Frequency = rhs.Frequency;
            this.Speed = rhs.Speed;
            this.Hz = rhs.Hz;
            this.Rpm = rhs.Rpm;
        }
        /// <summary>
@@ -61,34 +63,39 @@
        public int Flag { get; set; }
        /// <summary>
        /// 总流量
        /// 流量
        /// </summary>
        public double Flow { get; set; }
        /// <summary>
        /// 总扬程
        /// 扬程
        /// </summary>
        public double Head { get; set; }
        /// <summary>
        /// 压差
        /// </summary>
        public double PressureDiff { get; set; }
        /// <summary>
        /// 总功率
        /// 功率
        /// </summary>
        public double Power { get; set; }
        /// <summary>
        /// 总效率
        /// 效率
        /// </summary>
        public double Efficiency { get; set; }
        /// <summary>
        /// 频率
        /// </summary>
        public double Frequency { get; set; }
        public double Hz { get; set; }
        /// <summary>
        /// 转速
        /// </summary>
        public double Speed { get; set; }
        public double Rpm { get; set; }
        /// <summary>