1234567891011121314151617181920212223242526 |
- 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<TaskAllocationRepository>();
- private readonly static ILogger _logger;
- private readonly static IHubContext<ServerHub> _hubContext = (IHubContext<ServerHub>)AutofacIocManager.Instance.GetService<ServerHub>();
- /// <summary>
- /// 定时任务更改状态
- /// 每天下午六点定时更新
- /// </summary>
- public static async void PostTaskMessagePush()
- {
-
-
- }
- }
- }
|