NewGaoKaoApi/PaymentSDK/AliPay/Domain/RechargeBill.cs

37 lines
918 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// RechargeBill Data Structure.
/// </summary>
[Serializable]
public class RechargeBill : AopObject
{
/// <summary>
/// 用户充值金额,单位为元
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 充值时间YYYY-MM-DD hh:mm:ss
/// </summary>
[XmlElement("deposit_time")]
public string DepositTime { get; set; }
/// <summary>
/// Transfer待圈存 Success圈存成功 Fail圈存失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 支付宝订单号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}