using Microsoft.AspNetCore.SignalR; using OASystem.API.OAMethodLib.Hubs; using OASystem.Domain.Entities.PersonnelModule; using OASystem.Infrastructure.Repositories.PersonnelModule; using ILogger = Microsoft.Extensions.Logging.ILogger; namespace OASystem.API.OAMethodLib.Quartz.Business { public static class TaskNewsFeedJob { private readonly static TaskAllocationRepository _taskAllocationRep = AutofacIocManager.Instance.GetService(); private readonly static ILogger _logger; private readonly static IHubContext _hubContext = (IHubContext)AutofacIocManager.Instance.GetService(); /// /// 定时任务更改状态 /// 每天下午六点定时更新 /// public static async void PostTaskMessagePush() { } } }