1 2 3
using Hh.Mes.Service.QuartzJobService; namespace Quartz.Job.Jobs
4 5 6 7
{ /// <summary> /// 系统日志清楚日志 默认自带保留二个月日志(如果需要调整时间需要定定时器管理模块在线修改) /// </summary>
8 9 10 11 12 13 14 15
public class ClearLogJob : JobBase { public override void ExecuteJob(IJobExecutionContext context) { new ClearLogJobService().Execute(); } } }