fix(wxapi): 修复代码分析工具检测出的 API 定义问题

This commit is contained in:
Fu Diwei
2021-06-09 17:32:50 +08:00
parent f5adf00c8a
commit 05c1680789
43 changed files with 56 additions and 56 deletions

View File

@@ -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
{

View File

@@ -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")]

View File

@@ -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
{