123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class MicroPayOrderDetail : AopObject
- {
-
-
-
- [XmlElement("alipay_order_no")]
- public string AlipayOrderNo { get; set; }
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("available_amount")]
- public string AvailableAmount { get; set; }
-
-
-
- [XmlElement("create_time")]
- public string CreateTime { get; set; }
-
-
-
- [XmlElement("expire_time")]
- public string ExpireTime { get; set; }
-
-
-
- [XmlElement("freeze_amount")]
- public string FreezeAmount { get; set; }
-
-
-
- [XmlElement("memo")]
- public string Memo { get; set; }
-
-
-
- [XmlElement("merchant_order_no")]
- public string MerchantOrderNo { get; set; }
-
-
-
- [XmlElement("modified_time")]
- public string ModifiedTime { get; set; }
-
-
-
- [XmlElement("order_status")]
- public string OrderStatus { get; set; }
-
-
-
- [XmlElement("pay_amount")]
- public string PayAmount { get; set; }
-
-
-
- [XmlElement("pay_confirm")]
- public string PayConfirm { get; set; }
- }
- }
|