lixiaojun
2023-11-02 cee1c6bf2c5c03c0beadcc9c8f720b03589f83a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Yw.Model.Curve
{
    /// <summary>
    /// 
    /// </summary>
    public class PumpCurveInfoModel : JsonModel<PumpCurveInfoModel>
    {
        /// <summary>
        /// 流量扬程曲线表达式
        /// </summary>
        public CurveExpress CurveQH { get; set; }
 
        /// <summary>
        /// 流量效率曲线表达式
        /// </summary>
        public CurveExpress CurveQE { get; set; }
 
        /// <summary>
        /// 流量功率曲线表达式
        /// </summary>
        public CurveExpress CurveQP { get; set; }
    }
}