using Edu.Model.Entity.Customer;
using System;
using System.Collections.Generic;
using System.Text;

namespace Edu.Model.ViewModel.Customer
{
    /// <summary>
    /// 同业提现扩展类
    /// </summary>
    public class RB_Customer_Remit_Extend : RB_Customer_Remit
    {
        /// <summary>
        /// 银行账户
        /// </summary>
        public string BankName { get; set; }
        /// <summary>
        /// 银行卡号
        /// </summary>
        public string BankCardNo { get; set; }
        /// <summary>
        /// 银行图标
        /// </summary>
        public string BankIcon { get; set; }

        /// <summary>
        /// 开户人
        /// </summary>
        public string AccountHolder { get; set; }

        /// <summary>
        /// 正常正常的提现
        /// </summary>
        public int Q_SelectNormal { get; set; }

        /// <summary>
        /// 同业名称
        /// </summary>
        public string CustomerName { get; set; }

        /// <summary>
        /// 同业电话
        /// </summary>
        public string ContactNumber { get; set; }

        /// <summary>
        /// 同业电话
        /// </summary>
        public string CustomerImage { get; set; }
    }
}