NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiTradeOrderEnterpriseS...

30 lines
844 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>
/// KoubeiTradeOrderEnterpriseSettleResponse.
/// </summary>
public class KoubeiTradeOrderEnterpriseSettleResponse : AopResponse
{
/// <summary>
/// 描述本次返回中的业务属性该字段用于描述本次返回中的业务属性现有BIZ_ALREADY_SUCCESS幂等业务码
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 口碑订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 传入的商户订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
}
}