using CRM.Core.Common.EventBus; namespace CRM.Core.BLL.EventBus.Events { /// /// 合规关键词同步 /// public class HGKeyWordEvent : IEvent { public string KeyWord { get; set; } public string DeptCode { get; set; } public HGKeyWordEvent(string keyword, string deptCode) { KeyWord = keyword; DeptCode = deptCode; } } }