using System.ComponentModel;
namespace DS.Module.Core.Enums
{
//报销相关枚举
///
/// 报销状态
///
public enum ReimbursementTypeEnums
{
///
/// 未提交
///
[Description("未提交")]
NotSubmitted = 0,
///
/// 审核中
///
[Description("审核中")]
UnderReview = 1,
///
/// 审核通过
///
[Description("审核通过")]
Approved = 2,
///
/// 审核驳回
///
[Description("审核驳回")]
Rejected = 3,
///
/// 审核撤销
///
[Description("审核撤销")]
Revoked = 4
}
}