1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| namespace IStation.Dto
| {
| /// <summary>
| /// 陈行调度配置
| /// </summary>
| public class ChScheduleConfig
| {
| /// <summary>
| /// 一输水
| /// </summary>
| public IStation.Dto.ScheduleConfig Station1 { get; set; }
|
|
| /// <summary>
| /// 二输水
| /// </summary>
| public IStation.Dto.ScheduleConfig Station2 { get; set; }
|
| }
| }
|
|