1234567891011121314151617 |
- 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 TskTimeType
- {
- [Description("实时任务")]
- RealTimeTsk,
- [Description("历史任务")]
- HistoryTsk
- }
- }
|