Blame view

netcore/src/Modularity/Common/NCC.Common/Enum/Gender.cs 530 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  using NCC.Dependency;
  using System.ComponentModel;
  
  namespace NCC.Common.Enum
  {
      /// <summary>
      /// 性别
      /// </summary>
      [SuppressSniffer]
      public enum Gender
      {
          /// <summary>
          /// 
          /// </summary>
          [Description("男")]
          MALE = 1,
  
          /// <summary>
          /// 
          /// </summary>
          [Description("女")]
          FEMALE = 2,
  
          /// <summary>
          /// 未知
          /// </summary>
          [Description("未知")]
          UNKNOWN = 3
      }
  }