33 lines
975 B
C#
33 lines
975 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class RejectContractEvent : IEvent
|
|
{
|
|
public RejectContractEvent()
|
|
{
|
|
}
|
|
|
|
public RejectContractEvent(int orderId, int status, string rejectRemark, string deptCode, string idCard, string name, int? operaId, string operaName)
|
|
{
|
|
OrderId = orderId;
|
|
Status = status;
|
|
RejectRemark = rejectRemark;
|
|
DeptCode = deptCode;
|
|
IdCard = idCard;
|
|
Name = name;
|
|
OperaId = operaId;
|
|
OperaName = operaName;
|
|
}
|
|
|
|
public int OrderId { get; set; }
|
|
public int Status { get; set; }
|
|
public string RejectRemark { get; set; }
|
|
public string DeptCode { get; set; }
|
|
public string IdCard { get; set; }
|
|
public string Name { get; set; }
|
|
public int? OperaId { get; set; }
|
|
public string OperaName { get; set; }
|
|
}
|
|
}
|