49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// VoucherBill Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class VoucherBill : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 券核销/退款金额(单位:元)
|
|
/// </summary>
|
|
[XmlElement("amount")]
|
|
public string Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账单类型(V_USE:支付,V_REFUND:退款)
|
|
/// </summary>
|
|
[XmlElement("biz_type")]
|
|
public string BizType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易时间
|
|
/// </summary>
|
|
[XmlElement("gmt_create")]
|
|
public string GmtCreate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户名称
|
|
/// </summary>
|
|
[XmlElement("partner_name")]
|
|
public string PartnerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易状态(I: 处理中, S: 成功)
|
|
/// </summary>
|
|
[XmlElement("status")]
|
|
public string Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付宝交易号
|
|
/// </summary>
|
|
[XmlElement("trade_no")]
|
|
public string TradeNo { get; set; }
|
|
}
|
|
}
|