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
499 B
17 lines
499 B
3 years ago
|
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 SupplierEventHandler:ILocalEventHandler<EntityCreatedEto<Supplier>>
|
||
|
{
|
||
|
public Task HandleEventAsync(EntityCreatedEto<Supplier> eventData)
|
||
|
{
|
||
|
throw new System.NotImplementedException();
|
||
|
|
||
|
//TODO 根据传入数据新增或修改TA_VENDER
|
||
|
}
|
||
|
}
|
||
|
}
|