using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.DispatchAna.Model
{
///
/// 复杂
///
public class RequestParasComplex
{
///
///
///
public RequestParasComplex() { }
///
/// 公司标识
///
public long CorpID { get; set; }
///
/// 泵站标识
///
public long StationID { get; set; }
///
/// 方案数量
///
public int SchemeNumber { get; set; } = 0;
///
/// 方案排序
///
public IStation.Calculation.DispatchAna.Model.eAnaSchemeSortType SchemeSortType { get; set; }
///
/// 出口管路
///
public List OutletPipePara { get; set; }
///
/// 阀门状态(不含出口管路的阀门状态)
///
public List ValvePara { get; set; }
///
/// 水位参数
///
public List WaterLevelPara { get; set; }
}
}