tx
2025-04-22 e0b138b3e057de6f57021e6c8963868f5c5acc5a
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
using System;
using System.ComponentModel.DataAnnotations;
 
namespace TProduct.Model
{
    /// <summary>
    /// 泵
    /// </summary>
    public partial class ProductPump : System.ICloneable
    {
 
        public ProductPump() { }
 
        public ProductPump(ProductPump rhs)
        {
            this.ID = rhs.ID;
            this.MotorMainID = rhs.MotorMainID;
            this.Ratedn = rhs.Ratedn;
            this.D2 = rhs.D2;
            this.PosiAngle = rhs.PosiAngle;
 
            this.CurveFitTypeQH = rhs.CurveFitTypeQH;
            this.CurveFitTypeQE = rhs.CurveFitTypeQE;
            this.CurveFitTypeQP = rhs.CurveFitTypeQP;
        }
 
        public void Reset(ProductPump rhs)
        {
            this.ID = rhs.ID;
            this.MotorMainID = rhs.MotorMainID;
            this.Ratedn = rhs.Ratedn;
            this.D2 = rhs.D2;
            this.PosiAngle = rhs.PosiAngle;
 
            this.CurveFitTypeQH = rhs.CurveFitTypeQH;
            this.CurveFitTypeQE = rhs.CurveFitTypeQE;
            this.CurveFitTypeQP = rhs.CurveFitTypeQP;
        }
 
        /// <summary>
        /// 就是ProdcutMain的ID 是从属表
        /// </summary>
        [Display(Name = "就是ProdcutMain的ID 是从属表")]
        public long ID { get; set; }
 
        /// <summary>
        /// 电机型号ID
        /// </summary>
        [Display(Name = "电机型号ID")]
        public long? MotorMainID { get; set; }
 
        /// <summary>
        /// 额定转速
        /// </summary>
        [Display(Name = "额定转速")]
        public double? Ratedn { get; set; }
 
        /// <summary>
        /// 叶轮外径
        /// </summary>
        [Display(Name = "叶轮外径")]
        public double? D2 { get; set; }
 
        /// <summary>
        /// 安放角(轴流泵)
        /// </summary>
        [Display(Name = "安放角(轴流泵)")]
        public double? PosiAngle { get; set; }
 
 
        /// <summary>
        /// 
        /// </summary>
        [Display(Name = "扬程线拟合方式")]
        public Eventech.Model.eCurveFitType CurveFitTypeQH
        {
            get { return _curveFitTypeQH; }
            set { _curveFitTypeQH = value; }
        }
        private Eventech.Model.eCurveFitType _curveFitTypeQH = Eventech.Model.eCurveFitType.CubicCurve;
 
        /// <summary>
        /// 
        /// </summary>
        [Display(Name = "效率线拟合方式")]
        public Eventech.Model.eCurveFitType CurveFitTypeQE
        {
            get { return _curveFitTypeQE; }
            set { _curveFitTypeQE = value; }
        }
        private Eventech.Model.eCurveFitType _curveFitTypeQE = Eventech.Model.eCurveFitType.CubicCurve;
 
        /// <summary>
        /// 
        /// </summary>
        [Display(Name = "功率线拟合方式")]
        public Eventech.Model.eCurveFitType CurveFitTypeQP
        {
            get { return _curveFitTypeQP; }
            set { _curveFitTypeQP = value; }
        }
        private Eventech.Model.eCurveFitType _curveFitTypeQP = Eventech.Model.eCurveFitType.CubicCurve;
 
 
        public ProductPump Clone()
        {
            return (ProductPump)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
}