ModelEnum.cs 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XzXdDw.App.Model
  9. {
  10. public enum EnumTaskState
  11. {
  12. [Display(Name = "未执行")]
  13. Stopped,
  14. [Display(Name = "执行中")]
  15. Running
  16. }
  17. public enum EnumPosType
  18. {
  19. [Display(Name = "一星一地测向定位")]
  20. X1D1CX,
  21. [Display(Name = "两星一地定位")]
  22. X2D1,
  23. [Display(Name = "融合定位")]
  24. RH,
  25. }
  26. public enum EnumTxType
  27. {
  28. [Display(Name = "主星天线")]
  29. MainSat,
  30. [Display(Name = "邻星天线")]
  31. AdjaSat,
  32. [Display(Name = "超短波天线")]
  33. Cdb,
  34. [Display(Name = "测向站地址")]
  35. Cx,
  36. [Display(Name = "参考站地址")]
  37. Ref,
  38. }
  39. }