NewGaoKaoApi/PaymentSDK/AliPay/Domain/QueryDetailAopResult.cs

79 lines
2.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// QueryDetailAopResult Data Structure.
/// </summary>
[Serializable]
public class QueryDetailAopResult : AopObject
{
/// <summary>
/// 批次编号;此单据对应的批次编号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 明细编号
/// </summary>
[XmlElement("detail_no")]
public string DetailNo { get; set; }
/// <summary>
/// 扩展属性;创建付款单时传入的数据
/// </summary>
[XmlElement("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 失败原因在status为fail时此字段不为空
/// </summary>
[XmlElement("fail_message")]
public string FailMessage { get; set; }
/// <summary>
/// 明细最后一次变更的时间
/// </summary>
[XmlElement("last_modified")]
public string LastModified { get; set; }
/// <summary>
/// 单据号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 收/付款金额;单位为元
/// </summary>
[XmlElement("pay_amount")]
public string PayAmount { get; set; }
/// <summary>
/// 收款人userId
/// </summary>
[XmlElement("payee_id")]
public string PayeeId { get; set; }
/// <summary>
/// 付款人userId
/// </summary>
[XmlElement("payer_id")]
public string PayerId { get; set; }
/// <summary>
/// 服务费,单位为元
/// </summary>
[XmlElement("service_charge")]
public string ServiceCharge { get; set; }
/// <summary>
/// 批次明细状态AVAILABLE可付款SUCCESS付款成功FAIL失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}