1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| namespace IStation.Application
| {
| /// <summary>
| /// 调度方案结果
| /// </summary>
| public class DispatchSolutionOutput
| {
|
| /// <summary>
| /// 方案标识
| /// </summary>
| public string SolutionId { get; set; }
|
| /// <summary>
| /// 调度流程请求标识
| /// </summary>
| public string FlowId { get; set; }
|
| /// <summary>
| /// 泵站列表
| /// </summary>
| public List<StationDispatchOutput> Station { get; set; }
| }
| }
|
|