@@ -15,51 +15,75 @@ namespace Admin.NET.Core;
[Description("文化程度枚举")]
public enum CultureLevelEnum
{
+ /// <summary>
+ /// 其他
+ /// </summary>
+ [Description("其他")]
+ Level0 = 0,
+
/// <summary>
/// 小学
/// </summary>
[Description("小学")]
- Level1 = 0,
+ Level1 = 1,
/// 初中
[Description("初中")]
- Level2 = 1,
+ Level2 = 2,
+ /// 普通高中
+ [Description("普通高中")]
+ Level3 = 3,
+ /// 技工学校
+ [Description("技工学校")]
+ Level4 = 4,
+ /// 职业教育
+ [Description("职业教育")]
+ Level5 = 5,
- /// 高中
+ /// 职业高中
- [Description("高中")]
- Level3 = 2,
+ [Description("职业高中")]
+ Level6 = 6,
- /// 中专
+ /// 中等专科
- [Description("中专")]
- Level4 = 3,
+ [Description("中等专科")]
+ Level7 = 7,
- /// 大专
+ /// 大学专科
- [Description("大专")]
- Level5 = 4,
+ [Description("大学专科")]
+ Level8 = 8,
- /// 本科
+ /// 大学本科
- [Description("本科")]
- Level6 = 5,
+ [Description("大学本科")]
+ Level9 = 9,
/// 硕士研究生
[Description("硕士研究生")]
- Level7 = 6,
+ Level10 = 10,
/// 博士研究生
[Description("博士研究生")]
- Level8 = 7,
+ Level11 = 11,
}
@@ -0,0 +1,37 @@
+namespace Admin.NET.Core;
+/// <summary>
+/// 婚姻状况枚举
+/// </summary>
+[Description("婚姻状况枚举")]
+public enum MaritalStatusEnum
+{
+ /// 未知
+ [Description("未知")]
+ None = 0,
+ /// 未婚
+ [Description("未婚")]
+ UnMarried = 1,
+ /// 已婚
+ [Description("已婚")]
+ Married = 2,
+ /// 离异
+ [Description("离异")]
+ Divorce = 3,
+ /// 丧偶
+ [Description("丧偶")]
+ Widowed = 4,
+}