20 lines
436 B
C#
20 lines
436 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
/// <summary>
|
|
/// 合规关键词同步
|
|
/// </summary>
|
|
public class HGKeyWordEvent : IEvent
|
|
{
|
|
public string KeyWord { get; set; }
|
|
public string DeptCode { get; set; }
|
|
public HGKeyWordEvent(string keyword, string deptCode)
|
|
{
|
|
KeyWord = keyword;
|
|
DeptCode = deptCode;
|
|
}
|
|
|
|
}
|
|
}
|