sunpengfei
8 天以前 e2d2994059dc80b71f0a216c5a959032ea73a439
FlexJobApi.Core/Entities/UserServer/Enterprises/EnterpriseWallet.cs
@@ -3,6 +3,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace FlexJobApi.Core
{
@@ -25,6 +26,11 @@
        /// 通道
        /// </summary>
        public EnumEnterpriseWalletAccess Access { get; set; }
        /// <summary>
        /// 余额
        /// </summary>
        public decimal Balance { get; set; }
        /// <summary>
        /// 协议产品码,商户和支付宝签约时确定,不同业务场景对应不同的签约产品码。
@@ -97,5 +103,38 @@
        /// 授信模式,目前只在花芝代扣(即花芝go)协议时才会返回
        /// </summary>
        public string CreditAuthMode { get; set; }
        /// <summary>
        /// 资金记账本Id
        /// </summary>
        public string AccountBookId { get; set; }
        /// <summary>
        /// 记账的外卡户名
        /// </summary>
        public string BankAccName { get; set; }
        /// <summary>
        /// 记账的外卡开户行
        /// </summary>
        public string CardBank { get; set; }
        /// <summary>
        /// 记账的外卡支行
        /// </summary>
        public string CardBranch { get; set; }
        /// <summary>
        /// 记账的外卡联行号
        /// </summary>
        public string CardDeposit { get; set; }
        /// <summary>
        /// 记账的外卡开户地址
        /// </summary>
        public string CardLocation { get; set; }
        /// <summary>
        /// 记账的外卡卡号
        /// </summary>
        public string CardNo { get; set; }
        /// <summary>
        /// 记账的外卡状态, A:正常状态; 其他:异常
        /// </summary>
        public EnumEnterpriseWalletAccountBookStatus? AccountBookStatus { get; set; }
    }
}