namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models { /// /// 表示 [POST] /secapi/mch/queryInstitutionsub 接口的请求。 /// public class GetSubMerchantInstitutionRequest : WechatTenpaySignableRequest { /// /// /// [Newtonsoft.Json.JsonProperty("mch_id")] [System.Text.Json.Serialization.JsonPropertyName("mch_id")] public override string? MerchantId { get; set; } /// /// /// [Newtonsoft.Json.JsonProperty("app_id")] [System.Text.Json.Serialization.JsonPropertyName("app_id")] public override string? AppId { get; set; } /// /// 获取或设置子商户号。 /// [Newtonsoft.Json.JsonProperty("sub_mch_id")] [System.Text.Json.Serialization.JsonPropertyName("sub_mch_id")] public string SubMerchantId { get; set; } = string.Empty; } }