using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hotline.Share.Enums.Order
{
public enum ESecondaryHandlingState
{
///
/// 待申请
///
[Description("待申请")]
NotApply = 0,
///
/// 待办
///
[Description("待办")]
Apply = 1,
///
/// 审批通过
///
[Description("审批通过")]
End = 2,
///
/// 审批拒绝
///
[Description("审批拒绝")]
Refuse = 3,
///
/// 已办理
///
[Description("已办理")]
Handled = 4,
}
}