ÎļþÃû´Ó IStation.Service/02-model/01-analysis/AnalysisConclusion.cs ÐÞ¸Ä |
| | |
| | | namespace IStation.Model |
| | | { |
| | | /// <summary> |
| | | /// åæç»è®º |
| | | /// åæåæ° |
| | | /// </summary> |
| | | public class AnalysisConclusion : BaseModel, System.ICloneable |
| | | public class AnalysisParameter : BaseModel, System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AnalysisConclusion() { } |
| | | public AnalysisParameter() { } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AnalysisConclusion(AnalysisConclusion rhs) |
| | | public AnalysisParameter(AnalysisParameter rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CombineID = rhs.CombineID; |
| | | this.Pump = rhs.Pump; |
| | | this.PumpID = rhs.PumpID; |
| | | this.Hz = rhs.Hz; |
| | | this.Head = rhs.Head; |
| | | this.PressureDiff = rhs.PressureDiff; |
| | | this.Flow = rhs.Flow; |
| | | this.Power = rhs.Power; |
| | | this.WP = rhs.WP; |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public void Reset(AnalysisConclusion rhs) |
| | | public void Reset(AnalysisParameter rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CombineID = rhs.CombineID; |
| | | this.Pump = rhs.Pump; |
| | | this.PumpID = rhs.PumpID; |
| | | this.Hz = rhs.Hz; |
| | | this.Head = rhs.Head; |
| | | this.PressureDiff = rhs.PressureDiff; |
| | | this.Flow = rhs.Flow; |
| | | this.Power = rhs.Power; |
| | | this.WP = rhs.WP; |
| | |
| | | /// <summary> |
| | | /// ç»åæ è¯ |
| | | /// </summary> |
| | | public long CombineID { get; set; } |
| | | public long PumpID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ³µ1 |
| | | /// é¢ç |
| | | /// </summary> |
| | | public double Pump { get; set; } |
| | | public double Hz { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¬ç¨ |
| | | /// </summary> |
| | | public double Head { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åå·® |
| | | /// </summary> |
| | | public double PressureDiff { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ»æµé |
| | |
| | | /// |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | public AnalysisConclusion Clone() |
| | | public AnalysisParameter Clone() |
| | | { |
| | | return (AnalysisConclusion)this.MemberwiseClone(); |
| | | return (AnalysisParameter)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |