duheng
2025-03-28 b825d70578b0ddf6d479569887c194f919795dad
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
using System.Collections.Generic;
 
namespace PBS.WinFrmUI.Hydro.Dispatch.Model
{
    /// <summary>
    /// 复杂
    /// </summary>
    public class RequestParasComplex
    {
        /// <summary>
        /// 
        /// </summary>
        public RequestParasComplex() { }
 
        /// <summary>
        /// 公司标识
        /// </summary>
        public long ProjectID { get; set; }
 
        /// <summary>
        /// 泵站标识
        /// </summary>
        public long StationID { get; set; }
 
        /// <summary>
        /// 方案数量
        /// </summary>
        public int SchemeNumber { get; set; } = 0;
 
        /// <summary>
        /// 方案排序
        /// </summary>
        public PBS.WinFrmUI.Hydro.Dispatch.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; }
 
 
 
 
 
 
 
    }
}