mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-20 03:49:56 +08:00
16 lines
565 B
C#
16 lines
565 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /pay/partner/transactions/out-trade-no/{out_trade_no} 接口的请求。</para>
|
|
/// </summary>
|
|
public class GetPayPartnerTransactionByOutTradeNumberRequest : GetPayTransactionByOutTradeNumberRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置子商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string SubMerchantId { get; set; } = string.Empty;
|
|
}
|
|
}
|