mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 10:38:10 +08:00
fix(work): 修复批量获取客户详情的请求模型定义错误
This commit is contained in:
@@ -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>
|
||||||
/// 获取或设置翻页标记。
|
/// 获取或设置翻页标记。
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"userid": "rocky",
|
"userid_list": ["rocky"],
|
||||||
"cursor": "",
|
"cursor": "",
|
||||||
"limit": 100
|
"limit": 100
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user