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