ComplianceServer/oldcode/Core.BLL/EventBus/Events/RfmEvent.cs

20 lines
471 B
C#

using CRM.Core.Common.EventBus;
namespace CRM.Core.BLL.EventBus.Events
{
public class RfmEvent : IEvent
{
public RfmEvent()
{
}
public string username { get; set; }
public string appid { get; set; }
public int weight { get; set; }
public string labelname { get; set; }
public string mobile { get; set; }
public int? ch { get; set; }
public string deptcode { get; set; }
}
}