mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 21:13:47 +08:00
fix(wxapi): 修复代码分析工具检测出的 API 定义问题
This commit is contained in:
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /customservice/kfsession/waitcase 接口的响应。</para>
|
||||
/// <para>表示 [GET] /customservice/kfsession/getwaitcase 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CustomServiceKfSessionGetWaitCaseResponse : WechatApiResponse
|
||||
{
|
||||
|
@@ -9,14 +9,14 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
public class CustomServiceMessageRecordGetMessageListRequest : WechatApiRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置起始时间戳。
|
||||
/// 获取或设置指定起始时间戳。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("starttime")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("starttime")]
|
||||
public long StartTimestamp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置结束时间戳。
|
||||
/// 获取或设置指定结束时间戳。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("endtime")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("endtime")]
|
||||
@@ -30,7 +30,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
public long MessageId { get; set; } = 1;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置每次获取条数。
|
||||
/// 获取或设置分页每页数量。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("number")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("number")]
|
||||
|
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [GET] /customservice/msgrecord/getmsglist 接口的响应。</para>
|
||||
/// <para>表示 [POST] /customservice/msgrecord/getmsglist 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CustomServiceMessageRecordGetMessageListResponse : WechatApiResponse
|
||||
{
|
||||
|
Reference in New Issue
Block a user