using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Comm.Enum
{
public enum CommonStatus
{
///
/// 正常
///
[Description("正常")]
ENABLE = 0,
///
/// 停用
///
[Description("停用")]
DISABLE = 1,
///
/// 删除
///
[Description("删除")]
DELETED = 2
}
}