You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
624 B
31 lines
624 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace QMAPP.BLL.Dict
|
|
{
|
|
/// <summary>
|
|
/// 字典类别
|
|
/// </summary>
|
|
[Description("字典类别")]
|
|
public enum DictKind
|
|
{
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
[Description("性别")]
|
|
Sex,
|
|
/// <summary>
|
|
/// 用户类别
|
|
/// </summary>
|
|
[Description("用户类别")]
|
|
UserType,
|
|
/// <summary>
|
|
/// 月份
|
|
/// </summary>
|
|
[Description("月份")]
|
|
Month,
|
|
}
|
|
}
|
|
|