1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEbppPdeductPayResponse : AopResponse
- {
-
-
-
- [XmlElement("agreement_id")]
- public string AgreementId { get; set; }
-
-
-
- [XmlElement("bill_no")]
- public string BillNo { get; set; }
-
-
-
- [XmlElement("extend_field")]
- public string ExtendField { get; set; }
-
-
-
- [XmlElement("out_order_no")]
- public string OutOrderNo { get; set; }
-
-
-
- [XmlElement("result_status")]
- public string ResultStatus { get; set; }
- }
- }
|