NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiTradeItemorderBuyResp...

30 lines
820 B
C#
Raw 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.Response
{
/// <summary>
/// KoubeiTradeItemorderBuyResponse.
/// </summary>
public class KoubeiTradeItemorderBuyResponse : AopResponse
{
/// <summary>
/// 收银单id唤收银台时传入该参数为请求级别参数如果二次支付需要重新获取
/// </summary>
[XmlElement("cashier_order_id")]
public string CashierOrderId { get; set; }
/// <summary>
/// 口碑订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 支付宝交易号,唤收银台时入参
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}