Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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