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