lixiaojun
2022-08-09 c7c696753fbe0b8ebf56eb6cfe584601a36c5fb2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Calculation.DispatchAna.Model
{
    /// <summary>
    /// 复杂
    /// </summary>
    public  class RequestParasComplex 
    {
        /// <summary>
        /// 
        /// </summary>
        public RequestParasComplex() { }
 
        /// <summary>
        /// 公司标识
        /// </summary>
        public long CorpID { get; set; }
 
        /// <summary>
        /// 泵站标识
        /// </summary>
        public long StationID { get; set; }
 
        /// <summary>
        /// 方案数量
        /// </summary>
        public int SchemeNumber { get; set; } = 0;
 
        /// <summary>
        /// 方案排序
        /// </summary>
        public IStation.Calculation.DispatchAna.Model.eAnaSchemeSortType SchemeSortType { get; set; }
 
 
        /// <summary>
        ///  出口管路
        /// </summary>
        public List<OutletPipePara> OutletPipePara { get; set; }
 
 
        /// <summary>
        /// 阀门状态(不含出口管路的阀门状态)
        /// </summary>
        public List<ValvePara> ValvePara { get; set; }
 
 
        /// <summary>
        /// 水位参数 
        /// </summary>
        public List<WaterLevelPara> WaterLevelPara { get; set; }
 
 
 
 
    }
}