feat(work): 随官方更新获客助手相关回调通知事件模型

This commit is contained in:
Fu Diwei
2026-02-10 18:13:26 +08:00
parent 5900614d6d
commit 288a29e254
2 changed files with 24 additions and 0 deletions

View File

@@ -9,6 +9,22 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Events
/// </summary>
public class CustomerAcquisitionEvent : WechatWorkEvent
{
/// <summary>
/// 获取或设置第三方应用的 SuiteId。
/// </summary>
[Newtonsoft.Json.JsonProperty("SuiteId")]
[System.Text.Json.Serialization.JsonPropertyName("SuiteId")]
[System.Xml.Serialization.XmlElement("SuiteId", IsNullable = true)]
public string? SuiteId { get; set; }
/// <summary>
/// 获取或设置授权方的 CorpId。
/// </summary>
[Newtonsoft.Json.JsonProperty("AuthCorpId")]
[System.Text.Json.Serialization.JsonPropertyName("AuthCorpId")]
[System.Xml.Serialization.XmlElement("AuthCorpId", IsNullable = true)]
public string? AuthorizerCorpId { get; set; }
/// <summary>
/// 获取或设置变更类型。
/// </summary>

View File

@@ -35,6 +35,14 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Events
[System.Xml.Serialization.XmlElement("ChangeType")]
public string ChangeType { get; set; } = default!;
/// <summary>
/// 获取或设置获客链接 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("LinkId")]
[System.Text.Json.Serialization.JsonPropertyName("LinkId")]
[System.Xml.Serialization.XmlElement("LinkId", IsNullable = true)]
public string? LinkId { get; set; }
/// <summary>
/// 获取或设置用户成员账号。
/// </summary>