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

18 lines
342 B
C#

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