mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-19 01:58:14 +08:00
feat(wxapi): 随官方更新微信小店带货助手佣金单相关接口模型
This commit is contained in:
@@ -36,6 +36,14 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
|
||||
public string OrderId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置佣金单特殊标识。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("special_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("special_id")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringReadOnlyConverter))]
|
||||
public string? SpecialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 SPU ID。
|
||||
/// </summary>
|
||||
|
@@ -40,6 +40,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
|
||||
public string? OrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置佣金单特殊标识。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("special_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("special_id")]
|
||||
public string? SpecialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 SPU ID。
|
||||
/// </summary>
|
||||
|
@@ -17,6 +17,14 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringReadOnlyConverter))]
|
||||
public string OrderId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置佣金单特殊标识。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("special_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("special_id")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringReadOnlyConverter))]
|
||||
public string? SpecialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 SKU ID。
|
||||
/// </summary>
|
||||
|
@@ -9,6 +9,7 @@
|
||||
"actual_payment": "99.99",
|
||||
"order_create_time": 1700000000,
|
||||
"order_update_time": 1700003600,
|
||||
"special_id": "SP12345",
|
||||
"buyer_info": {
|
||||
"open_id": "o1234567890abcdef",
|
||||
"union_id": "u1234567890abcdef"
|
||||
|
@@ -4,7 +4,8 @@
|
||||
"order_list": [
|
||||
{
|
||||
"order_id": "123",
|
||||
"sku_id": "1234"
|
||||
"sku_id": "1234",
|
||||
"special_id": "1"
|
||||
}
|
||||
],
|
||||
"has_more": true
|
||||
|
Reference in New Issue
Block a user