123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayTradeQueryResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_store_id")]
- public string AlipayStoreId { get; set; }
-
-
-
- [XmlElement("buyer_logon_id")]
- public string BuyerLogonId { get; set; }
-
-
-
- [XmlElement("buyer_pay_amount")]
- public string BuyerPayAmount { get; set; }
-
-
-
- [XmlArray("fund_bill_list")]
- [XmlArrayItem("trade_fund_bill")]
- public List<TradeFundBill> FundBillList { get; set; }
-
-
-
- [XmlElement("invoice_amount")]
- public string InvoiceAmount { get; set; }
-
-
-
- [XmlElement("open_id")]
- public string OpenId { get; set; }
-
-
-
- [XmlElement("out_trade_no")]
- public string OutTradeNo { get; set; }
-
-
-
- [XmlElement("point_amount")]
- public string PointAmount { get; set; }
-
-
-
- [XmlElement("receipt_amount")]
- public string ReceiptAmount { get; set; }
-
-
-
- [XmlElement("send_pay_date")]
- public string SendPayDate { get; set; }
-
-
-
- [XmlElement("store_id")]
- public string StoreId { get; set; }
-
-
-
- [XmlElement("terminal_id")]
- public string TerminalId { get; set; }
-
-
-
- [XmlElement("total_amount")]
- public string TotalAmount { get; set; }
-
-
-
- [XmlElement("trade_no")]
- public string TradeNo { get; set; }
-
-
-
- [XmlElement("trade_status")]
- public string TradeStatus { get; set; }
- }
- }
|