using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Alarm
{
///
/// 处理状态
///
public enum eHandleStatus
{
///
/// 未处理
///
UnHandle=0,
///
/// 已处理
///
Handle=1,
///
/// 搁置
///
Shelve=2,
///
/// 屏蔽
///
Shield=3
}
}