From b1ea6960a9603832956520a25192812e0a2a9d20 Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Tue, 6 May 2025 15:51:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(wxapi):=20=E9=9A=8F=E5=AE=98=E6=96=B9?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BE=AE=E4=BF=A1=E5=B0=8F=E5=BA=97=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E8=B5=84=E9=87=91=E6=B5=81=E6=B0=B4=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...annelsECFundsGetFundsFlowDetailResponse.cs | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECFunds/ChannelsECFundsGetFundsFlowDetailResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECFunds/ChannelsECFundsGetFundsFlowDetailResponse.cs index e4db994b..57549ada 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECFunds/ChannelsECFundsGetFundsFlowDetailResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECFunds/ChannelsECFundsGetFundsFlowDetailResponse.cs @@ -46,11 +46,27 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models public string? TransactionId { get; set; } /// - /// 获取或设置提现单号。 + /// 获取或设置保障单 ID。 /// - [Newtonsoft.Json.JsonProperty("withdraw_id")] - [System.Text.Json.Serialization.JsonPropertyName("withdraw_id")] - public string? WithdrawId { get; set; } + [Newtonsoft.Json.JsonProperty("guarantee_id")] + [System.Text.Json.Serialization.JsonPropertyName("guarantee_id")] + public string? GuaranteeId { get; set; } + + /// + /// 获取或设置礼物订单 ID。 + /// + [Newtonsoft.Json.JsonProperty("present_id")] + [System.Text.Json.Serialization.JsonPropertyName("present_id")] + public string? PresentId { get; set; } + + /// + /// 获取或设置群送礼关联订单号 ID 列表。 + /// + [Newtonsoft.Json.JsonProperty("group_present_sub_order_id_list")] + [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.Common.StringifiedStringArrayWithCommaSplitConverter))] + [System.Text.Json.Serialization.JsonPropertyName("group_present_sub_order_id_list")] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.StringifiedStringArrayWithCommaSplitConverter))] + public string[]? GroupPresentSubOrderIdList { get; set; } } }