2025-07-04 09:50:02 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
|
|
|
|
|
|
2025-08-23 16:27:17 +08:00
|
|
|
|
//private readonly IWorkProcessService _workProcessService;
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
2025-08-23 16:27:17 +08:00
|
|
|
|
public EveryJob( )
|
2025-07-04 09:50:02 +08:00
|
|
|
|
{
|
2025-08-23 16:27:17 +08:00
|
|
|
|
|
2025-07-04 09:50:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void Execute(IJobExecutionContext context)
|
|
|
|
|
|
{
|
2025-08-23 16:27:17 +08:00
|
|
|
|
//_workProcessService.Execute();
|
2025-07-04 09:50:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|