55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KbTicketUseDetail Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KbTicketUseDetail : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 用户购买券的时候实际支付的金额,单位为元,精确到小数点后两位
|
|
/// </summary>
|
|
[XmlElement("buyer_pay_amount")]
|
|
public string BuyerPayAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商家优惠金额,单位为元,精确到小数点后两位
|
|
/// </summary>
|
|
[XmlElement("discount_amount")]
|
|
public string DiscountAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易中可给用户开具发票的金额,单位为元,精确到小数点后两位
|
|
/// </summary>
|
|
[XmlElement("invoice_amount")]
|
|
public string InvoiceAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 口碑补贴金额,单位为元,精确到小数点后两位
|
|
/// </summary>
|
|
[XmlElement("koubei_subsidy_amount")]
|
|
public string KoubeiSubsidyAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商家实收金额,单位为元,精确到小数点后两位
|
|
/// </summary>
|
|
[XmlElement("receipt_amount")]
|
|
public string ReceiptAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 核销的券码
|
|
/// </summary>
|
|
[XmlElement("ticket_code")]
|
|
public string TicketCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券核销流水号
|
|
/// </summary>
|
|
[XmlElement("ticket_trans_id")]
|
|
public string TicketTransId { get; set; }
|
|
}
|
|
}
|