zs
2025-05-18 0057ff26d5e835629d9d85d63f4bbe723e5c9e44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using CMS.Plugin.HIAWms.Domain.Shared.WmsStores;
using Volo.Abp.DependencyInjection;
using Volo.Abp.EventBus.Distributed;
 
namespace CMS.Plugin.HIAWms.Domain.EventHandlers;
 
/// <summary>
/// WmsStore事件处理程序
/// </summary>
public class WmsStoreEventHandler : IDistributedEventHandler<WmsStoreEto>, ITransientDependency
{
    /// <inheritdoc />
    public Task HandleEventAsync(WmsStoreEto eventData)
    {
        return Task.CompletedTask;
    }
}