NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantOrderStoreQueryM...

37 lines
890 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.Domain
{
/// <summary>
/// AntMerchantOrderStoreQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantOrderStoreQueryModel : AopObject
{
/// <summary>
/// 买家id
/// </summary>
[XmlElement("buyer_id")]
public string BuyerId { get; set; }
/// <summary>
/// 外部业务号
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 插件业务场景code预约为ShopService
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 线上店的ID
/// </summary>
[XmlElement("store_open_id")]
public string StoreOpenId { get; set; }
}
}