using NCC.Dependency; using System.ComponentModel; namespace NCC.Common.Enum { /// /// 性别 /// [SuppressSniffer] public enum Gender { /// /// 男 /// [Description("男")] MALE = 1, /// /// 女 /// [Description("女")] FEMALE = 2, /// /// 未知 /// [Description("未知")] UNKNOWN = 3 } }