using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
public enum WalletTransferStatusEnum
{
///
/// 待审核
///
[Description("待审核")]
PendingReview = 10,
///
/// 审核通过
///
[Description("审核通过")]
Pass = 30,
///
/// 驳回
///
[Description("驳回")]
Reject = 40,
}
public enum BatchIssuanceRegulatorsStatusEnum
{
///
/// 失败
///
Fail = 3,
///
/// 处理中
///
Process = 10,
///
/// 成功
///
Success = 4,
}
}