ningshuxia
2024-04-29 6eb4d5574aee7042b1883e043d5798865e84d1d1
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
namespace IStation.Model
{
    /// <summary>
    /// 调度组合
    /// </summary>  
    [SugarTable("ScheduleCombine")]
    public class ScheduleCombine : Model.BaseModel
    {
        public ScheduleCombine() { }
        public ScheduleCombine(ScheduleCombine rhs)
        {
            this.RunFlag = rhs.RunFlag;
            this.RunCount = rhs.RunCount;
            this.RunHZ = rhs.RunHZ;
            this.CurveQH = rhs.CurveQH;
            this.CurveQP = rhs.CurveQP;
            this.AnaStatus = rhs.AnaStatus;
        }
 
        /// <summary>
        /// 运行标志
        /// </summary> 
        public string RunFlag { get; set; }
 
        /// <summary>
        /// 运行数量
        /// </summary>
        public int RunCount { get; set; }
 
        /// <summary>
        /// 运行频率列表
        /// </summary>
        public string RunHZ { get; set; }
 
        /// <summary>
        /// 流量扬程线
        /// </summary>
        public CurveExpress CurveQH { get; set; }
 
        /// <summary>
        /// 流量功率线
        /// </summary>
        public CurveExpress CurveQP { get; set; }
 
        /// <summary>
        /// 分析状态
        /// </summary>
        public bool AnaStatus { get; set; }
 
    }
 
 
}