From 34dbf3b4beab262de5548f2388ca2c5d7dba4b80 Mon Sep 17 00:00:00 2001 From: Van Zheng Date: Tue, 26 Apr 2022 06:05:03 +0000 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=E7=94=9F=E6=88=90=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E7=A0=81=E6=8E=A5=E5=8F=A3=E8=AF=B7=E6=B1=82=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs index 96cbde54..d5a9901c 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs @@ -1,4 +1,4 @@ -namespace SKIT.FlurlHttpClient.Wechat.Api.Models +namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /wxa/getwxacode 接口的请求。 @@ -66,5 +66,12 @@ [Newtonsoft.Json.JsonProperty("is_hyaline")] [System.Text.Json.Serialization.JsonPropertyName("is_hyaline")] public bool? IsHyaline { get; set; } + + /// + /// 获取或设置要打开的小程序版本。 + /// + [Newtonsoft.Json.JsonProperty("env_version")] + [System.Text.Json.Serialization.JsonPropertyName("env_version")] + public string? EnvironmentVersion { get; set; } } -} +} \ No newline at end of file