using System.Collections.Generic;
|
|
namespace PBS.WinFrmUI.Hydro.Dispatch.Model
|
{
|
/// <summary>
|
/// 复杂
|
/// </summary>
|
public class RequestParasComplex
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public RequestParasComplex() { }
|
|
/// <summary>
|
/// 公司标识
|
/// </summary>
|
public long ProjectID { get; set; }
|
|
/// <summary>
|
/// 泵站标识
|
/// </summary>
|
public long StationID { get; set; }
|
|
/// <summary>
|
/// 方案数量
|
/// </summary>
|
public int SchemeNumber { get; set; } = 0;
|
|
/// <summary>
|
/// 方案排序
|
/// </summary>
|
public PBS.WinFrmUI.Hydro.Dispatch.Model.eAnaSchemeSortType SchemeSortType { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public enum ePressValueType
|
{
|
/// <summary>
|
///
|
/// </summary>
|
压力 = 0,
|
/// <summary>
|
///
|
/// </summary>
|
扬程 = 1
|
}
|
/// <summary>
|
/// 压力值类型 0:表示压力 1:表示扬程
|
/// </summary>
|
public ePressValueType PressValueType { get; set; } = ePressValueType.压力;
|
|
/// <summary>
|
/// 出口管路
|
/// </summary>
|
public List<OutletPipePara> OutletPipePara { get; set; }
|
|
/// <summary>
|
/// 进口管路
|
/// </summary>
|
public List<InletPipePara> InletPipePara { get; set; }
|
|
|
/// <summary>
|
/// 阀门状态(不含出口管路的阀门状态)
|
/// </summary>
|
public List<ValvePara> ValvePara { get; set; }
|
|
|
|
|
|
|
|
}
|
}
|