From 92631f1c697087ec9bad1ae81c029df95368b37e Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Thu, 27 Nov 2025 15:36:27 +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=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E9=80=81=E6=A3=80=E9=85=8D=E7=BD=AE=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=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 --- .../ECQIC/ChannelsECQICInspectSubmitConfigGetRequest.cs | 6 ++++++ .../ECQIC/ChannelsECQICInspectSubmitConfigGetResponse.cs | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetRequest.cs index ed389d3e..c86c9494 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetRequest.cs @@ -5,5 +5,11 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models /// public class ChannelsECQICInspectSubmitConfigGetRequest : WechatApiRequest, IInferable { + /// + /// 获取或设置订单 ID。 + /// + [Newtonsoft.Json.JsonProperty("order_id")] + [System.Text.Json.Serialization.JsonPropertyName("order_id")] + public string? OrderId { get; set; } } } diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetResponse.cs index 7d5a4f3e..a2dbc922 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Channels/ECQIC/ChannelsECQICInspectSubmitConfigGetResponse.cs @@ -118,6 +118,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models [Newtonsoft.Json.JsonProperty("name")] [System.Text.Json.Serialization.JsonPropertyName("name")] public string Name { get; set; } = default!; + + /// + /// 获取或设置质检机构类别。 + /// + [Newtonsoft.Json.JsonProperty("org_category")] + [System.Text.Json.Serialization.JsonPropertyName("org_category")] + public int OrganizationCategory { get; set; } } }