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.

30 lines
514 B
C#

using System.ComponentModel;
namespace DS.Module.Core
{
/// <summary>
/// 公共状态
/// </summary>
public enum CommonStatus
{
/// <summary>
/// 正常
/// </summary>
[Description("正常")]
ENABLE = 0,
/// <summary>
/// 停用
/// </summary>
[Description("停用")]
DISABLE = 1,
/// <summary>
/// 删除
/// </summary>
[Description("删除")]
DELETED = 2
}
}