mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /ecommerce/profitsharing/finish-order 接口的请求。</para>
|
|
/// </summary>
|
|
public class SetEcommerceProfitSharingOrderFinishRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置微信二级商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("sub_mchid")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("sub_mchid")]
|
|
public string SubMerchantId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置微信订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
|
public string TransactionId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置商户分账单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("out_order_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("out_order_no")]
|
|
public string OutOrderNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置分账描述。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("description")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("description")]
|
|
public string Description { get; set; } = string.Empty;
|
|
}
|
|
}
|