using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace QMAPP.BLL.Dict { /// /// 字典类别 /// [Description("字典类别")] public enum DictKind { /// /// 性别 /// [Description("性别")] Sex, /// /// 用户类别 /// [Description("用户类别")] UserType, /// /// 月份 /// [Description("月份")] Month, } }