You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
485 B

using System.Threading.Tasks;
using Volo.Abp.Domain.Entities.Events.Distributed;
using Volo.Abp.EventBus;
using Win_in.Sfs.Scp.WebApi;
namespace Win_in.Sfs.Scp.v1.Event
{
public class ReceiptEventHandler:ILocalEventHandler<EntityCreatedEto<Receipt>>
{
public Task HandleEventAsync(EntityCreatedEto<Receipt> eventData)
{
throw new System.NotImplementedException();
//TODO 新增 TB_RECEIPT 或 TB_REJECT
}
}
}