using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
/// 泵拓展性能曲线
|
/// </summary>
|
public class DemoPumpExFeatCurveDto : DemoProductDto<Model.Pump>
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public DemoPumpExFeatCurveDto() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public DemoPumpExFeatCurveDto
|
(
|
Model.Product<Model.Pump> rhs,
|
List<Model.ProductTypePropertyGroupExItems> property_group_list = null,
|
Model.PumpCurveExMapping feat_curve = null
|
) : base(rhs, property_group_list)
|
{
|
if (feat_curve != null)
|
{
|
this.FeatCurve = new DemoPumpCurveDto(feat_curve);
|
}
|
}
|
|
/// <summary>
|
/// 性能曲线
|
/// </summary>
|
public DemoPumpCurveDto FeatCurve { get; set; }
|
}
|
}
|