1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEbppBillPayResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_order_no")]
- public string AlipayOrderNo { get; set; }
-
-
-
- [XmlElement("merchant_order_no")]
- public string MerchantOrderNo { get; set; }
-
-
-
- [XmlElement("order_status")]
- public string OrderStatus { get; set; }
-
-
-
- [XmlElement("order_type")]
- public string OrderType { get; set; }
- }
- }
|