AdType.cs 469 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. [Flags]
  10. public enum AdType
  11. {
  12. [Description("实时采集")]
  13. AdcRealTime = 1,
  14. [Description("分时采集")]
  15. AdcSplitTime = 2,
  16. [Description("DDC采集")]
  17. DdcOne = 4,
  18. [Description("持续采集")]
  19. DdcKeep = 8
  20. }
  21. }