namespace Admin.NET.Core; /// /// 婚姻状况枚举 /// [Description("婚姻状况枚举")] public enum MaritalStatusEnum { /// /// 未婚 /// [Description("未婚")] UnMarried = 1, /// /// 已婚 /// [Description("已婚")] Married = 2, /// /// 离异 /// [Description("离异")] Divorce = 3, /// /// 再婚 /// [Description("再婚")] Remarry = 4, /// /// 丧偶 /// [Description("丧偶")] Widowed = 5, /// /// 未知 /// [Description("未知")] None = 6, }