using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.CommonEnum
{
public enum AuditStatusEnum
{
///
/// 待提交
///
[Description("待提交")]
NotCommited = 0,
///
/// 审批中
///
[Description("审批中")]
Auditing = 1,
///
/// 同意
///
[Description("同意")]
Agree = 100,
///
/// 驳回
///
[Description("驳回")]
Reject = 101
}
}