30 lines
863 B
C#
30 lines
863 B
C#
using CRM.Core.Common.EventBus;
|
|
using System;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class RefundContractEvent : IEvent
|
|
{
|
|
public RefundContractEvent()
|
|
{
|
|
}
|
|
|
|
public RefundContractEvent(string orderId, string htId, decimal refundPrice, DateTime? contractTime, string contractKey, string deptCode)
|
|
{
|
|
OrderId = orderId;
|
|
HtId = htId;
|
|
RefundPrice = refundPrice;
|
|
ContractTime = contractTime;
|
|
ContractKey = contractKey;
|
|
DeptCode = deptCode;
|
|
}
|
|
|
|
public string OrderId { get; set; }
|
|
public string HtId { get; set; }
|
|
public decimal RefundPrice { get; set; }
|
|
public DateTime? ContractTime { get; set; }
|
|
public string ContractKey { get; set; }
|
|
public string DeptCode { get; set; }
|
|
}
|
|
}
|