21 lines
428 B
C#
21 lines
428 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class HgRecordOrderEvent : IEvent
|
|
{
|
|
public HgRecordOrderEvent()
|
|
{
|
|
}
|
|
|
|
public HgRecordOrderEvent(int orderId, string deptCode)
|
|
{
|
|
OrderId = orderId;
|
|
DeptCode = deptCode;
|
|
}
|
|
|
|
public int OrderId { get; set; }
|
|
public string DeptCode { get; set; }
|
|
}
|
|
}
|