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

28 lines
727 B
C#

using CRM.Core.Common.EventBus;
namespace CRM.Core.BLL.EventBus.Events
{
public class FinishRefundContractEvent : IEvent
{
public FinishRefundContractEvent()
{
}
public FinishRefundContractEvent(int orderId, int status, string deptCode, int? operaId, string operaName)
{
OrderId = orderId;
Status = status;
DeptCode = deptCode;
this.OperaId = operaId;
this.OperaName = operaName;
}
public int OrderId { get; set; }
public int Status { get; set; }
public string DeptCode { get; set; }
public int? OperaId { get; set; }
public string OperaName { get; set; }
}
}