using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmart.Model { /// /// 沿触发类型枚举 /// public enum EAlongTriggerType { /// /// 下降沿触发 /// 下降沿 = 1, /// /// 上升沿触发 /// 上升沿 = 2 } }