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; } } }