using Hangfire; namespace DS.WMS.Core.HangfireJob.Interface { /// /// 自动费用模板后台任务 /// public interface IFeeCustTemplateJobService { /// /// 生成费用 /// /// [Queue("fee")] Task GenerateFeesAsync(); } }