namespace IStation.Application
{
///
/// 调度方案结果
///
public class DispatchSolutionOutput
{
///
/// 方案标识
///
public string SolutionId { get; set; }
///
/// 调度流程请求标识
///
public string FlowId { get; set; }
///
/// 泵站列表
///
public List Station { get; set; }
}
}