ningshuxia
2022-12-12 e78f5936fee9ab4fff600515bb20a41a28f329c4
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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 enum ePressValueType
        {
            /// <summary>
            /// 
            /// </summary>
             压力 =0,
             /// <summary>
             /// 
             /// </summary>
             扬程=1
        }
        /// <summary>
        /// 压力值类型 0:表示压力 1:表示扬程
        /// </summary>
        public ePressValueType PressValueType { get; set; } = ePressValueType.压力;
 
        /// <summary>
        /// 出口管路
        /// </summary>
        public List<OutletPipePara> OutletPipePara { get; set; }
 
        /// <summary>
        /// 进口管路
        /// </summary>
        public List<InletPipePara> InletPipePara { get; set; }
 
 
        /// <summary>
        /// 阀门状态(不含出口管路的阀门状态)
        /// </summary>
        public List<ValvePara> ValvePara { get; set; }
 
 
 
 
 
 
 
    }
}