85 lines
2.1 KiB
C#
85 lines
2.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppPdeductAsyncPayModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEbppPdeductAsyncPayModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 分配给外部机构发起扣款时的渠道码。朗新为LANGXIN
|
|
/// </summary>
|
|
[XmlElement("agent_channel")]
|
|
public string AgentChannel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 二级渠道码,预留字段
|
|
/// </summary>
|
|
[XmlElement("agent_code")]
|
|
public string AgentCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付宝代扣协议Id
|
|
/// </summary>
|
|
[XmlElement("agreement_id")]
|
|
public string AgreementId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账期
|
|
/// </summary>
|
|
[XmlElement("bill_date")]
|
|
public string BillDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 户号
|
|
/// </summary>
|
|
[XmlElement("bill_key")]
|
|
public string BillKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展字段
|
|
/// </summary>
|
|
[XmlElement("extend_field")]
|
|
public string ExtendField { get; set; }
|
|
|
|
/// <summary>
|
|
/// 滞纳金
|
|
/// </summary>
|
|
[XmlElement("fine_amount")]
|
|
public string FineAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注信息
|
|
/// </summary>
|
|
[XmlElement("memo")]
|
|
public string Memo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户外部业务流水号
|
|
/// </summary>
|
|
[XmlElement("out_order_no")]
|
|
public string OutOrderNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扣款金额,支付总金额,包含滞纳金
|
|
/// </summary>
|
|
[XmlElement("pay_amount")]
|
|
public string PayAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户partnerId
|
|
/// </summary>
|
|
[XmlElement("pid")]
|
|
public string Pid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|