24 lines
511 B
C#
24 lines
511 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class SignContractEvent : IEvent
|
|
{
|
|
public SignContractEvent()
|
|
{
|
|
}
|
|
|
|
public SignContractEvent(string orderId, string htId, string deptcode)
|
|
{
|
|
OrderId = orderId;
|
|
HtId = htId;
|
|
DeptCode = deptcode;
|
|
}
|
|
|
|
public string OrderId { get; set; }
|
|
public string HtId { get; set; }
|
|
public string DeptCode { get; set; }
|
|
|
|
}
|
|
}
|