using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
public partial class PumpCurve
{
///
/// 可信度状态
///
public enum eReliabilityStatus
{
///
/// 差
///
Low = -1,
///
/// 一般
///
Normal = 0,
///
/// 高
///
High = 1
}
}
}