feat(wxapi): 随官方更新微信小店查询送检配置模板信息接口模型

This commit is contained in:
Fu Diwei
2025-11-27 15:36:27 +08:00
parent 0f33c45cd3
commit 92631f1c69
2 changed files with 13 additions and 0 deletions

View File

@@ -5,5 +5,11 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
/// </summary>
public class ChannelsECQICInspectSubmitConfigGetRequest : WechatApiRequest, IInferable<ChannelsECQICInspectSubmitConfigGetRequest, ChannelsECQICInspectSubmitConfigGetResponse>
{
/// <summary>
/// 获取或设置订单 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("order_id")]
[System.Text.Json.Serialization.JsonPropertyName("order_id")]
public string? OrderId { get; set; }
}
}

View File

@@ -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!;
/// <summary>
/// 获取或设置质检机构类别。
/// </summary>
[Newtonsoft.Json.JsonProperty("org_category")]
[System.Text.Json.Serialization.JsonPropertyName("org_category")]
public int OrganizationCategory { get; set; }
}
}