ClearLogJob.cs 503 Bytes
using Hh.Mes.Service.QuartzJobService;

namespace Quartz.Job.Jobs
{
    /// <summary>
    /// 系统日志清楚日志 默认自带保留二个月日志(如果需要调整时间需要定定时器管理模块在线修改)
    /// </summary>
    [PersistJobDataAfterExecution]
    [DisallowConcurrentExecution]
    public class ClearLogJob : JobBase
    {
        public override void ExecuteJob(IJobExecutionContext context)
        {
            new ClearLogJobService().Execute();
        }
    }
}