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 ESendBackAuditState
{
///
/// 待办
///
[Description("待办")]
Apply = 0,
///
/// 审批通过
///
[Description("审批通过")]
End = 1,
///
/// 审批拒绝
///
[Description("审批拒绝")]
Refuse = 2,
///
/// 已审批
///
[Description("已审批")]
Audit = 3,
}
}