| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum ServiceType
- {
- [Description("ADC采集")]
- AdcService = 10,
- [Description("DDC采集")]
- DdcService = 11,
- [Description("GPU参估")]
- CorGpuService = 20,
- [Description("CPU参估")]
- CorCpuService = 30,
- [Description("常规定位")]
- LocNormalService = 40,
- [Description("DAMA检测")]
- DamaCheckService = 50
- }
- }
|