using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 特性曲线类型
///
public enum eFeatCurveType
{
///
/// 流量扬程曲线
///
[Display(Name = "流量扬程曲线")]
QH = 1,
///
/// 流量效率曲线
///
[Display(Name = "流量效率曲线")]
QE = 2,
///
/// 流量功率曲线
///
[Display(Name = "流量功率曲线")]
QP = 3
}
}