1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEbppBillAddResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_order_no")]
- public string AlipayOrderNo { get; set; }
-
-
-
- [XmlElement("bank_bill_no")]
- public string BankBillNo { get; set; }
-
-
-
- [XmlElement("bill_date")]
- public string BillDate { get; set; }
-
-
-
- [XmlElement("bill_key")]
- public string BillKey { get; set; }
-
-
-
- [XmlElement("charge_inst")]
- public string ChargeInst { get; set; }
-
-
-
- [XmlElement("charge_inst_name")]
- public string ChargeInstName { get; set; }
-
-
-
- [XmlElement("extend_field")]
- public string ExtendField { get; set; }
-
-
-
- [XmlElement("merchant_order_no")]
- public string MerchantOrderNo { get; set; }
-
-
-
- [XmlElement("order_type")]
- public string OrderType { get; set; }
-
-
-
- [XmlElement("owner_name")]
- public string OwnerName { get; set; }
-
-
-
- [XmlElement("pay_amount")]
- public string PayAmount { get; set; }
-
-
-
- [XmlElement("service_amount")]
- public string ServiceAmount { get; set; }
-
-
-
- [XmlElement("sub_order_type")]
- public string SubOrderType { get; set; }
- }
- }
|