mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /componenttcb/dbaggregate 接口的请求。</para>
|
|
/// </summary>
|
|
public class ComponentTcbDbAggregateRequest : WechatApiRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置第三方平台 AccessToken。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string ComponentAccessToken { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置环境 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("env")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("env")]
|
|
public string EnvironmentId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 获取或设置数据库操作语句。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("query")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("query")]
|
|
public string QueryString { get; set; } = string.Empty;
|
|
}
|
|
}
|