This commit is contained in:
2025-07-02 19:31:43 +08:00
parent 2adf97a139
commit 27b0099074
13 changed files with 18 additions and 604 deletions

View File

@@ -18,21 +18,19 @@ namespace MyCode.Project.ScheduleTask.Jobs
public class NinePMTimeJob : IJob
{
private readonly IStorageService _storageService;
private IMillionShopExtensionService _millionShopExtensionService;
private IStaffDataEnterpriseWechatService _staffDataEnterpriseWechatService;
public NinePMTimeJob(IStorageService storageService
, IMillionShopExtensionService millionShopExtensionService)
public NinePMTimeJob(IStaffDataEnterpriseWechatService staffDataEnterpriseWechatService
)
{
_storageService = storageService;
_millionShopExtensionService = millionShopExtensionService;
_staffDataEnterpriseWechatService = staffDataEnterpriseWechatService;
}
public void Execute(IJobExecutionContext context)
{
_storageService.SendManagerAudit();//店长业绩审核提醒
_staffDataEnterpriseWechatService.AddTask();
}
}
}