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 eMonitorType
{
///
/// 常规
///
General = 0,
///
/// 振动
///
Vibration = 1
}
}