using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Ips.Library.Entity { /// /// 采集任务类型 /// public enum TskAdType { /// /// 实时采集 /// [Description("ADC实时")] AdcRt, /// /// 分时采集 /// [Description("ADC分时")] AdcSt, /// /// DDC采集 /// [Description("DDC采集")] DdcAd, /// /// 持续采集 /// [Description("持续采集")] DdcCtAd } }