// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证。 // // 必须在法律法规允许的范围内正确使用,严禁将其用于非法、欺诈、恶意或侵犯他人合法权益的目的。 namespace Admin.NET.Core; /// /// 文化程度枚举 /// [Description("文化程度枚举")] public enum CultureLevelEnum { /// /// 其他 /// [Description("其他")] Level0 = 0, /// /// 文盲 /// [Description("文盲")] Level1 = 1, /// /// 小学 /// [Description("小学")] Level2 = 2, /// /// 初中 /// [Description("初中")] Level3 = 3, /// /// 普通高中 /// [Description("普通高中")] Level4 = 4, /// /// 技工学校 /// [Description("技工学校")] Level5 = 5, /// /// 职业教育 /// [Description("职业教育")] Level6 = 6, /// /// 职业高中 /// [Description("职业高中")] Level7 = 7, /// /// 中等专科 /// [Description("中等专科")] Level8 = 8, /// /// 大学专科 /// [Description("大学专科")] Level9 = 9, /// /// 大学本科 /// [Description("大学本科")] Level10 = 10, /// /// 硕士研究生 /// [Description("硕士研究生")] Level11 = 11, /// /// 博士研究生 /// [Description("博士研究生")] Level12 = 12, }