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 FactoryDispatchInput
| {
| /// <summary>
| /// 水厂 ID :1-长兴水厂 2、3。。。预留,待定义
| /// </summary>
| public long id { get; set; }
|
| /// <summary>
| /// 提请水量增量值
| /// </summary>
| public double value { get; set; }
| }
| }
|
|