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.

32 lines
608 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace SwaggerStudy.Models
{
/// <summary>
/// 性别
/// </summary>
public enum GenderEnum
{
/// <summary>
/// 女性
/// </summary>
[Description("原材料仓")]
Female=0,
/// <summary>
/// 男性
/// </summary>
[Description("原材料仓")]
Male=1,
/// <summary>
/// 保密
/// </summary>
[Description("原材料仓")]
Secrecy=3,
}
}