using System.ComponentModel;
namespace Hotline.Share.Enums.Order
{
///
/// 通用审批状态
///
public enum EAduitState
{
///
/// 审批中
///
[Description("审批中")]
Examining = 0,
///
/// 通过
///
[Description("通过")]
Pass = 1,
///
/// 拒绝
///
[Description("拒绝")]
NoPass = 2,
///
/// 撤销
///
[Description("撤销")]
Withdraw = 3,
}
}