using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 监测测试控制参数
///
public partial class MonitorTestControlParas
{
///
/// 控制类型
///
public enum eControlType
{
///
/// 停止
///
Stop = 0,
///
/// 启动
///
Start = 1,
}
///
/// 泵自动运行模式
///
public enum eOperatingMode
{
///
/// 定时
///
Timing = 0,
///
/// 定流量
///
ConstantFlow = 1,
///
/// 定功率
///
ConstantPa = 2,
}
}
}