Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayFundTransOrderQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

24 lines
902 B
C#
Raw 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>
/// AlipayFundTransOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransOrderQueryModel : AopObject
{
/// <summary>
/// 支付宝转账单据号:和商户转账唯一订单号不能同时为空。当和商户转账唯一订单号同时提供时,将用本参数进行查询,忽略商户转账唯一订单号。
/// </summary>
[JsonProperty("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商户转账唯一订单号发起转账来源方定义的转账单据ID。 和支付宝转账单据号不能同时为空。当和支付宝转账单据号同时提供时,将用支付宝转账单据号进行查询,忽略本参数。
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
}
}