using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 企业钱包交易记录
///
public class EnterpriseWalletTransaction : CommonEntity
{
///
/// 企业钱包Id
///
public Guid WalletId { get; set; }
///
/// 钱包
///
public EnterpriseWallet Wallet { get; set; }
///
/// 类型
///
public EnumEnterpriseWalletTransactionType Type { get; set; }
///
/// 订单号
///
public string Code { get; set; }
///
/// 金额
///
public decimal Amount { get; set; }
///
/// 余额
///
public decimal Balance { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 订单Id
///
public string OrderId { get; set; }
///
/// 状态
///
public EnumEnterpriseWalletTransactionStatus Status { get; set; }
}
}