TskRefMode.cs 426 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. public enum TskRefMode
  10. {
  11. [Description("全部")]
  12. All,
  13. [Description("任务参考")]
  14. TskRef,
  15. [Description("系统参考")]
  16. SysRef,
  17. [Description("无参")]
  18. NoRef = 999
  19. }
  20. }