Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayAssetPointOrderQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

18 lines
636 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayAssetPointOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAssetPointOrderQueryModel : AopObject
{
/// <summary>
/// isv提供的发放号订单号由数字和字母组成最大长度为32为需要保证每笔发放的唯一性集分宝系统会对该参数做唯一性控制。调用接口后集分宝系统会根据这个外部订单号查询发放的订单详情。
/// </summary>
[JsonProperty("merchant_order_no")]
public string MerchantOrderNo { get; set; }
}
}