using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ips.Library.Entity
{
///
/// 信号检测类型
///
[Flags]
public enum DamaDetType
{
///
/// 自动识别
///
[Description("自动识别")]
AutoDisc = 1,
///
/// 常规检测
///
[Description("常规")]
Normal = 2,
///
/// DAMA检测
///
[Description("DAMA")]
DAMA = 4,
///
/// 非DAMA检测
///
[Description("非DAMA")]
DET = 8,
///
/// 能量检测
///
[Description("能量检测")]
ENC = 16,
}
}