using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Ips.Library.Entity { /// /// 采集模式 /// public enum AdMode { /// /// ADC采集 /// [Description("ADC采集")] ADC, /// /// DDC采集 /// [Description("DDC采集")] DDC, /// /// 持续采集 /// [Description("持续采集")] DDCKeep } }