mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-10 09:46:19 +08:00
feat(wxapi): 随官方更新微信小店带货助手佣金单相关接口模型
This commit is contained in:
@@ -67,11 +67,18 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
public int OrderStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置实际支付金额(单位:分)。
|
||||
/// 获取或设置实际支付金额字符串(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("actual_payment")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("actual_payment")]
|
||||
public string ActualPayment { get; set; } = default!;
|
||||
public string ActualPaymentString { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单分佣基数金额字符串(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("settle_payment")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("settle_payment")]
|
||||
public string SettlePaymentString { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订单支付时间戳。
|
||||
|
||||
Reference in New Issue
Block a user