12345678910111213141516171819202122 |
- 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 TskType
- {
- [Description("定位任务")]
- LocTsk = 0,
- [Description("采集任务")]
- AdTsk = 10,
- [Description("参考任务")]
- RefTsk = 20,
- [Description("扫频任务")]
- SctTsk = 100,
- }
- }
|