| | |
| | | using System; |
| | | using Furion.DatabaseAccessor; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | /// <summary> |
| | | /// 企业钱包交易记录 |
| | | /// </summary> |
| | | public class EnterpriseWalletTransaction : CommonEntity |
| | | public class EnterpriseWalletTransaction : CommonEntity<MasterDbContextLocator> |
| | | { |
| | | /// <summary> |
| | | /// 企业钱包Id |
| | |
| | | /// 余额 |
| | | /// </summary> |
| | | public decimal Balance { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收支后余额 |
| | | /// </summary> |
| | | public decimal AfterBalance { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 操作人用户Id |
| | | /// </summary> |
| | | public Guid? OperatorUserId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 操作人用户 |
| | | /// </summary> |
| | | public User OperatorUser { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 操作时间 |
| | | /// </summary> |
| | | public DateTime? OperatorTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收款人用户Id |
| | | /// </summary> |
| | | public Guid? ReceiveUserId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收款人用户 |
| | | /// </summary> |
| | | public User ReceiveUser { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 收款人姓名 |
| | |
| | | /// <summary> |
| | | /// 状态 |
| | | /// </summary> |
| | | public EnumEnterpriseWalletTransactionStatus TransactionStatus { get; set; } |
| | | public EnumWalletTransactionStatus TransactionStatus { get; set; } |
| | | |
| | | #region 转账至支付宝 |
| | | |