1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace IStation.Application
| {
| /// <summary>
| /// 泵站调度
| /// </summary>
| public class StationDispatchInput
| {
| /// <summary>
| /// 支线类型:1-长兴支线 2、3。。。预留,待定义
| /// </summary>
| public long type { get; set; }
|
| /// <summary>
| /// 水厂列表
| /// </summary>
| public List<FactoryDispatchInput> factory { get; set; }
| }
| }
|
|