From bbe04ba535607ceb8ec95ece73e809b44d9143e7 Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Mon, 4 Nov 2024 20:41:34 +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=E8=A7=86=E9=A2=91=E5=8F=B7=E5=B0=8F=E5=BA=97?= =?UTF-8?q?=E8=A7=A3=E7=A0=81=E8=AE=A2=E5=8D=95=E5=8C=85=E5=90=AB=E7=9A=84?= =?UTF-8?q?=E6=95=8F=E6=84=9F=E6=95=B0=E6=8D=AE=E6=8E=A5=E5=8F=A3=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...nnelsECOrderSensitiveInfoDecodeResponse.cs | 35 +++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECOrder/ChannelsECOrderSensitiveInfoDecodeResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECOrder/ChannelsECOrderSensitiveInfoDecodeResponse.cs index 4d55e084..4ce579c9 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECOrder/ChannelsECOrderSensitiveInfoDecodeResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECOrder/ChannelsECOrderSensitiveInfoDecodeResponse.cs @@ -68,11 +68,35 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models public string? HouseNumber { get; set; } /// - /// 获取或设置虚拟号码。 + /// 获取或设置虚拟发货订单联系方式。 /// [Newtonsoft.Json.JsonProperty("virtual_order_tel_number")] [System.Text.Json.Serialization.JsonPropertyName("virtual_order_tel_number")] - public string? VirtualTeleNumber { get; set; } + public string? VirtualOrderTeleNumber { get; set; } + } + + public class VirtualNumber + { + /// + /// 获取或设置虚拟号码。 + /// + [Newtonsoft.Json.JsonProperty("virtual_number")] + [System.Text.Json.Serialization.JsonPropertyName("virtual_number")] + public string TeleNumber { get; set; } = default!; + + /// + /// 获取或设置分机号。 + /// + [Newtonsoft.Json.JsonProperty("extension")] + [System.Text.Json.Serialization.JsonPropertyName("extension")] + public string? Extension { get; set; } + + /// + /// 获取或设置过期时间戳。 + /// + [Newtonsoft.Json.JsonProperty("expiration")] + [System.Text.Json.Serialization.JsonPropertyName("expiration")] + public long ExpirationTimestamp { get; set; } } } @@ -82,5 +106,12 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models [Newtonsoft.Json.JsonProperty("address_info")] [System.Text.Json.Serialization.JsonPropertyName("address_info")] public Types.Address? Address { get; set; } + + /// + /// 获取或设置虚拟号信息。 + /// + [Newtonsoft.Json.JsonProperty("virtual_number_info")] + [System.Text.Json.Serialization.JsonPropertyName("virtual_number_info")] + public Types.VirtualNumber? VirtualNumber { get; set; } } }