using Hangfire; namespace DS.WMS.Core.HangfireJob.Interface { /// /// WSL报表发送 /// public interface IWSLReportJobService { /// /// 生成报表 /// /// [Queue("op")] Task GeneratReportAsync(); } }