SendWeComMsgJob.cs 455 Bytes
using Hh.Mes.Service.QuartzJobService;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Quartz.Job.Jobs
{
    [PersistJobDataAfterExecution]
    [DisallowConcurrentExecution]
    public class SendWeComMsgJob : JobBase
    {
        public override void ExecuteJob(IJobExecutionContext context)
        {
            new SendWeComMsgJobService().Execute();
        }
    }
}