Files
zszq-trs/YLErpDAL/Model/HengTaiModel/ClientBankReq.cs
T
2024-05-09 14:06:26 +08:00

62 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model.HengTaiModel
{
public class ClientBankReq
{
public ClientBankReq() {
COUNTERPARTYTRADELIST=new BankInfoList();
}
/// <summary>
/// 交易对手系统编号
/// </summary>
public string CRM_ID { get; set; }
/// <summary>
/// IR交易对手编号
/// </summary>
public string XIR_PARTY_ID { get; set; }
/// <summary>
///
/// </summary>
public BankInfoList COUNTERPARTYTRADELIST { get; set; }
}
public class BankInfoList
{
public BankInfoList()
{
PARTYTRADEINFO = new List<BankInfo>();
}
/// <summary>
///
/// </summary>
public List<BankInfo> PARTYTRADEINFO { get; set; }
}
public class BankInfo
{
/// <summary>
/// 资金账号
/// </summary>
public string ACCID { get; set; }
/// <summary>
/// 支付系统行号
/// </summary>
public string PAYMENT_NUMBER { get; set; }
/// <summary>
/// 资金账户户名
/// </summary>
public string CASH_ACC_NAME { get; set; }
/// <summary>
/// 资金开户行名称
/// </summary>
public string SETTL_BANK_NAME { get; set; }
/// <summary>
/// 币种 默认人名币;CNY(人民币),USD(美元)HKD(港币)
/// </summary>
public string CURRENCY { get; set; } = "CNY";
}
}