StationAllowEntry.cs
412 Bytes
using System.ComponentModel;
namespace HHECS.Application.Enums
{
/// <summary>
/// 是否允许进入
/// </summary>
public enum StationAllowEntry
{
/// <summary>
/// 允许
/// </summary>
[Description("允许")]
Allow = 1,
/// <summary>
/// 禁止
/// </summary>
[Description("禁止")]
forbid = 2
}
}