using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Monitor
{
///
/// 值类型
///
public enum eValueType
{
///
/// 数值
///
Numeric = 1,
///
/// 枚举
///
Enum = 2,
///
/// 集合
///
Array = 3,
///
/// 集成
///
Integration = 4
}
}