You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
484 B
C#
23 lines
484 B
C#
using MESDataExtractQuartz.Service;
|
|
using Quartz;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MESDataExtractQuartz.Job
|
|
{
|
|
public class SumMLTeamJob : IJob
|
|
{
|
|
public async Task Execute(IJobExecutionContext context)
|
|
{
|
|
//早班
|
|
BaseService.MLForeTeam();
|
|
|
|
//晚班
|
|
BaseService.MLNightTeam();
|
|
}
|
|
}
|
|
}
|