NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAssetPointOrderQueryM...

19 lines
676 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>
/// AlipayAssetPointOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAssetPointOrderQueryModel : AopObject
{
/// <summary>
/// isv提供的发放号订单号由数字和字母组成最大长度为32为需要保证每笔发放的唯一性集分宝系统会对该参数做唯一性控制。调用接口后集分宝系统会根据这个外部订单号查询发放的订单详情。
/// </summary>
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
}
}