namespace Yw.WinFrmUI.Phart
|
{
|
public class PumpSectPointViewModel
|
{
|
public PumpSectPointViewModel() { }
|
public PumpSectPointViewModel(PumpSectPointViewModel rhs)
|
{
|
this.Id = rhs.Id;
|
this.Name = rhs.Name;
|
this.QueryQ = rhs.QueryQ;
|
this.QueryH = rhs.QueryH;
|
this.QueryP = rhs.QueryP;
|
this.QueryE = rhs.QueryE;
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public string Id { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public string QueryQ { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public string QueryH { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public string QueryE { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public string QueryP { get; set; }
|
|
}
|
|
|
}
|