NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAgentOrderQueryMo...

19 lines
491 B
C#
Raw Permalink 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>
/// AlipayOpenAgentOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAgentOrderQueryModel : AopObject
{
/// <summary>
/// ISV 代商户操作事务编号通过事务开启接口alipay.open.agent.create调用返回。
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
}
}