|
|
|
@ -14,16 +14,16 @@ namespace Shentun.Peis.Enums |
|
|
|
/// 男
|
|
|
|
/// </summary>
|
|
|
|
[Description("男")] |
|
|
|
public const string Male = "M"; |
|
|
|
public const char Male = 'M'; |
|
|
|
/// <summary>
|
|
|
|
/// 女
|
|
|
|
/// </summary>
|
|
|
|
[Description("女")] |
|
|
|
public const string Female = "F"; |
|
|
|
public const char Female = 'F'; |
|
|
|
/// <summary>
|
|
|
|
/// 未知
|
|
|
|
/// </summary>
|
|
|
|
[Description("未知")] |
|
|
|
public const string UnKnown = "U"; |
|
|
|
public const char UnKnown = 'U'; |
|
|
|
} |
|
|
|
} |