mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
feat(work): 随官方更新获取企业上下游通讯录下的企业信息的接口模型
This commit is contained in:
parent
1c12754f5b
commit
5dbc0a77ad
@ -18,5 +18,26 @@
|
||||
[Newtonsoft.Json.JsonProperty("custom_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("custom_id")]
|
||||
public string? CustomId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业名称。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("corp_name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("corp_name")]
|
||||
public string CorpName { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业是否验证。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("corp_verified")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("corp_verified")]
|
||||
public bool IsCorpVerified { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置企业是否认证。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("corp_certified")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("corp_certified")]
|
||||
public bool IsCorpCertified { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"errcode": 0,
|
||||
"errmsg": "ok",
|
||||
"corp_name": "美馨粮油公司",
|
||||
"corp_verified": false,
|
||||
"corp_certified": false,
|
||||
"custom_id": "xxxxx",
|
||||
"groupid": 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user