Files
YunTongJackYunTask/Reportapi/MyCode.Project.ScheduleTask/Jobs/EveryJob.cs
2025-08-23 16:27:17 +08:00

29 lines
547 B
C#

using MyCode.Project.Services;
using Quartz;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.ScheduleTask.Jobs
{
[DisallowConcurrentExecution]
public class EveryJob : IJob
{
//private readonly IWorkProcessService _workProcessService;
public EveryJob( )
{
}
public void Execute(IJobExecutionContext context)
{
//_workProcessService.Execute();
}
}
}