12345678910111213141516171819202122 |
- 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 AdType
- {
- [Description("实时采集")]
- AdcRealTime = 1,
- [Description("分时采集")]
- AdcSplitTime = 2,
- [Description("DDC采集")]
- DdcOne = 4,
- [Description("持续采集")]
- DdcKeep = 8
- }
- }
|