You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace NPin.Framework.Upms.Domain.Shared.Enums;
|
|
|
|
|
|
|
|
|
|
public enum GenderEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 保密
|
|
|
|
|
/// </summary>
|
|
|
|
|
Secrecy = 0,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 男性
|
|
|
|
|
/// </summary>
|
|
|
|
|
Male = 1,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 女性
|
|
|
|
|
/// </summary>
|
|
|
|
|
Female = 2
|
|
|
|
|
}
|