using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 钱包交易状态
///
public enum EnumWalletTransactionStatus
{
///
/// 待提交
///
WaitSubmit = 1,
///
/// 待支付
///
WaitPay = 10,
///
/// 处理中
///
Dealing = 20,
///
/// 成功
///
Success = 30,
///
/// 退票
///
Refund = 40,
///
/// 失败
///
Fail = 50,
}
}