fix(work): 修复批量获取客户详情的请求模型定义错误

This commit is contained in:
hey
2021-09-08 16:08:30 +08:00
committed by GitHub
parent 21b49906f8
commit 8f02c67535
2 changed files with 4 additions and 4 deletions

View File

@@ -11,9 +11,9 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
/// <summary> /// <summary>
/// 获取或设置成员账号。 /// 获取或设置成员账号。
/// </summary> /// </summary>
[Newtonsoft.Json.JsonProperty("userid")] [Newtonsoft.Json.JsonProperty("userid_list")]
[System.Text.Json.Serialization.JsonPropertyName("userid")] [System.Text.Json.Serialization.JsonPropertyName("userid_list")]
public string UserId { get; set; } = string.Empty; public IList<string>? UserIdList { get; set; }
/// <summary> /// <summary>
/// 获取或设置翻页标记。 /// 获取或设置翻页标记。

View File

@@ -1,5 +1,5 @@
{ {
"userid": "rocky", "userid_list": ["rocky"],
"cursor": "", "cursor": "",
"limit": 100 "limit": 100
} }