123456789101112131415161718192021 |
- 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 TskRefMode
- {
- [Description("全部")]
- All,
- [Description("任务参考")]
- TskRef,
- [Description("系统参考")]
- SysRef,
- [Description("无参")]
- NoRef = 999
- }
- }
|