CultureLevelEnum.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // 麻省理工学院许可证
  2. //
  3. // 版权所有 (c) 2021-2023 zuohuaijun,大名科技(天津)有限公司 联系电话/微信:18020030720 QQ:515096995
  4. //
  5. // 特此免费授予获得本软件的任何人以处理本软件的权利,但须遵守以下条件:在所有副本或重要部分的软件中必须包括上述版权声明和本许可声明。
  6. //
  7. // 软件按“原样”提供,不提供任何形式的明示或暗示的保证,包括但不限于对适销性、适用性和非侵权的保证。
  8. // 在任何情况下,作者或版权持有人均不对任何索赔、损害或其他责任负责,无论是因合同、侵权或其他方式引起的,与软件或其使用或其他交易有关。
  9. namespace Admin.NET.Core;
  10. /// <summary>
  11. /// 文化程度枚举
  12. /// </summary>
  13. [Description("文化程度枚举")]
  14. public enum CultureLevelEnum
  15. {
  16. /// <summary>
  17. /// 其他
  18. /// </summary>
  19. [Description("其他")]
  20. Level0 = 0,
  21. /// <summary>
  22. /// 小学
  23. /// </summary>
  24. [Description("小学")]
  25. Level1 = 1,
  26. /// <summary>
  27. /// 初中
  28. /// </summary>
  29. [Description("初中")]
  30. Level2 = 2,
  31. /// <summary>
  32. /// 普通高中
  33. /// </summary>
  34. [Description("普通高中")]
  35. Level3 = 3,
  36. /// <summary>
  37. /// 技工学校
  38. /// </summary>
  39. [Description("技工学校")]
  40. Level4 = 4,
  41. /// <summary>
  42. /// 职业教育
  43. /// </summary>
  44. [Description("职业教育")]
  45. Level5 = 5,
  46. /// <summary>
  47. /// 职业高中
  48. /// </summary>
  49. [Description("职业高中")]
  50. Level6 = 6,
  51. /// <summary>
  52. /// 中等专科
  53. /// </summary>
  54. [Description("中等专科")]
  55. Level7 = 7,
  56. /// <summary>
  57. /// 大学专科
  58. /// </summary>
  59. [Description("大学专科")]
  60. Level8 = 8,
  61. /// <summary>
  62. /// 大学本科
  63. /// </summary>
  64. [Description("大学本科")]
  65. Level9 = 9,
  66. /// <summary>
  67. /// 硕士研究生
  68. /// </summary>
  69. [Description("硕士研究生")]
  70. Level10 = 10,
  71. /// <summary>
  72. /// 博士研究生
  73. /// </summary>
  74. [Description("博士研究生")]
  75. Level11 = 11,
  76. }